Sameera Jayasoma
Sameera Jayasoma
I agree. The current approach,`io:println(err.stackTrace());`, just prints the internal `StrackFrame` fields. What you are expecting is something like the following. As Waruna mentioned, we use this format when a panic...
@warunalakshitha, Where do we print the above panic output? Is that part of the runtime code?
@warunalakshitha, could you come up with a spec proposal for this?
Unit tests are available in this directory https://github.com/ballerina-platform/ballerina-lang/tree/master/compiler/ballerina-lang/src/test/java/io/ballerina/projects.
@sanjiva, as Asma said, workspaces and the consolidator tool are kinda orthogonal things. Workspaces or multi-package projects is all about giving you a seamless editing experience across all your packages...
> > Can we improve [workspace] header to contain a name field? What i feel is, this is more like the profiles in maven and we should give a name...
The current workspace design does not allow packages to be outside of the workspace dir. ``` my-workspace/ │ ├── Ballerina.toml # Defines the workspace ├── service-a/ │ └── Ballerina.toml │...
If you don't want to write and maintain a bal file that imports packages for consolidation, then use the consolidator. Most probably for BI use cases. > > [@sanjiva](https://github.com/sanjiva), as...
In Ballerina, we use services and remote and resource functions to represent network-accessible entry points. But the usage of service and remote methods in this design does not align with...
What we want to achieve here is something similar to the `GOMAXPROCS ` env variable in Go. [https://golang.org/pkg/runtime/#GOMAXPROCS](https://golang.org/pkg/runtime/#GOMAXPROCS) We should find a solution that works for both jBallerina and nBallerina...