├── .github └── workflows │ ├── documentation.yml │ └── node.js.yml ├── .gitignore ├── .yarnrc-github-packages ├── CHANGELOG.md ├── LICENSE ├── README.md ├── eslint.config.mjs ├── jest.config.js ├── package.json ├── src ├── cli.ts ├── index.ts ├── interop │ ├── antlr4.ts │ ├── ecore-basic.ts │ ├── ecore-enabled-parser.ts │ ├── ecore-patching.ts │ ├── ecore.ts │ ├── indexing.ts │ ├── json.ts │ ├── kolasu-v1-metamodel.ts │ ├── lionweb-starlasu-language.ts │ ├── lionweb.ts │ ├── parser-package.ts │ ├── starlasu-v2-metamodel.ts │ ├── strumenta-playground.ts │ ├── transpilation-package-v1.ts │ └── transpilation-package.ts ├── mapping │ └── mapping.ts ├── model │ ├── errors.ts │ ├── model.ts │ ├── naming.ts │ ├── position.ts │ └── processing.ts ├── parsing │ ├── ast-parser.ts │ ├── index.ts │ ├── parse-tree.ts │ ├── parsing.ts │ └── tylasu-parser.ts ├── testing │ └── testing.ts ├── trace │ └── trace-node.ts ├── transformation │ └── transformation.ts ├── traversing │ ├── by-position.ts │ └── structurally.ts ├── utils │ └── capitalize.ts └── validation.ts ├── tests ├── .gitignore ├── ast.test.ts ├── data │ ├── ast.json │ ├── kolasu.json │ ├── lionweb │ │ ├── egl-language.json │ │ ├── egl-model-2.json │ │ ├── egl-model.json │ │ ├── fs-language.json │ │ └── fs-model.json │ ├── playground │ │ ├── README.md │ │ ├── example1.json │ │ ├── java-metamodels.json │ │ ├── java │ │ │ ├── example-1.json │ │ │ ├── metamodel.json │ │ │ ├── rpg2java-metamodels.json │ │ │ ├── trace-with-simple-origins.json │ │ │ └── trace.json │ │ ├── metamodel.json │ │ ├── pylasu │ │ │ ├── array_test_0.json │ │ │ ├── pyspark-metamodel.json │ │ │ └── sas-metamodel.json │ │ ├── rpg-metamodels.json │ │ ├── rpg │ │ │ ├── BBSAACCLVR.json │ │ │ ├── JD_001.json │ │ │ ├── definition.json │ │ │ ├── metamodel.json │ │ │ ├── moulinette.json │ │ │ ├── open-weather.json │ │ │ ├── plugconv.json │ │ │ ├── rpg2py-metamodels.json │ │ │ └── rpg2py-workspace-example1.json │ │ ├── rpgtojava-transpilation-example.json │ │ ├── sas │ │ │ ├── metamodel.json │ │ │ ├── open-source_covid-19-sas_data_import-data-jhu.sas.json │ │ │ └── open-source_sas-cert-prep-data_professional-prep-guide_cre8permdata.sas.json │ │ └── sql │ │ │ └── metamodel.json │ ├── rpg.metamodel.json │ ├── sas.example1.json │ ├── sas.metamodel.json │ ├── simplem.json │ └── simplemm.json ├── ecore.test.ts ├── grammar │ ├── SimpleLangLexer.g4 │ └── SimpleLangParser.g4 ├── interop │ ├── lionweb.test.ts │ ├── parser-trace.test.ts │ ├── transpilation-trace.test.ts │ └── workspace-transpilation-trace.test.ts ├── issues.test.ts ├── json.test.ts ├── mapping.test.ts ├── metamodel.test.ts ├── model │ ├── origin.test.ts │ └── position.test.ts ├── naming.test.ts ├── nodes.ts ├── nodes │ └── nodes.test.ts ├── parsing.test.ts ├── processing.test.ts ├── strumenta-playground.test.ts ├── testing │ └── testing.test.ts ├── transformation │ └── transformation.test.ts ├── traversing.test.ts ├── traversing │ └── structurally.test.ts └── tsconfig.json ├── tsconfig.base.json ├── tsconfig.json └── yarn.lock /.github/workflows/documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/.github/workflows/documentation.yml -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/.gitignore -------------------------------------------------------------------------------- /.yarnrc-github-packages: -------------------------------------------------------------------------------- 1 | "@strumenta:registry" "https://npm.pkg.github.com" -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/package.json -------------------------------------------------------------------------------- /src/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/src/cli.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/interop/antlr4.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/src/interop/antlr4.ts -------------------------------------------------------------------------------- /src/interop/ecore-basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/src/interop/ecore-basic.ts -------------------------------------------------------------------------------- /src/interop/ecore-enabled-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/src/interop/ecore-enabled-parser.ts -------------------------------------------------------------------------------- /src/interop/ecore-patching.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/src/interop/ecore-patching.ts -------------------------------------------------------------------------------- /src/interop/ecore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/src/interop/ecore.ts -------------------------------------------------------------------------------- /src/interop/indexing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/src/interop/indexing.ts -------------------------------------------------------------------------------- /src/interop/json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/src/interop/json.ts -------------------------------------------------------------------------------- /src/interop/kolasu-v1-metamodel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/src/interop/kolasu-v1-metamodel.ts -------------------------------------------------------------------------------- /src/interop/lionweb-starlasu-language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/src/interop/lionweb-starlasu-language.ts -------------------------------------------------------------------------------- /src/interop/lionweb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/src/interop/lionweb.ts -------------------------------------------------------------------------------- /src/interop/parser-package.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/src/interop/parser-package.ts -------------------------------------------------------------------------------- /src/interop/starlasu-v2-metamodel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/src/interop/starlasu-v2-metamodel.ts -------------------------------------------------------------------------------- /src/interop/strumenta-playground.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/src/interop/strumenta-playground.ts -------------------------------------------------------------------------------- /src/interop/transpilation-package-v1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/src/interop/transpilation-package-v1.ts -------------------------------------------------------------------------------- /src/interop/transpilation-package.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/src/interop/transpilation-package.ts -------------------------------------------------------------------------------- /src/mapping/mapping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/src/mapping/mapping.ts -------------------------------------------------------------------------------- /src/model/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/src/model/errors.ts -------------------------------------------------------------------------------- /src/model/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/src/model/model.ts -------------------------------------------------------------------------------- /src/model/naming.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/src/model/naming.ts -------------------------------------------------------------------------------- /src/model/position.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/src/model/position.ts -------------------------------------------------------------------------------- /src/model/processing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/src/model/processing.ts -------------------------------------------------------------------------------- /src/parsing/ast-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/src/parsing/ast-parser.ts -------------------------------------------------------------------------------- /src/parsing/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/src/parsing/index.ts -------------------------------------------------------------------------------- /src/parsing/parse-tree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/src/parsing/parse-tree.ts -------------------------------------------------------------------------------- /src/parsing/parsing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/src/parsing/parsing.ts -------------------------------------------------------------------------------- /src/parsing/tylasu-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/src/parsing/tylasu-parser.ts -------------------------------------------------------------------------------- /src/testing/testing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/src/testing/testing.ts -------------------------------------------------------------------------------- /src/trace/trace-node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/src/trace/trace-node.ts -------------------------------------------------------------------------------- /src/transformation/transformation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/src/transformation/transformation.ts -------------------------------------------------------------------------------- /src/traversing/by-position.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/src/traversing/by-position.ts -------------------------------------------------------------------------------- /src/traversing/structurally.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/src/traversing/structurally.ts -------------------------------------------------------------------------------- /src/utils/capitalize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/src/utils/capitalize.ts -------------------------------------------------------------------------------- /src/validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/src/validation.ts -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | parser/ -------------------------------------------------------------------------------- /tests/ast.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/ast.test.ts -------------------------------------------------------------------------------- /tests/data/ast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/data/ast.json -------------------------------------------------------------------------------- /tests/data/kolasu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/data/kolasu.json -------------------------------------------------------------------------------- /tests/data/lionweb/egl-language.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/data/lionweb/egl-language.json -------------------------------------------------------------------------------- /tests/data/lionweb/egl-model-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/data/lionweb/egl-model-2.json -------------------------------------------------------------------------------- /tests/data/lionweb/egl-model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/data/lionweb/egl-model.json -------------------------------------------------------------------------------- /tests/data/lionweb/fs-language.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/data/lionweb/fs-language.json -------------------------------------------------------------------------------- /tests/data/lionweb/fs-model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/data/lionweb/fs-model.json -------------------------------------------------------------------------------- /tests/data/playground/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/data/playground/README.md -------------------------------------------------------------------------------- /tests/data/playground/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/data/playground/example1.json -------------------------------------------------------------------------------- /tests/data/playground/java-metamodels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/data/playground/java-metamodels.json -------------------------------------------------------------------------------- /tests/data/playground/java/example-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/data/playground/java/example-1.json -------------------------------------------------------------------------------- /tests/data/playground/java/metamodel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/data/playground/java/metamodel.json -------------------------------------------------------------------------------- /tests/data/playground/java/rpg2java-metamodels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/data/playground/java/rpg2java-metamodels.json -------------------------------------------------------------------------------- /tests/data/playground/java/trace-with-simple-origins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/data/playground/java/trace-with-simple-origins.json -------------------------------------------------------------------------------- /tests/data/playground/java/trace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/data/playground/java/trace.json -------------------------------------------------------------------------------- /tests/data/playground/metamodel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/data/playground/metamodel.json -------------------------------------------------------------------------------- /tests/data/playground/pylasu/array_test_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/data/playground/pylasu/array_test_0.json -------------------------------------------------------------------------------- /tests/data/playground/pylasu/pyspark-metamodel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/data/playground/pylasu/pyspark-metamodel.json -------------------------------------------------------------------------------- /tests/data/playground/pylasu/sas-metamodel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/data/playground/pylasu/sas-metamodel.json -------------------------------------------------------------------------------- /tests/data/playground/rpg-metamodels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/data/playground/rpg-metamodels.json -------------------------------------------------------------------------------- /tests/data/playground/rpg/BBSAACCLVR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/data/playground/rpg/BBSAACCLVR.json -------------------------------------------------------------------------------- /tests/data/playground/rpg/JD_001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/data/playground/rpg/JD_001.json -------------------------------------------------------------------------------- /tests/data/playground/rpg/definition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/data/playground/rpg/definition.json -------------------------------------------------------------------------------- /tests/data/playground/rpg/metamodel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/data/playground/rpg/metamodel.json -------------------------------------------------------------------------------- /tests/data/playground/rpg/moulinette.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/data/playground/rpg/moulinette.json -------------------------------------------------------------------------------- /tests/data/playground/rpg/open-weather.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/data/playground/rpg/open-weather.json -------------------------------------------------------------------------------- /tests/data/playground/rpg/plugconv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/data/playground/rpg/plugconv.json -------------------------------------------------------------------------------- /tests/data/playground/rpg/rpg2py-metamodels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/data/playground/rpg/rpg2py-metamodels.json -------------------------------------------------------------------------------- /tests/data/playground/rpg/rpg2py-workspace-example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/data/playground/rpg/rpg2py-workspace-example1.json -------------------------------------------------------------------------------- /tests/data/playground/rpgtojava-transpilation-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/data/playground/rpgtojava-transpilation-example.json -------------------------------------------------------------------------------- /tests/data/playground/sas/metamodel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/data/playground/sas/metamodel.json -------------------------------------------------------------------------------- /tests/data/playground/sas/open-source_covid-19-sas_data_import-data-jhu.sas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/data/playground/sas/open-source_covid-19-sas_data_import-data-jhu.sas.json -------------------------------------------------------------------------------- /tests/data/playground/sas/open-source_sas-cert-prep-data_professional-prep-guide_cre8permdata.sas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/data/playground/sas/open-source_sas-cert-prep-data_professional-prep-guide_cre8permdata.sas.json -------------------------------------------------------------------------------- /tests/data/playground/sql/metamodel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/data/playground/sql/metamodel.json -------------------------------------------------------------------------------- /tests/data/rpg.metamodel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/data/rpg.metamodel.json -------------------------------------------------------------------------------- /tests/data/sas.example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/data/sas.example1.json -------------------------------------------------------------------------------- /tests/data/sas.metamodel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/data/sas.metamodel.json -------------------------------------------------------------------------------- /tests/data/simplem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/data/simplem.json -------------------------------------------------------------------------------- /tests/data/simplemm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/data/simplemm.json -------------------------------------------------------------------------------- /tests/ecore.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/ecore.test.ts -------------------------------------------------------------------------------- /tests/grammar/SimpleLangLexer.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/grammar/SimpleLangLexer.g4 -------------------------------------------------------------------------------- /tests/grammar/SimpleLangParser.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/grammar/SimpleLangParser.g4 -------------------------------------------------------------------------------- /tests/interop/lionweb.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/interop/lionweb.test.ts -------------------------------------------------------------------------------- /tests/interop/parser-trace.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/interop/parser-trace.test.ts -------------------------------------------------------------------------------- /tests/interop/transpilation-trace.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/interop/transpilation-trace.test.ts -------------------------------------------------------------------------------- /tests/interop/workspace-transpilation-trace.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/interop/workspace-transpilation-trace.test.ts -------------------------------------------------------------------------------- /tests/issues.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/issues.test.ts -------------------------------------------------------------------------------- /tests/json.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/json.test.ts -------------------------------------------------------------------------------- /tests/mapping.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/mapping.test.ts -------------------------------------------------------------------------------- /tests/metamodel.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/metamodel.test.ts -------------------------------------------------------------------------------- /tests/model/origin.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/model/origin.test.ts -------------------------------------------------------------------------------- /tests/model/position.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/model/position.test.ts -------------------------------------------------------------------------------- /tests/naming.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/naming.test.ts -------------------------------------------------------------------------------- /tests/nodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/nodes.ts -------------------------------------------------------------------------------- /tests/nodes/nodes.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/nodes/nodes.test.ts -------------------------------------------------------------------------------- /tests/parsing.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/parsing.test.ts -------------------------------------------------------------------------------- /tests/processing.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/processing.test.ts -------------------------------------------------------------------------------- /tests/strumenta-playground.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/strumenta-playground.test.ts -------------------------------------------------------------------------------- /tests/testing/testing.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/testing/testing.test.ts -------------------------------------------------------------------------------- /tests/transformation/transformation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/transformation/transformation.test.ts -------------------------------------------------------------------------------- /tests/traversing.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/traversing.test.ts -------------------------------------------------------------------------------- /tests/traversing/structurally.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/traversing/structurally.test.ts -------------------------------------------------------------------------------- /tests/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tests/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tsconfig.base.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Strumenta/tylasu/HEAD/yarn.lock --------------------------------------------------------------------------------