Gimantha Bandara

Results 9 issues of Gimantha Bandara

### Description Please refer to the comment: https://github.com/ballerina-platform/ballerina-spec/issues/1132#issuecomment-1203499130 ### Describe your problem(s) _No response_ ### Describe your solution(s) _No response_ ### Related area -> Compilation ### Related issue(s) (optional) https://github.com/ballerina-platform/ballerina-spec/issues/1132...

Type/NewFeature
Status/InProgress
Team/CompilerFE
Points/1
needTriage
userCategory/Compilation

Consider the following code ```ballerina import ballerina/io; public function main() { int|decimal|float|string|boolean firstExpr = 34; xml secondExpr = xml `"${firstExpr}"`; } ``` This gives the following error `incompatible types: expected...

Type/Bug
Priority/High
Team/CompilerFE
Area/RuntimeTypeChecker
Lang/XML
Error/TypeK
Lang/Expressions/XmlTemplate
Reason/EngineeringMistake

Hi @bulldog2011, @TobiasMende , @wjw465150 , @illya13 We use bigqueue implementation to buffer incoming data in our code base. We use a background thread to consume the queue (every 1.5...

I checked locally. This test passes, But failing in PR build in Git. I have disabled it. We need to enable once the issue is sorted (disabled in https://github.com/ballerina-platform/ballerina-distribution/pull/1487/commits/f3d64aed3684a42f6bb1657ac2d588424876abb9)

Type/Bug
Type/TestFailure
Priority/High
Team/DevTools

- [x] https://github.com/ballerina-platform/ballerina-distribution/issues/3661 - [ ] Rewrite the existing BBEs - [ ] Add new BBEs

Type/Task
Area/BBE

Please check the line https://github.com/ballerina-platform/module-ballerinai-transaction/blob/master/transaction-native/src/main/java/org/ballerinalang/stdlib/transaction/ToString.java#L36 The nativeDataObject here is sometime a long sometime it is an integer. This causes the tests fail. As a temporary fix I used Number to...

Type/Bug

Panic test cases have been disabled, because when there is a panic from within a resource function of a service, the service makes a System.exit(). That causes the whole test...

Type/Task

**Description:** While downloading a specific jballerina distribution, I disconnect the internet connection and waited for 5 mins then connected back to internet. Downloading didnt time out or continued after reconnection....

Type/Bug
Priority/High

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