Sasindu Alahakoon
Sasindu Alahakoon
### Description Please consider the following code ``` type A record{ boolean a; }; A a = {a:}; function test() { } ``` The suggestions given by the LS is...
### Description Please consider the below code ``` type A record{ boolean a; }; A a = {a:t}; function test() { } ``` Imo, in here `true` should be the...
Add implementation for publishing services to APIM catalog Design documentation - https://docs.google.com/document/d/1oLQLjXm2Uo1YJtqUO3mVnt_tPcRbrFJKloW7Jg3JrcU/edit?usp=sharing
``` import ballerina/openapi; import ballerina/http; @openapi:ServiceInfo { 'version: () } service /sales0 on new http:Listener(9505) { } ``` In here the `ballerina-openapi` tool will read the version as string representation...
**Description:** Currently, Ballerina does not supports `\b` for word boundaries. Java, Python and Javascripts supports `\b`. Some real world usecases of `\b` are * Avoiding partial matches: When searching for...
Add spec conformance tests for regexp langlib functions fixes [397299](https://github.com/ballerina-platform/ballerina-lang/issues/38074)
**Description:** Currently we haven't have a function called `isMatch()` for match regex with strings. This will return true if there is a match found inside the string. **Related Issues:**
## Purpose > Add lang library examples for float langlib apidocs. Fixes https://github.com/ballerina-platform/ballerina-lang/issues/39508 Related PRs https://github.com/ballerina-platform/ballerina-lang/pull/38905
**Description:** Currently the API documentation for the `cause` method in error langlib as follows. ``` # Returns the error's cause. # # + e - the error value # +...
$Subject The new BBE should be inside the https://ballerina.io/learn/by-example/logging/