-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7123aac
commit 15de097
Showing
6 changed files
with
147 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
compiler-plugin-test/src/test/resources/ballerina_sources/sample_package_10/Ballerina.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[package] | ||
org = "yamldata_test" | ||
name = "sample_10" | ||
version = "0.1.0" |
49 changes: 49 additions & 0 deletions
49
compiler-plugin-test/src/test/resources/ballerina_sources/sample_package_10/sample.bal
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
// Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). | ||
// | ||
// WSO2 LLC. licenses this file to you under the Apache License, | ||
// Version 2.0 (the "License"); you may not use this file except | ||
// in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, | ||
// software distributed under the License is distributed on an | ||
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
// KIND, either express or implied. See the License for the | ||
// specific language governing permissions and limitations | ||
// under the License. | ||
|
||
import ballerina/data.yaml; | ||
|
||
type ArrayExpectedType record {| | ||
@yaml:Name { | ||
value: "first_name" | ||
} | ||
string firstName; | ||
|
||
@yaml:Name { | ||
value: "first_name" | ||
} | ||
string lastName; | ||
|}[]; | ||
|
||
type TupleExpectedType [record {| | ||
@yaml:Name { | ||
value: "first_name" | ||
} | ||
string firstName; | ||
|
||
@yaml:Name { | ||
value: "first_name" | ||
} | ||
string lastName; | ||
|}]; | ||
|
||
type ImmutableType readonly & ArrayExpectedType; | ||
|
||
type UnionType ArrayExpectedType|TupleExpectedType|ImmutableType|xml|table<record{}>; | ||
|
||
function call(string data) returns error? { | ||
UnionType result = check yaml:parseString(data); | ||
} |
4 changes: 4 additions & 0 deletions
4
compiler-plugin-test/src/test/resources/ballerina_sources/sample_package_9/Ballerina.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[package] | ||
org = "yamldata_test" | ||
name = "sample_9" | ||
version = "0.1.0" |
54 changes: 54 additions & 0 deletions
54
compiler-plugin-test/src/test/resources/ballerina_sources/sample_package_9/sample.bal
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
// Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). | ||
// | ||
// WSO2 LLC. licenses this file to you under the Apache License, | ||
// Version 2.0 (the "License"); you may not use this file except | ||
// in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, | ||
// software distributed under the License is distributed on an | ||
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
// KIND, either express or implied. See the License for the | ||
// specific language governing permissions and limitations | ||
// under the License. | ||
|
||
import ballerina/data.yaml; | ||
|
||
type ArrayExpectedType record {| | ||
@yaml:Name { | ||
value: "first_name" | ||
} | ||
string firstName; | ||
|
||
@yaml:Name { | ||
value: "first_name" | ||
} | ||
string lastName; | ||
|}[]; | ||
|
||
type TupleExpectedType [record {| | ||
@yaml:Name { | ||
value: "first_name" | ||
} | ||
string firstName; | ||
|
||
@yaml:Name { | ||
value: "first_name" | ||
} | ||
string lastName; | ||
|}]; | ||
|
||
type ImmutableType readonly & ArrayExpectedType; | ||
|
||
type UnionType ArrayExpectedType|TupleExpectedType|ImmutableType; | ||
|
||
function call() returns UnionType { | ||
UnionType callResult = call(); | ||
|
||
return <ArrayExpectedType>[{ | ||
firstName: "", | ||
lastName: "" | ||
}]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters