├── .github ├── CODEOWNERS └── ISSUE_TEMPLATE │ ├── bug.yml │ ├── config.yml │ ├── improvement.yml │ ├── new-feature.yml │ └── task.yml ├── .gitignore ├── LICENSE ├── README.md ├── extract-keywords.js ├── issue_template.md ├── package.json ├── prism ├── example.html ├── extract-keywords.js └── prism-ballerina.js ├── pull_request_template.md ├── syntaxes ├── ballerina.YAML-tmLanguage ├── ballerina.monarch.json ├── ballerina.tmLanguage └── ballerina.tmLanguage.json ├── test ├── resources │ ├── config │ │ ├── annotation.bal │ │ ├── class.bal │ │ ├── const.bal │ │ ├── function.bal │ │ ├── json.bal │ │ ├── match.bal │ │ ├── natural.bal │ │ ├── object.bal │ │ ├── query.bal │ │ ├── regexp.bal │ │ ├── semtype │ │ │ ├── Ballerina.toml │ │ │ ├── bmain.bal │ │ │ ├── main.bal │ │ │ ├── modules │ │ │ │ ├── b │ │ │ │ │ ├── bbuild.bal │ │ │ │ │ ├── bparse.bal │ │ │ │ │ ├── btoken.bal │ │ │ │ │ └── tests │ │ │ │ │ │ └── btokentest.bal │ │ │ │ ├── bdd │ │ │ │ │ ├── bdd.bal │ │ │ │ │ └── tests │ │ │ │ │ │ └── bddtest.bal │ │ │ │ ├── core │ │ │ │ │ ├── boolean.bal │ │ │ │ │ ├── common.bal │ │ │ │ │ ├── core.bal │ │ │ │ │ ├── error.bal │ │ │ │ │ ├── function.bal │ │ │ │ │ ├── int.bal │ │ │ │ │ ├── list.bal │ │ │ │ │ ├── mapping.bal │ │ │ │ │ ├── string.bal │ │ │ │ │ └── tests │ │ │ │ │ │ └── coretest.bal │ │ │ │ └── json │ │ │ │ │ ├── parse.bal │ │ │ │ │ └── schema.bal │ │ │ └── tests │ │ │ │ ├── baltest.bal │ │ │ │ └── data │ │ │ │ ├── basic.bal │ │ │ │ ├── boolean-subtype.bal │ │ │ │ ├── error1.bal │ │ │ │ ├── error2.bal │ │ │ │ ├── function.bal │ │ │ │ ├── hard.bal │ │ │ │ ├── int-singleton.bal │ │ │ │ ├── int-subtype.bal │ │ │ │ ├── never.bal │ │ │ │ ├── readonly1.bal │ │ │ │ ├── readonly2.bal │ │ │ │ ├── string-singleton.bal │ │ │ │ └── tuple1.bal │ │ ├── service.bal │ │ ├── stringTemplate.bal │ │ └── test.bal │ └── snapshots │ │ ├── annotation.bal.snap │ │ ├── class.bal.snap │ │ ├── const.bal.snap │ │ ├── function.bal.snap │ │ ├── json.bal.snap │ │ ├── match.bal.snap │ │ ├── natural.bal.snap │ │ ├── object.bal.snap │ │ ├── query.bal.snap │ │ ├── regexp.bal.snap │ │ ├── semtype │ │ ├── bmain.bal.snap │ │ ├── main.bal.snap │ │ ├── modules │ │ │ ├── b │ │ │ │ ├── bbuild.bal.snap │ │ │ │ ├── bparse.bal.snap │ │ │ │ ├── btoken.bal.snap │ │ │ │ └── tests │ │ │ │ │ └── btokentest.bal.snap │ │ │ ├── bdd │ │ │ │ ├── bdd.bal.snap │ │ │ │ └── tests │ │ │ │ │ └── bddtest.bal.snap │ │ │ ├── core │ │ │ │ ├── boolean.bal.snap │ │ │ │ ├── common.bal.snap │ │ │ │ ├── core.bal.snap │ │ │ │ ├── error.bal.snap │ │ │ │ ├── function.bal.snap │ │ │ │ ├── int.bal.snap │ │ │ │ ├── list.bal.snap │ │ │ │ ├── mapping.bal.snap │ │ │ │ ├── string.bal.snap │ │ │ │ └── tests │ │ │ │ │ └── coretest.bal.snap │ │ │ └── json │ │ │ │ ├── parse.bal.snap │ │ │ │ └── schema.bal.snap │ │ └── tests │ │ │ ├── baltest.bal.snap │ │ │ └── data │ │ │ ├── basic.bal.snap │ │ │ ├── boolean-subtype.bal.snap │ │ │ ├── error1.bal.snap │ │ │ ├── error2.bal.snap │ │ │ ├── function.bal.snap │ │ │ ├── hard.bal.snap │ │ │ ├── int-singleton.bal.snap │ │ │ ├── int-subtype.bal.snap │ │ │ ├── never.bal.snap │ │ │ ├── readonly1.bal.snap │ │ │ ├── readonly2.bal.snap │ │ │ ├── string-singleton.bal.snap │ │ │ └── tuple1.bal.snap │ │ ├── service.bal.snap │ │ ├── stringTemplate.bal.snap │ │ └── test.bal.snap ├── test-util.ts └── unit-test.ts └── tsconfig.json /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/improvement.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/.github/ISSUE_TEMPLATE/improvement.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new-feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/.github/ISSUE_TEMPLATE/new-feature.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/task.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/.github/ISSUE_TEMPLATE/task.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/README.md -------------------------------------------------------------------------------- /extract-keywords.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/extract-keywords.js -------------------------------------------------------------------------------- /issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/issue_template.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/package.json -------------------------------------------------------------------------------- /prism/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/prism/example.html -------------------------------------------------------------------------------- /prism/extract-keywords.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/prism/extract-keywords.js -------------------------------------------------------------------------------- /prism/prism-ballerina.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/prism/prism-ballerina.js -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/pull_request_template.md -------------------------------------------------------------------------------- /syntaxes/ballerina.YAML-tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/syntaxes/ballerina.YAML-tmLanguage -------------------------------------------------------------------------------- /syntaxes/ballerina.monarch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/syntaxes/ballerina.monarch.json -------------------------------------------------------------------------------- /syntaxes/ballerina.tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/syntaxes/ballerina.tmLanguage -------------------------------------------------------------------------------- /syntaxes/ballerina.tmLanguage.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/resources/config/annotation.bal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/config/annotation.bal -------------------------------------------------------------------------------- /test/resources/config/class.bal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/config/class.bal -------------------------------------------------------------------------------- /test/resources/config/const.bal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/config/const.bal -------------------------------------------------------------------------------- /test/resources/config/function.bal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/config/function.bal -------------------------------------------------------------------------------- /test/resources/config/json.bal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/config/json.bal -------------------------------------------------------------------------------- /test/resources/config/match.bal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/config/match.bal -------------------------------------------------------------------------------- /test/resources/config/natural.bal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/config/natural.bal -------------------------------------------------------------------------------- /test/resources/config/object.bal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/config/object.bal -------------------------------------------------------------------------------- /test/resources/config/query.bal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/config/query.bal -------------------------------------------------------------------------------- /test/resources/config/regexp.bal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/config/regexp.bal -------------------------------------------------------------------------------- /test/resources/config/semtype/Ballerina.toml: -------------------------------------------------------------------------------- 1 | [build-options] 2 | observabilityIncluded = true -------------------------------------------------------------------------------- /test/resources/config/semtype/bmain.bal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/config/semtype/bmain.bal -------------------------------------------------------------------------------- /test/resources/config/semtype/main.bal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/config/semtype/main.bal -------------------------------------------------------------------------------- /test/resources/config/semtype/modules/b/bbuild.bal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/config/semtype/modules/b/bbuild.bal -------------------------------------------------------------------------------- /test/resources/config/semtype/modules/b/bparse.bal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/config/semtype/modules/b/bparse.bal -------------------------------------------------------------------------------- /test/resources/config/semtype/modules/b/btoken.bal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/config/semtype/modules/b/btoken.bal -------------------------------------------------------------------------------- /test/resources/config/semtype/modules/b/tests/btokentest.bal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/config/semtype/modules/b/tests/btokentest.bal -------------------------------------------------------------------------------- /test/resources/config/semtype/modules/bdd/bdd.bal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/config/semtype/modules/bdd/bdd.bal -------------------------------------------------------------------------------- /test/resources/config/semtype/modules/bdd/tests/bddtest.bal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/config/semtype/modules/bdd/tests/bddtest.bal -------------------------------------------------------------------------------- /test/resources/config/semtype/modules/core/boolean.bal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/config/semtype/modules/core/boolean.bal -------------------------------------------------------------------------------- /test/resources/config/semtype/modules/core/common.bal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/config/semtype/modules/core/common.bal -------------------------------------------------------------------------------- /test/resources/config/semtype/modules/core/core.bal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/config/semtype/modules/core/core.bal -------------------------------------------------------------------------------- /test/resources/config/semtype/modules/core/error.bal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/config/semtype/modules/core/error.bal -------------------------------------------------------------------------------- /test/resources/config/semtype/modules/core/function.bal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/config/semtype/modules/core/function.bal -------------------------------------------------------------------------------- /test/resources/config/semtype/modules/core/int.bal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/config/semtype/modules/core/int.bal -------------------------------------------------------------------------------- /test/resources/config/semtype/modules/core/list.bal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/config/semtype/modules/core/list.bal -------------------------------------------------------------------------------- /test/resources/config/semtype/modules/core/mapping.bal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/config/semtype/modules/core/mapping.bal -------------------------------------------------------------------------------- /test/resources/config/semtype/modules/core/string.bal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/config/semtype/modules/core/string.bal -------------------------------------------------------------------------------- /test/resources/config/semtype/modules/core/tests/coretest.bal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/config/semtype/modules/core/tests/coretest.bal -------------------------------------------------------------------------------- /test/resources/config/semtype/modules/json/parse.bal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/config/semtype/modules/json/parse.bal -------------------------------------------------------------------------------- /test/resources/config/semtype/modules/json/schema.bal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/config/semtype/modules/json/schema.bal -------------------------------------------------------------------------------- /test/resources/config/semtype/tests/baltest.bal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/config/semtype/tests/baltest.bal -------------------------------------------------------------------------------- /test/resources/config/semtype/tests/data/basic.bal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/config/semtype/tests/data/basic.bal -------------------------------------------------------------------------------- /test/resources/config/semtype/tests/data/boolean-subtype.bal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/config/semtype/tests/data/boolean-subtype.bal -------------------------------------------------------------------------------- /test/resources/config/semtype/tests/data/error1.bal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/config/semtype/tests/data/error1.bal -------------------------------------------------------------------------------- /test/resources/config/semtype/tests/data/error2.bal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/config/semtype/tests/data/error2.bal -------------------------------------------------------------------------------- /test/resources/config/semtype/tests/data/function.bal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/config/semtype/tests/data/function.bal -------------------------------------------------------------------------------- /test/resources/config/semtype/tests/data/hard.bal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/config/semtype/tests/data/hard.bal -------------------------------------------------------------------------------- /test/resources/config/semtype/tests/data/int-singleton.bal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/config/semtype/tests/data/int-singleton.bal -------------------------------------------------------------------------------- /test/resources/config/semtype/tests/data/int-subtype.bal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/config/semtype/tests/data/int-subtype.bal -------------------------------------------------------------------------------- /test/resources/config/semtype/tests/data/never.bal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/config/semtype/tests/data/never.bal -------------------------------------------------------------------------------- /test/resources/config/semtype/tests/data/readonly1.bal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/config/semtype/tests/data/readonly1.bal -------------------------------------------------------------------------------- /test/resources/config/semtype/tests/data/readonly2.bal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/config/semtype/tests/data/readonly2.bal -------------------------------------------------------------------------------- /test/resources/config/semtype/tests/data/string-singleton.bal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/config/semtype/tests/data/string-singleton.bal -------------------------------------------------------------------------------- /test/resources/config/semtype/tests/data/tuple1.bal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/config/semtype/tests/data/tuple1.bal -------------------------------------------------------------------------------- /test/resources/config/service.bal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/config/service.bal -------------------------------------------------------------------------------- /test/resources/config/stringTemplate.bal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/config/stringTemplate.bal -------------------------------------------------------------------------------- /test/resources/config/test.bal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/config/test.bal -------------------------------------------------------------------------------- /test/resources/snapshots/annotation.bal.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/snapshots/annotation.bal.snap -------------------------------------------------------------------------------- /test/resources/snapshots/class.bal.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/snapshots/class.bal.snap -------------------------------------------------------------------------------- /test/resources/snapshots/const.bal.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/snapshots/const.bal.snap -------------------------------------------------------------------------------- /test/resources/snapshots/function.bal.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/snapshots/function.bal.snap -------------------------------------------------------------------------------- /test/resources/snapshots/json.bal.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/snapshots/json.bal.snap -------------------------------------------------------------------------------- /test/resources/snapshots/match.bal.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/snapshots/match.bal.snap -------------------------------------------------------------------------------- /test/resources/snapshots/natural.bal.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/snapshots/natural.bal.snap -------------------------------------------------------------------------------- /test/resources/snapshots/object.bal.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/snapshots/object.bal.snap -------------------------------------------------------------------------------- /test/resources/snapshots/query.bal.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/snapshots/query.bal.snap -------------------------------------------------------------------------------- /test/resources/snapshots/regexp.bal.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/snapshots/regexp.bal.snap -------------------------------------------------------------------------------- /test/resources/snapshots/semtype/bmain.bal.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/snapshots/semtype/bmain.bal.snap -------------------------------------------------------------------------------- /test/resources/snapshots/semtype/main.bal.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/snapshots/semtype/main.bal.snap -------------------------------------------------------------------------------- /test/resources/snapshots/semtype/modules/b/bbuild.bal.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/snapshots/semtype/modules/b/bbuild.bal.snap -------------------------------------------------------------------------------- /test/resources/snapshots/semtype/modules/b/bparse.bal.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/snapshots/semtype/modules/b/bparse.bal.snap -------------------------------------------------------------------------------- /test/resources/snapshots/semtype/modules/b/btoken.bal.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/snapshots/semtype/modules/b/btoken.bal.snap -------------------------------------------------------------------------------- /test/resources/snapshots/semtype/modules/b/tests/btokentest.bal.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/snapshots/semtype/modules/b/tests/btokentest.bal.snap -------------------------------------------------------------------------------- /test/resources/snapshots/semtype/modules/bdd/bdd.bal.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/snapshots/semtype/modules/bdd/bdd.bal.snap -------------------------------------------------------------------------------- /test/resources/snapshots/semtype/modules/bdd/tests/bddtest.bal.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/snapshots/semtype/modules/bdd/tests/bddtest.bal.snap -------------------------------------------------------------------------------- /test/resources/snapshots/semtype/modules/core/boolean.bal.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/snapshots/semtype/modules/core/boolean.bal.snap -------------------------------------------------------------------------------- /test/resources/snapshots/semtype/modules/core/common.bal.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/snapshots/semtype/modules/core/common.bal.snap -------------------------------------------------------------------------------- /test/resources/snapshots/semtype/modules/core/core.bal.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/snapshots/semtype/modules/core/core.bal.snap -------------------------------------------------------------------------------- /test/resources/snapshots/semtype/modules/core/error.bal.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/snapshots/semtype/modules/core/error.bal.snap -------------------------------------------------------------------------------- /test/resources/snapshots/semtype/modules/core/function.bal.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/snapshots/semtype/modules/core/function.bal.snap -------------------------------------------------------------------------------- /test/resources/snapshots/semtype/modules/core/int.bal.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/snapshots/semtype/modules/core/int.bal.snap -------------------------------------------------------------------------------- /test/resources/snapshots/semtype/modules/core/list.bal.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/snapshots/semtype/modules/core/list.bal.snap -------------------------------------------------------------------------------- /test/resources/snapshots/semtype/modules/core/mapping.bal.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/snapshots/semtype/modules/core/mapping.bal.snap -------------------------------------------------------------------------------- /test/resources/snapshots/semtype/modules/core/string.bal.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/snapshots/semtype/modules/core/string.bal.snap -------------------------------------------------------------------------------- /test/resources/snapshots/semtype/modules/core/tests/coretest.bal.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/snapshots/semtype/modules/core/tests/coretest.bal.snap -------------------------------------------------------------------------------- /test/resources/snapshots/semtype/modules/json/parse.bal.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/snapshots/semtype/modules/json/parse.bal.snap -------------------------------------------------------------------------------- /test/resources/snapshots/semtype/modules/json/schema.bal.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/snapshots/semtype/modules/json/schema.bal.snap -------------------------------------------------------------------------------- /test/resources/snapshots/semtype/tests/baltest.bal.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/snapshots/semtype/tests/baltest.bal.snap -------------------------------------------------------------------------------- /test/resources/snapshots/semtype/tests/data/basic.bal.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/snapshots/semtype/tests/data/basic.bal.snap -------------------------------------------------------------------------------- /test/resources/snapshots/semtype/tests/data/boolean-subtype.bal.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/snapshots/semtype/tests/data/boolean-subtype.bal.snap -------------------------------------------------------------------------------- /test/resources/snapshots/semtype/tests/data/error1.bal.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/snapshots/semtype/tests/data/error1.bal.snap -------------------------------------------------------------------------------- /test/resources/snapshots/semtype/tests/data/error2.bal.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/snapshots/semtype/tests/data/error2.bal.snap -------------------------------------------------------------------------------- /test/resources/snapshots/semtype/tests/data/function.bal.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/snapshots/semtype/tests/data/function.bal.snap -------------------------------------------------------------------------------- /test/resources/snapshots/semtype/tests/data/hard.bal.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/snapshots/semtype/tests/data/hard.bal.snap -------------------------------------------------------------------------------- /test/resources/snapshots/semtype/tests/data/int-singleton.bal.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/snapshots/semtype/tests/data/int-singleton.bal.snap -------------------------------------------------------------------------------- /test/resources/snapshots/semtype/tests/data/int-subtype.bal.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/snapshots/semtype/tests/data/int-subtype.bal.snap -------------------------------------------------------------------------------- /test/resources/snapshots/semtype/tests/data/never.bal.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/snapshots/semtype/tests/data/never.bal.snap -------------------------------------------------------------------------------- /test/resources/snapshots/semtype/tests/data/readonly1.bal.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/snapshots/semtype/tests/data/readonly1.bal.snap -------------------------------------------------------------------------------- /test/resources/snapshots/semtype/tests/data/readonly2.bal.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/snapshots/semtype/tests/data/readonly2.bal.snap -------------------------------------------------------------------------------- /test/resources/snapshots/semtype/tests/data/string-singleton.bal.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/snapshots/semtype/tests/data/string-singleton.bal.snap -------------------------------------------------------------------------------- /test/resources/snapshots/semtype/tests/data/tuple1.bal.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/snapshots/semtype/tests/data/tuple1.bal.snap -------------------------------------------------------------------------------- /test/resources/snapshots/service.bal.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/snapshots/service.bal.snap -------------------------------------------------------------------------------- /test/resources/snapshots/stringTemplate.bal.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/snapshots/stringTemplate.bal.snap -------------------------------------------------------------------------------- /test/resources/snapshots/test.bal.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/resources/snapshots/test.bal.snap -------------------------------------------------------------------------------- /test/test-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/test-util.ts -------------------------------------------------------------------------------- /test/unit-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/test/unit-test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ballerina-platform/ballerina-grammar/HEAD/tsconfig.json --------------------------------------------------------------------------------