-
### Description
$title.
### Steps to Reproduce
```ballerina
import ballerina/io;
() _ = io:println("hello");
() _ = io:println("hello");
```
```
Running executable
Error: LinkageError …
-
### Description
In `BLangLambdaFunction` there is an env called `capturedClosureEnv` which holds the cloned env at that point.
### Describe your problem(s)
When assigning the env to `capturedClosur…
-
**Description:**
$title.
**Steps to reproduce:**
```ballerina
import ballerina/io;
final readonly & int[] x;
class Foo {
int[] m = x;
function init() {
}
}
type Bar …
-
**Description:**
Consider the following scenario:
```ballerina
import ballerina/io;
public function main() returns error? {
io:ReadableCSVChannel channel = check io:openReadableCsvFile("pat…
IMS94 updated
3 years ago
-
**Description:**
$Subject
**Describe your problem(s)**
**Describe your solution(s)**
**Related Issues (optional):**
**Suggested Labels (optional):**
**Suggested Assignees (optional):…
-
I want to learn how to use this library, are there any sample Intellij plugins(still being maintained)?
-
### Description
Consider following code sample
```
import ballerina/lang.regexp;
public function main() {
regexp:RegExp _ = re `(?${""}:)`;
3;
}
```
When we select the create va…
-
The below is available for 200 OK
```ballerina
# The common status code response constant of `Ok`.
public final readonly & Ok OK = {};
```
But not the same for redirects such as
```baller…
-
**Description:**
Currently, the ballerina openapi gen tool provides the `--tag` flag which can be used to generate separate service files manually. However, this is not easy when there are lots of re…
-
Currently, we have to call `url:encode` multiple times to do form-urlencoded. Please provide a convent api to do following.
```ballerina
string payload = "From=" + check url:encode(FROM_NO, "utf-8")…