ballerina-lang icon indicating copy to clipboard operation
ballerina-lang copied to clipboard

The Ballerina Programming Language

Results 632 ballerina-lang issues
Sort by recently updated
recently updated
newest added
trafficstars

Consider the following code ```ballerina import ballerina/io; type UnaryExpr record {| string operand; |}; type TypeCastExpr record {| string oprd; |}; type Expr UnaryExpr|TypeCastExpr; function foo(Expr expr) { match expr...

Type/Bug
Priority/Blocker
Team/CompilerFE
Points/0.5
Area/TypeChecker
Lang/TypeNarrowing
Lang/Statements/Match

```ballerina error? e = from var dir in check file:readDir("./testSuite") where check file:test(dir.absPath, file:IS_DIR) from var sub in check file:readDir(dir.absPath) do { io:println(sub.absPath); }; ``` Above code gives following runtime...

Type/Bug
Team/CompilerFE
Lang/Expressions/Query