ballerina-lang
ballerina-lang copied to clipboard
The Ballerina Programming Language
### Description In the current implementation, new typedesc instruction generates when value is created. When considering the following example. we create two new typedesc instructions for `record{int k = 10;}`...
Currently we run our performance tests on a single type of EC2 instance. Instead we need to test on different kinds of instances to figure out their effects. ## General...
## Purpose > $subject Fixes part of https://github.com/ballerina-platform/ballerina-library/issues/7252 ## Approach > Replace the options with `-o
**Description:** Ballerina CLI as .bat file only cause command not found using Git Bash **Steps to reproduce:** Install Git Bash Install Ballerina execute ballerina in windows cmd execute ballerina in...
### Description $subject ### Describe your task(s) This is to support MI to Ballerina source conversion. ### Related area -> Runtime ### Related issue(s) (optional) _No response_ ### Suggested label(s)...
**Description:** This seems to be failing intermittently. Disabled with https://github.com/ballerina-platform/ballerina-lang/pull/36823 https://github.com/ballerina-platform/ballerina-lang/runs/7148360049?check_suite_focus=true
### Description ``` function testMatchClause(any|error e) returns string { match e { var error(localVar9) => { // ref 1 return localVar9 + " is an error"; // ref2 } }...
### Description ``` type F function (int, int) returns int; type R record { F f = (a, b) => a; // Issue: symbol for the `a` and `b` is...
### Description For the code mention in [1], When I am try to find the references of the `objParam` parameter inside the method in the module level object declaration using...
### Description $subject. ```bal type Y error|object {}; type X distinct Y; // This should give a compilation error. public function main() { X x = error("hi"); io:println(x); } ```...