├── .gitattributes ├── .github └── workflows │ └── node.js.yml ├── .gitignore ├── .npmignore ├── .prettierrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── developer-documentation ├── README.md ├── on-core-choice-boxes.md └── structure-of-the-project.md ├── notes ├── IdeasOnActions.md ├── LionWeb-errors-in-samples.md ├── Notes-on-styling.md ├── box-roles-and-actions.md ├── demo-canon.md ├── editor-misc.md ├── expression-editing.md ├── for-documentation-v2 │ ├── AST-graph.png │ ├── AST-plus-NS-graph.png │ ├── AST-plus-mult-refs.png │ ├── AST-plus-reference.png │ ├── Changes-Scoper-v1-v2.md │ ├── NS-graph-with-alternatives.png │ ├── NS-graph.png │ ├── On-scoping.md │ └── Styling-in-v2.md ├── interpreter.md ├── language-composition │ └── language-composition.adoc ├── new-scoper │ ├── C.m4 │ ├── ast-base-multiple-package-p1-import-p2.dot │ ├── ast-base-multiple-package-p1-import-p2.svg │ ├── ast-base-multiple-package.dot │ ├── ast-base-multiple-package.md │ ├── ast-base-multiple-package.svg │ ├── ast-base-single-package-nons.dot │ ├── ast-base-single-package-nons.m4 │ ├── ast-base-single-package-nons.m4.AST.dot │ ├── ast-base-single-package-nons.m4.AST.svg │ ├── ast-base-single-package-nons.m4.IMPORTS.dot │ ├── ast-base-single-package-nons.m4.IMPORTS.svg │ ├── ast-base-single-package-nons.m4.NAMESPACES.dot │ ├── ast-base-single-package-nons.m4.NAMESPACES.svg │ ├── ast-base-single-package-nons.m4.SHOW_IMPORTS_RECURSIVE.dot │ ├── ast-base-single-package-nons.m4.SHOW_IMPORTS_RECURSIVE.svg │ ├── ast-base-single-package-nons.svg │ ├── ast-base-single-package.dot │ ├── ast-base-single-package.md │ ├── ast-base-single-package.svg │ ├── c.svg │ ├── create-variants.sh │ ├── legend.dot │ ├── legend.svg │ └── m4arguments │ │ ├── SHOW_AST.m4 │ │ ├── SHOW_IMPORTS.m4 │ │ ├── SHOW_IMPORTS_RECURSIVE.m4 │ │ └── SHOW_NAMESPACES.m4 └── on-youtube-videos │ └── InventoryOfVideos.md ├── package.json ├── packages ├── core-svelte │ ├── .gitignore │ ├── .prettierignore │ ├── .prettierrc │ ├── README.md │ ├── package.json │ ├── src │ │ ├── additional-svelte-typings.d.ts │ │ ├── app.css │ │ ├── app.d.ts │ │ ├── app.html │ │ ├── demo.spec.ts │ │ ├── lib │ │ │ ├── __test__ │ │ │ │ ├── README.md │ │ │ │ ├── test-components │ │ │ │ │ ├── DropdownUser.svelte │ │ │ │ │ ├── LimitedCheckboxUser.svelte │ │ │ │ │ └── LimitedRadioUser.svelte │ │ │ │ └── test-environment │ │ │ │ │ ├── showcase │ │ │ │ │ ├── ModelInstantiator.ts │ │ │ │ │ ├── ShowCaseModel.ts │ │ │ │ │ ├── ShowCasePart.ts │ │ │ │ │ └── ShowCaseUnit.ts │ │ │ │ │ ├── simple-models │ │ │ │ │ ├── ElementWithList.ts │ │ │ │ │ ├── ElementWithOptional.ts │ │ │ │ │ ├── LimitedElement.ts │ │ │ │ │ ├── ModelMaker.ts │ │ │ │ │ └── SimpleElement.ts │ │ │ │ │ ├── svelte-test-model │ │ │ │ │ ├── SvelteTestInstantiator.ts │ │ │ │ │ ├── config │ │ │ │ │ │ ├── FreonConfiguration.ts │ │ │ │ │ │ └── gen │ │ │ │ │ │ │ └── SvelteTestEnvironment.ts │ │ │ │ │ ├── defs │ │ │ │ │ │ └── main.ast │ │ │ │ │ ├── editor │ │ │ │ │ │ ├── CustomSvelteTestActions.ts │ │ │ │ │ │ ├── CustomSvelteTestProjection.ts │ │ │ │ │ │ ├── gen │ │ │ │ │ │ │ ├── EditorDef.ts │ │ │ │ │ │ │ ├── OtherTypeBoxProvider.ts │ │ │ │ │ │ │ ├── SimpleNodeBoxProvider.ts │ │ │ │ │ │ │ ├── SvelteTestActions.ts │ │ │ │ │ │ │ ├── SvelteTestDefaultActions.ts │ │ │ │ │ │ │ ├── SvelteTestUnitBoxProvider.ts │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── language │ │ │ │ │ │ └── gen │ │ │ │ │ │ │ ├── OtherType.ts │ │ │ │ │ │ │ ├── SimpleNode.ts │ │ │ │ │ │ │ ├── SvelteTest.ts │ │ │ │ │ │ │ ├── SvelteTestLanguage.ts │ │ │ │ │ │ │ ├── SvelteTestUnit.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── internal.ts │ │ │ │ │ ├── scoper │ │ │ │ │ │ ├── CustomSvelteTestScoper.ts │ │ │ │ │ │ ├── gen │ │ │ │ │ │ │ ├── SvelteTestScoper.ts │ │ │ │ │ │ │ ├── SvelteTestScoperDef.ts │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── stdlib │ │ │ │ │ │ ├── CustomSvelteTestStdlib.ts │ │ │ │ │ │ ├── gen │ │ │ │ │ │ │ └── SvelteTestStdlib.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── typer │ │ │ │ │ │ ├── CustomSvelteTestTyperPart.ts │ │ │ │ │ │ ├── gen │ │ │ │ │ │ │ ├── SvelteTestTyperDef.ts │ │ │ │ │ │ │ ├── SvelteTestTyperPart.ts │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── utils │ │ │ │ │ │ └── gen │ │ │ │ │ │ │ ├── ListUtil.ts │ │ │ │ │ │ │ ├── SvelteTestDefaultWorker.ts │ │ │ │ │ │ │ ├── SvelteTestWalker.ts │ │ │ │ │ │ │ ├── SvelteTestWorker.ts │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── validator │ │ │ │ │ │ ├── CustomSvelteTestValidator.ts │ │ │ │ │ │ ├── gen │ │ │ │ │ │ ├── SvelteTestNonOptionalsChecker.ts │ │ │ │ │ │ ├── SvelteTestReferenceChecker.ts │ │ │ │ │ │ ├── SvelteTestValidator.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── utils │ │ │ │ │ └── CommonFunctions.ts │ │ │ ├── components │ │ │ │ ├── BooleanCheckboxComponent.svelte │ │ │ │ ├── BooleanInnerSwitchComponent.svelte │ │ │ │ ├── BooleanRadioComponent.svelte │ │ │ │ ├── BooleanSwitchComponent.svelte │ │ │ │ ├── ButtonComponent.svelte │ │ │ │ ├── ComponentLoggers.ts │ │ │ │ ├── ContextMenu.svelte │ │ │ │ ├── DropdownComponent.svelte │ │ │ │ ├── ElementComponent.svelte │ │ │ │ ├── EmptyLineComponent.svelte │ │ │ │ ├── ErrorMarker.svelte │ │ │ │ ├── ErrorTooltip.svelte │ │ │ │ ├── ExpandableComponent.svelte │ │ │ │ ├── FragmentComponent.svelte │ │ │ │ ├── FreonComponent.svelte │ │ │ │ ├── GridCellComponent.svelte │ │ │ │ ├── GridComponent.svelte │ │ │ │ ├── IndentComponent.svelte │ │ │ │ ├── LabelComponent.svelte │ │ │ │ ├── LayoutComponent.svelte │ │ │ │ ├── LimitedCheckboxComponent.svelte │ │ │ │ ├── LimitedRadioComponent.svelte │ │ │ │ ├── ListComponent.svelte │ │ │ │ ├── MultiLineTextComponent.svelte │ │ │ │ ├── NumericSliderComponent.svelte │ │ │ │ ├── OptionalComponent.svelte │ │ │ │ ├── RenderComponent.svelte │ │ │ │ ├── SvgComponent.svelte │ │ │ │ ├── TableCellComponent.svelte │ │ │ │ ├── TableComponent.svelte │ │ │ │ ├── TextComponent.svelte │ │ │ │ ├── TextComponentExpectedBehaviour.md │ │ │ │ ├── TextDropdownComponent.svelte │ │ │ │ ├── images │ │ │ │ │ ├── ArrowForward.svelte │ │ │ │ │ ├── ArrowUp.svelte │ │ │ │ │ └── DragHandle.svelte │ │ │ │ ├── index.ts │ │ │ │ ├── stores │ │ │ │ │ └── AllStores.svelte.ts │ │ │ │ └── svelte-utils │ │ │ │ │ ├── CaretDetails.ts │ │ │ │ │ ├── ClickOutside.ts │ │ │ │ │ ├── CommonFunctions.ts │ │ │ │ │ ├── DummyNode.ts │ │ │ │ │ ├── Externals.ts │ │ │ │ │ ├── FreComponentProps.ts │ │ │ │ │ ├── KeystrokeStore.ts │ │ │ │ │ ├── PaneLike.ts │ │ │ │ │ ├── Scroll-debug.ts │ │ │ │ │ ├── ScrollingUtils.ts │ │ │ │ │ ├── TableDetails.ts │ │ │ │ │ ├── TextComponentHelper.ts │ │ │ │ │ ├── chatgpt-on-scolling │ │ │ │ │ ├── Pane.svelte │ │ │ │ │ ├── Scroller.ts │ │ │ │ │ └── Utilities.ts │ │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ └── styles │ │ │ │ ├── freon-color-definitions.css │ │ │ │ ├── freon-light.css │ │ │ │ ├── freon-plain-dark.css │ │ │ │ ├── freon-tw-dark.css │ │ │ │ └── freon.css │ │ └── routes │ │ │ ├── +layout.svelte │ │ │ ├── +page.svelte │ │ │ ├── dragdrop │ │ │ └── +page.svelte │ │ │ ├── expandable │ │ │ └── +page.svelte │ │ │ ├── render │ │ │ └── +page.svelte │ │ │ └── tabbing │ │ │ └── +page.svelte │ ├── static │ │ └── favicon.png │ ├── svelte.config.js │ ├── tsconfig.json │ └── vite.config.ts ├── core │ ├── eslint.config.js │ ├── oldvite-config-ts.md │ ├── package.json │ ├── src │ │ ├── __tests__ │ │ │ ├── changes │ │ │ │ ├── Change.test.ts │ │ │ │ ├── ModelCreator.ts │ │ │ │ ├── ReferenceUpdate.test.ts │ │ │ │ ├── change-model │ │ │ │ │ ├── UndoModel.ts │ │ │ │ │ ├── UndoPart.ts │ │ │ │ │ └── UndoUnit.ts │ │ │ │ └── reference-change-model │ │ │ │ │ ├── BinaryExpression.ts │ │ │ │ │ ├── CalcExpression.ts │ │ │ │ │ ├── Calculator.ts │ │ │ │ │ ├── CalculatorModel.ts │ │ │ │ │ ├── CalculatorModelLanguage.ts │ │ │ │ │ ├── INamedConcept.ts │ │ │ │ │ ├── InputField.ts │ │ │ │ │ ├── InputFieldReference.ts │ │ │ │ │ ├── LiteralExpression.ts │ │ │ │ │ ├── NumberLiteralExpression.ts │ │ │ │ │ ├── OutputField.ts │ │ │ │ │ ├── PlusExpression.ts │ │ │ │ │ └── internal.ts │ │ │ ├── mobx │ │ │ │ ├── FreNodeReferenceTestScoper.ts │ │ │ │ ├── MobxModel.ts │ │ │ │ ├── MobxTest.spec.ts │ │ │ │ └── TestScoper.ts │ │ │ └── scoper │ │ │ │ ├── ModelCreator.ts │ │ │ │ ├── additionalNamespaces.test.ts │ │ │ │ ├── alternativeNamespaces.test.ts │ │ │ │ ├── declaredNames.test.ts │ │ │ │ ├── exportedNamespaces.test.ts │ │ │ │ ├── parentNames.test.ts │ │ │ │ ├── publicPrivate.test.ts │ │ │ │ └── scoper-model │ │ │ │ ├── AdditionalNamespacesScoper.ts │ │ │ │ ├── ExportedNamespacesScoper.ts │ │ │ │ ├── IWithName.ts │ │ │ │ ├── IWithoutName.ts │ │ │ │ ├── NodeX.ts │ │ │ │ ├── NodeY.ts │ │ │ │ ├── ReplacementNamespaceScoper.ts │ │ │ │ ├── ScoperModel.ts │ │ │ │ ├── ScoperModelLanguage.ts │ │ │ │ ├── ScoperModelScoper.ts │ │ │ │ ├── ScoperTest.ast │ │ │ │ ├── UnitA.ts │ │ │ │ ├── UnitB.ts │ │ │ │ ├── index.ts │ │ │ │ └── internal.ts │ │ ├── ast-utils │ │ │ ├── Ast2Dot.ts │ │ │ ├── AstActionExecutor.ts │ │ │ ├── AstUtil.ts │ │ │ ├── AstWalker.ts │ │ │ ├── AstWorker.ts │ │ │ └── index.ts │ │ ├── ast │ │ │ ├── FreBinaryExpression.ts │ │ │ ├── FreExpressionNode.ts │ │ │ ├── FreModel.ts │ │ │ ├── FreModelUnit.ts │ │ │ ├── FreNamedNode.ts │ │ │ ├── FreNode.ts │ │ │ ├── FreNodeBaseImpl.ts │ │ │ ├── FreNodeReference.ts │ │ │ ├── FreOwnerDescriptor.ts │ │ │ ├── decorators │ │ │ │ ├── DecoratedModelElement.ts │ │ │ │ ├── MobxModelDecorators.ts │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ └── internal.ts │ │ ├── change-manager │ │ │ ├── AstChanger.ts │ │ │ ├── FreChangeManager.ts │ │ │ ├── FreDelta.ts │ │ │ ├── FreUndoManager.ts │ │ │ ├── FreUndoStackManager.ts │ │ │ ├── ReferenceUpdateManager.ts │ │ │ ├── ReferenceUpdateWorker.ts │ │ │ ├── index.ts │ │ │ └── internal.ts │ │ ├── editor │ │ │ ├── ClientRectangleTypes.ts │ │ │ ├── FreCombinedActions.ts │ │ │ ├── FreEditor.ts │ │ │ ├── FreErrorDecorator.ts │ │ │ ├── FreStyle.ts │ │ │ ├── FreTableDefinition.ts │ │ │ ├── README.md │ │ │ ├── actions │ │ │ │ ├── FreAction.ts │ │ │ │ ├── FreCreateBinaryExpressionAction.ts │ │ │ │ ├── FreCreatePartAction.ts │ │ │ │ ├── FreCreateSiblingAction.ts │ │ │ │ ├── FreCustomAction.ts │ │ │ │ ├── FreTriggers.ts │ │ │ │ ├── index.ts │ │ │ │ └── internal.ts │ │ │ ├── boxes │ │ │ │ ├── AbstractChoiceBox.ts │ │ │ │ ├── ActionBox.ts │ │ │ │ ├── BooleanControlBox.ts │ │ │ │ ├── Box.ts │ │ │ │ ├── BoxFactory.ts │ │ │ │ ├── ButtonBox.ts │ │ │ │ ├── ChoiceTextHelper.ts │ │ │ │ ├── ElementBox.ts │ │ │ │ ├── EmptyLineBox.ts │ │ │ │ ├── FragmentBox.ts │ │ │ │ ├── GridBox.ts │ │ │ │ ├── GridCellBox.ts │ │ │ │ ├── IndentBox.ts │ │ │ │ ├── LabelBox.ts │ │ │ │ ├── LayoutBox.ts │ │ │ │ ├── LimitedControlBox.ts │ │ │ │ ├── ListBox.ts │ │ │ │ ├── MultiLineTextBox.ts │ │ │ │ ├── NumberControlBox.ts │ │ │ │ ├── OptionalBox.ts │ │ │ │ ├── OptionalBox2.ts │ │ │ │ ├── ReferenceBox.ts │ │ │ │ ├── SelectBox.ts │ │ │ │ ├── SelectOption.ts │ │ │ │ ├── SvgBox.ts │ │ │ │ ├── TableBox.ts │ │ │ │ ├── TableCellBox.ts │ │ │ │ ├── TableRowBox.ts │ │ │ │ ├── TextBox.ts │ │ │ │ ├── externalBoxes │ │ │ │ │ ├── AbstractExternalBox.ts │ │ │ │ │ ├── AbstractExternalPropertyBox.ts │ │ │ │ │ ├── AbstractPropertyWrapperBox.ts │ │ │ │ │ ├── BooleanReplacerBox.ts │ │ │ │ │ ├── BooleanWrapperBox.ts │ │ │ │ │ ├── FragmentWrapperBox.ts │ │ │ │ │ ├── NumberReplacerBox.ts │ │ │ │ │ ├── NumberWrapperBox.ts │ │ │ │ │ ├── PartListReplacerBox.ts │ │ │ │ │ ├── PartListWrapperBox.ts │ │ │ │ │ ├── PartReplacerBox.ts │ │ │ │ │ ├── PartWrapperBox.ts │ │ │ │ │ ├── RefListReplacerBox.ts │ │ │ │ │ ├── RefListWrapperBox.ts │ │ │ │ │ ├── RefReplacerBox.ts │ │ │ │ │ ├── RefWrapperBox.ts │ │ │ │ │ ├── SimpleExternalBox.ts │ │ │ │ │ ├── StringReplacerBox.ts │ │ │ │ │ ├── StringWrapperBox.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── internal.ts │ │ │ │ ├── index.ts │ │ │ │ └── internal.ts │ │ │ ├── index.ts │ │ │ ├── internal.ts │ │ │ ├── projections │ │ │ │ ├── FreBoxProvider.ts │ │ │ │ ├── FreHeaderProvider.ts │ │ │ │ ├── FreProjection.ts │ │ │ │ ├── FreProjectionCalculator.ts │ │ │ │ ├── FreProjectionHandler.ts │ │ │ │ ├── FreTableHeaderInfo.ts │ │ │ │ └── index.ts │ │ │ ├── simplifiedBoxAPI │ │ │ │ ├── BoxUtil.ts │ │ │ │ ├── RoleProvider.ts │ │ │ │ ├── TableUtil.ts │ │ │ │ ├── box-util-helpers │ │ │ │ │ ├── UtilCheckers.ts │ │ │ │ │ ├── UtilCommon.ts │ │ │ │ │ ├── UtilLimitedHelpers.ts │ │ │ │ │ ├── UtilPartHelpers.ts │ │ │ │ │ ├── UtilPrimHelper.ts │ │ │ │ │ └── UtilRefHelpers.ts │ │ │ │ └── index.ts │ │ │ └── util │ │ │ │ ├── ActionsUtil.ts │ │ │ │ ├── BehaviorUtils.ts │ │ │ │ ├── FreCaret.ts │ │ │ │ ├── FreEditorUtil.ts │ │ │ │ ├── FreExpressionUtil.ts │ │ │ │ ├── Keys.ts │ │ │ │ ├── ListElementInfo.ts │ │ │ │ ├── ListUtil.ts │ │ │ │ ├── MenuItem.ts │ │ │ │ ├── index.ts │ │ │ │ └── internal.ts │ │ ├── environment │ │ │ ├── FreEnvironment.ts │ │ │ ├── FreLanguageEnvironment.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── internal.ts │ │ ├── interpreter │ │ │ ├── FreInterpreter.ts │ │ │ ├── IMainInterpreter.ts │ │ │ ├── InterpreterContext.ts │ │ │ ├── InterpreterException.ts │ │ │ ├── InterpreterTracer.ts │ │ │ ├── MainInterpreter.ts │ │ │ ├── index.ts │ │ │ └── runtime │ │ │ │ ├── RtArray.ts │ │ │ │ ├── RtBoolean.ts │ │ │ │ ├── RtEmpty.ts │ │ │ │ ├── RtError.ts │ │ │ │ ├── RtNumber.ts │ │ │ │ ├── RtObject.ts │ │ │ │ ├── RtString.ts │ │ │ │ └── index.ts │ │ ├── language │ │ │ ├── FreLanguage.ts │ │ │ ├── FreLanguageRegistry.ts │ │ │ └── index.ts │ │ ├── logging │ │ │ ├── FreLogger.ts │ │ │ └── index.ts │ │ ├── reader │ │ │ ├── FreParseLocation.ts │ │ │ ├── FreReader.ts │ │ │ └── index.ts │ │ ├── scoper │ │ │ ├── CollectDeclaredNodesWorker.ts │ │ │ ├── FreCompositeScoper.ts │ │ │ ├── FreNamespace.ts │ │ │ ├── FreNamespaceInfo.ts │ │ │ ├── FreScoper.ts │ │ │ ├── FreScoperBase.ts │ │ │ ├── ScoperUtil.ts │ │ │ ├── index.ts │ │ │ └── internal.ts │ │ ├── searchers │ │ │ ├── FreSearchWorker.ts │ │ │ ├── FreSearcher.ts │ │ │ ├── NamedElementSearchWorker.ts │ │ │ ├── StringSearchWorker.ts │ │ │ ├── StructureSearchWorker.ts │ │ │ └── index.ts │ │ ├── stdlib │ │ │ ├── FreStdlib.ts │ │ │ └── index.ts │ │ ├── storage │ │ │ ├── InMemoryModel.ts │ │ │ ├── index.ts │ │ │ ├── serializer │ │ │ │ ├── FreLionwebSerializer.ts │ │ │ │ ├── FreModelSerializer.ts │ │ │ │ ├── FreSerializer.ts │ │ │ │ ├── NewLionwebM3.ts │ │ │ │ └── index.ts │ │ │ └── server │ │ │ │ ├── IServerCommunication.ts │ │ │ │ ├── LionWebRepositoryCommunication.ts │ │ │ │ ├── LionwebIdProvider.ts │ │ │ │ ├── LocalLionwebIdProvider.ts │ │ │ │ ├── ServerCommunication.ts │ │ │ │ ├── UsedLanguages.ts │ │ │ │ └── index.ts │ │ ├── typer │ │ │ ├── AstType.ts │ │ │ ├── FreCommonSuperTypeUtil.ts │ │ │ ├── FreCompositeTyper.ts │ │ │ ├── FreType.ts │ │ │ ├── FreTypeOrderedList.ts │ │ │ ├── FreTyper.ts │ │ │ └── index.ts │ │ ├── util │ │ │ ├── ArrayUtil.ts │ │ │ ├── BalanceTreeUtils.ts │ │ │ ├── FreUtils.ts │ │ │ ├── IdProvider.ts │ │ │ ├── Json.ts │ │ │ ├── MatchUtil.ts │ │ │ ├── SimpleIdProvider.ts │ │ │ ├── index.ts │ │ │ └── internal.ts │ │ ├── validator │ │ │ ├── FreValidator.ts │ │ │ └── index.ts │ │ └── writer │ │ │ ├── FreWriter.ts │ │ │ └── index.ts │ └── tsconfig.json ├── meta │ ├── package.json │ ├── src │ │ ├── __tests__ │ │ │ ├── TestPathHelpers.ts │ │ │ ├── commonAstFiles │ │ │ │ └── test-language.ast │ │ │ ├── commonSuper │ │ │ │ └── checkCommonSuper.test.ts │ │ │ ├── editor-tests │ │ │ │ ├── checkCheckingErrors.test.ts │ │ │ │ ├── checkEditUnitStructure.test.ts │ │ │ │ ├── checkIndentation.test.ts │ │ │ │ ├── correctDefFiles │ │ │ │ │ ├── test1.edit │ │ │ │ │ ├── test2.edit │ │ │ │ │ ├── test3.edit │ │ │ │ │ └── test4.edit │ │ │ │ ├── faultyDefFiles │ │ │ │ │ └── checking-errors │ │ │ │ │ │ ├── test-all.edit │ │ │ │ │ │ ├── test1.edit │ │ │ │ │ │ ├── test10.edit │ │ │ │ │ │ ├── test11.edit │ │ │ │ │ │ ├── test12.edit │ │ │ │ │ │ ├── test13.edit │ │ │ │ │ │ ├── test14.edit │ │ │ │ │ │ ├── test15-non-default.edit │ │ │ │ │ │ ├── test15.edit │ │ │ │ │ │ ├── test2.edit │ │ │ │ │ │ ├── test3.edit │ │ │ │ │ │ ├── test4a.edit │ │ │ │ │ │ ├── test4b.edit │ │ │ │ │ │ ├── test5a.edit │ │ │ │ │ │ ├── test5b.edit │ │ │ │ │ │ ├── test5c.edit │ │ │ │ │ │ ├── test6.edit │ │ │ │ │ │ ├── test7.edit │ │ │ │ │ │ ├── test8.edit │ │ │ │ │ │ └── test9.edit │ │ │ │ └── indentationFiles │ │ │ │ │ ├── test1.edit │ │ │ │ │ ├── test2.edit │ │ │ │ │ ├── test3.edit │ │ │ │ │ ├── test4.edit │ │ │ │ │ ├── test5.edit │ │ │ │ │ └── test6.edit │ │ │ ├── expression-tests │ │ │ │ ├── checkDemoLanguage.test.ts │ │ │ │ ├── checkExpressionChecker.test.ts │ │ │ │ ├── checkExpressions.test.ts │ │ │ │ ├── checkGeneration.test.ts │ │ │ │ ├── checkGeneration2.test.ts │ │ │ │ └── expressionDefFiles │ │ │ │ │ ├── demoExpressions.fretest │ │ │ │ │ ├── demoLanguage.ast │ │ │ │ │ ├── test-faulty1.fretest │ │ │ │ │ ├── test1.fretest │ │ │ │ │ ├── test2.fretest │ │ │ │ │ └── testLanguage.ast │ │ │ ├── language-tests │ │ │ │ ├── checkCheckingErrors.test.ts │ │ │ │ ├── checkInternalStructure.test.ts │ │ │ │ ├── checkPropertyInheritance1.test.ts │ │ │ │ ├── checkPropertyInheritance2.test.ts │ │ │ │ ├── checkPropertyInheritance3.test.ts │ │ │ │ ├── checkPropertyInheritance4.test.ts │ │ │ │ ├── checkSyntaxErrors.test.ts │ │ │ │ ├── correctDefFiles │ │ │ │ │ └── internal-structure │ │ │ │ │ │ ├── test1.ast │ │ │ │ │ │ ├── test2.ast │ │ │ │ │ │ ├── test3.ast │ │ │ │ │ │ ├── test4.ast │ │ │ │ │ │ ├── test5.ast │ │ │ │ │ │ └── test6.ast │ │ │ │ ├── faultyDefFiles │ │ │ │ │ ├── checking-errors │ │ │ │ │ │ ├── test1.ast │ │ │ │ │ │ ├── test10.ast │ │ │ │ │ │ ├── test11.ast │ │ │ │ │ │ ├── test12.ast │ │ │ │ │ │ ├── test2.ast │ │ │ │ │ │ ├── test3.ast │ │ │ │ │ │ ├── test4.ast │ │ │ │ │ │ ├── test5.ast │ │ │ │ │ │ ├── test6.ast │ │ │ │ │ │ ├── test7.ast │ │ │ │ │ │ ├── test7a.ast │ │ │ │ │ │ ├── test8.ast │ │ │ │ │ │ └── test9.ast │ │ │ │ │ ├── property-inheritance1 │ │ │ │ │ │ ├── prop_test1.ast │ │ │ │ │ │ ├── prop_test2.ast │ │ │ │ │ │ ├── prop_test3.ast │ │ │ │ │ │ ├── prop_test4.ast │ │ │ │ │ │ ├── prop_test4a.ast │ │ │ │ │ │ ├── prop_test4b.ast │ │ │ │ │ │ ├── prop_test5.ast │ │ │ │ │ │ ├── prop_test5a.ast │ │ │ │ │ │ ├── prop_test6.ast │ │ │ │ │ │ ├── prop_test6a.ast │ │ │ │ │ │ ├── prop_test7.ast │ │ │ │ │ │ ├── prop_test7a.ast │ │ │ │ │ │ └── prop_test8.ast │ │ │ │ │ ├── property-inheritance2 │ │ │ │ │ │ ├── prop_test1.ast │ │ │ │ │ │ ├── prop_test2.ast │ │ │ │ │ │ ├── prop_test3.ast │ │ │ │ │ │ ├── prop_test4.ast │ │ │ │ │ │ ├── prop_test4a.ast │ │ │ │ │ │ ├── prop_test4b.ast │ │ │ │ │ │ ├── prop_test5.ast │ │ │ │ │ │ ├── prop_test5a.ast │ │ │ │ │ │ ├── prop_test6.ast │ │ │ │ │ │ ├── prop_test6a.ast │ │ │ │ │ │ ├── prop_test7.ast │ │ │ │ │ │ ├── prop_test7a.ast │ │ │ │ │ │ └── prop_test8.ast │ │ │ │ │ ├── property-inheritance3 │ │ │ │ │ │ ├── prop_test7.ast │ │ │ │ │ │ ├── prop_test7a.ast │ │ │ │ │ │ └── prop_test7b.ast │ │ │ │ │ ├── property-inheritance4 │ │ │ │ │ │ ├── prop_test1.ast │ │ │ │ │ │ ├── prop_test2.ast │ │ │ │ │ │ └── prop_test4.ast │ │ │ │ │ └── syntax-errors │ │ │ │ │ │ ├── test1.ast │ │ │ │ │ │ ├── test10.ast │ │ │ │ │ │ ├── test11.ast │ │ │ │ │ │ ├── test2.ast │ │ │ │ │ │ ├── test3.ast │ │ │ │ │ │ ├── test5.ast │ │ │ │ │ │ ├── test6.ast │ │ │ │ │ │ ├── test7.ast │ │ │ │ │ │ ├── test8.ast │ │ │ │ │ │ └── test9.ast │ │ │ │ └── utils.ts │ │ │ ├── parser-tests │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── checkGrammar.test.ts.snap │ │ │ │ ├── checkGrammar.test.ts │ │ │ │ └── correctDefFiles │ │ │ │ │ ├── test1.ast │ │ │ │ │ ├── test1.edit │ │ │ │ │ ├── test2.ast │ │ │ │ │ ├── test2.edit │ │ │ │ │ ├── test3.ast │ │ │ │ │ ├── test3.edit │ │ │ │ │ ├── test4.ast │ │ │ │ │ └── test4.edit │ │ │ ├── scoper-tests │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── checkGenerateScoper.test.ts.snap │ │ │ │ │ └── checkGenerateScoperTest.test.ts.snap │ │ │ │ ├── checkGenerateScoper.test.ts │ │ │ │ ├── checkGenerateScoperTest.test.ts │ │ │ │ ├── checkScoperChecker.test.ts │ │ │ │ └── scopeDefFiles │ │ │ │ │ ├── ScoperTest.ast │ │ │ │ │ ├── ScoperTest.scope │ │ │ │ │ ├── test-correct1.scope │ │ │ │ │ ├── test-faulty1.scope │ │ │ │ │ └── testLanguage.ast │ │ │ ├── typer-tests │ │ │ │ ├── checkPlaygroundDefs.test.ts │ │ │ │ ├── checkProjectY.test.ts │ │ │ │ ├── checkTyper.test.ts │ │ │ │ ├── correctDefFiles │ │ │ │ │ ├── multiFileInput │ │ │ │ │ │ ├── projectY-part1.type │ │ │ │ │ │ └── projectY-part2.type │ │ │ │ │ ├── projectY.ast │ │ │ │ │ └── projectY.type │ │ │ │ ├── faultyDefFiles │ │ │ │ │ ├── type-rules1.type │ │ │ │ │ ├── type-rules2.type │ │ │ │ │ ├── type-rules4.type │ │ │ │ │ ├── type-rules5.type │ │ │ │ │ └── types.ast │ │ │ │ └── playgroundDefs │ │ │ │ │ ├── type-rules.type │ │ │ │ │ ├── type-rules2.type │ │ │ │ │ └── types.ast │ │ │ └── validator-tests │ │ │ │ ├── __snapshots__ │ │ │ │ └── checkGenerateValidator.test.ts.snap │ │ │ │ ├── checkGenerateValidator.test.ts │ │ │ │ ├── checkValidatorChecker.test.ts │ │ │ │ └── validatorDefFiles │ │ │ │ ├── test-correct1.valid │ │ │ │ └── test-faulty1.valid │ │ ├── bin │ │ │ └── freon-generator.ts │ │ ├── commandline │ │ │ ├── FreonGenerateAction.ts │ │ │ ├── FreonGenerateAllAction.ts │ │ │ ├── FreonGenerateDiagrams.ts │ │ │ ├── FreonGenerateEditor.ts │ │ │ ├── FreonGenerateInterpreter.ts │ │ │ ├── FreonGenerateLanguage.ts │ │ │ ├── FreonGenerateLionWeb.ts │ │ │ ├── FreonGenerateParser.ts │ │ │ ├── FreonGeneratePartAction.ts │ │ │ ├── FreonGenerateScoper.ts │ │ │ ├── FreonGenerateTyper.ts │ │ │ ├── FreonGenerateValidator.ts │ │ │ ├── IdMap.ts │ │ │ └── freon.ts │ │ ├── diagramgen │ │ │ ├── DiagramGenerator.ts │ │ │ └── diagramTemplates │ │ │ │ ├── DiagramTemplate.ts │ │ │ │ ├── HtmlTemplate.ts │ │ │ │ └── MarkDownTemplate.ts │ │ ├── editordef │ │ │ ├── generator │ │ │ │ ├── EditorGenerator.ts │ │ │ │ └── templates │ │ │ │ │ ├── ActionsTemplate.ts │ │ │ │ │ ├── BoxProviderTemplate.ts │ │ │ │ │ ├── CustomActionsTemplate.ts │ │ │ │ │ ├── CustomProjectionTemplate.ts │ │ │ │ │ ├── DefaultActionsTemplate.ts │ │ │ │ │ ├── EditorDefTemplate.ts │ │ │ │ │ ├── EditorIndexTemplate.ts │ │ │ │ │ ├── boxproviderhelpers │ │ │ │ │ ├── BoxProviderCoreTextTemplate.ts │ │ │ │ │ ├── DisplayTypeHelper.ts │ │ │ │ │ ├── ExternalBoxesHelper.ts │ │ │ │ │ ├── ItemBoxHelper.ts │ │ │ │ │ ├── LimitedBoxHelper.ts │ │ │ │ │ ├── ListPropertyBoxHelper.ts │ │ │ │ │ ├── PartPropertyBoxHelper.ts │ │ │ │ │ ├── PrimitivePropertyBoxesHelper.ts │ │ │ │ │ ├── TableBoxHelper.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── internal.ts │ │ │ │ │ └── index.ts │ │ │ ├── metalanguage │ │ │ │ ├── DefaultEditorGenerator.ts │ │ │ │ ├── EditorDefaults.ts │ │ │ │ ├── FreEditChecker.ts │ │ │ │ ├── editlanguage │ │ │ │ │ ├── FreEditBoolKeywords.ts │ │ │ │ │ ├── FreEditButtonDef.ts │ │ │ │ │ ├── FreEditClassifierProjection.ts │ │ │ │ │ ├── FreEditEnums.ts │ │ │ │ │ ├── FreEditExternalInfo.ts │ │ │ │ │ ├── FreEditExtraClassifierInfo.ts │ │ │ │ │ ├── FreEditFragmentDefinition.ts │ │ │ │ │ ├── FreEditFragmentProjection.ts │ │ │ │ │ ├── FreEditGlobalProjection.ts │ │ │ │ │ ├── FreEditKeyValuePair.ts │ │ │ │ │ ├── FreEditListInfo.ts │ │ │ │ │ ├── FreEditNormalProjection.ts │ │ │ │ │ ├── FreEditParsedClasses.ts │ │ │ │ │ ├── FreEditProjectionGroup.ts │ │ │ │ │ ├── FreEditProjectionLine.ts │ │ │ │ │ ├── FreEditProjectionText.ts │ │ │ │ │ ├── FreEditPropertyProjection.ts │ │ │ │ │ ├── FreEditSimpleExternal.ts │ │ │ │ │ ├── FreEditSuperProjection.ts │ │ │ │ │ ├── FreEditTableProjection.ts │ │ │ │ │ ├── FreEditTypes.ts │ │ │ │ │ ├── FreEditUnit.ts │ │ │ │ │ ├── FreOptionalPropertyProjection.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── internal.ts │ │ │ │ ├── index.ts │ │ │ │ └── internal.ts │ │ │ └── parser │ │ │ │ ├── FreEditCreators.ts │ │ │ │ ├── FreEditGrammar.part.pegjs │ │ │ │ ├── FreEditParseUtil.ts │ │ │ │ ├── FreEditParser.ts │ │ │ │ └── concat.sh │ │ ├── index.ts │ │ ├── interpretergen │ │ │ ├── generator │ │ │ │ ├── InterpreterGenerator.ts │ │ │ │ └── templates │ │ │ │ │ ├── InterpreterBaseTemplate.ts │ │ │ │ │ └── InterpreterMainTemplate.ts │ │ │ └── metalanguage │ │ │ │ └── FreInterpreterDef.ts │ │ ├── langexpressions │ │ │ ├── checking │ │ │ │ └── FreLangExpressionChecker.ts │ │ │ ├── generator │ │ │ │ └── ExpressionGenerationUtil.ts │ │ │ ├── metalanguage │ │ │ │ ├── FreLangExpressions.ts │ │ │ │ └── index.ts │ │ │ └── parser │ │ │ │ ├── ExpressionCreators.ts │ │ │ │ ├── ExpressionGrammar.part.header.pegjs │ │ │ │ ├── ExpressionGrammar.part.pegjs │ │ │ │ ├── LanguageExpressionParser.ts │ │ │ │ ├── LanguageExpressionTester.ts │ │ │ │ └── concat.sh │ │ ├── languagedef │ │ │ ├── checking │ │ │ │ ├── ClassifierChecker.ts │ │ │ │ ├── CommonChecker.ts │ │ │ │ ├── FreLangChecker.ts │ │ │ │ ├── FreLangCheckerPhase1.ts │ │ │ │ ├── FreLangCheckerPhase2.ts │ │ │ │ ├── FreLangExpressionChecker.ts │ │ │ │ ├── ReferenceResolver.ts │ │ │ │ ├── common-super │ │ │ │ │ ├── CommonSuperTypeUtil.ts │ │ │ │ │ └── OrderedList.ts │ │ │ │ ├── index.ts │ │ │ │ └── internal.ts │ │ │ ├── generator │ │ │ │ ├── LanguageGenerator.ts │ │ │ │ └── templates │ │ │ │ │ ├── ClassifierUtil.ts │ │ │ │ │ ├── CommandLineTemplate.ts │ │ │ │ │ ├── ConceptTemplate.ts │ │ │ │ │ ├── ConceptUtils.ts │ │ │ │ │ ├── ConfigurationTemplate.ts │ │ │ │ │ ├── DefaultWorkerTemplate.ts │ │ │ │ │ ├── EnvironmentTemplate.ts │ │ │ │ │ ├── IndexTemplate.ts │ │ │ │ │ ├── InterfaceTemplate.ts │ │ │ │ │ ├── LanguageTemplate.ts │ │ │ │ │ ├── ListUtilTemplate.ts │ │ │ │ │ ├── ModelTemplate.ts │ │ │ │ │ ├── RootIndexTemplate.ts │ │ │ │ │ ├── StdlibTemplate.ts │ │ │ │ │ ├── UnitTemplate.ts │ │ │ │ │ ├── WalkerTemplate.ts │ │ │ │ │ ├── WorkerInterfaceTemplate.ts │ │ │ │ │ └── index.ts │ │ │ ├── metalanguage │ │ │ │ ├── FreMetaLanguage.ts │ │ │ │ ├── LangUtil.ts │ │ │ │ ├── MetaElementReference.ts │ │ │ │ ├── index.ts │ │ │ │ └── internal.ts │ │ │ └── parser │ │ │ │ ├── BasicGrammar.part.pegjs │ │ │ │ ├── ExpressionGrammar.part.pegjs │ │ │ │ ├── IdParser.ts │ │ │ │ ├── LanguageCreators.ts │ │ │ │ ├── LanguageGrammar.part.pegjs │ │ │ │ ├── LanguageParser.ts │ │ │ │ └── concat.sh │ │ ├── lionwebgen │ │ │ ├── LionWebGenerator.ts │ │ │ └── templates │ │ │ │ ├── LionWebTemplate.ts │ │ │ │ └── index.ts │ │ ├── parsergen │ │ │ ├── ReaderWriterGenerator.ts │ │ │ └── parserTemplates │ │ │ │ ├── BinaryExpMaker.ts │ │ │ │ ├── ChoiceRuleMaker.ts │ │ │ │ ├── ConceptMaker.ts │ │ │ │ ├── GrammarGenerator.ts │ │ │ │ ├── LanguageAnalyser.ts │ │ │ │ ├── LimitedMaker.ts │ │ │ │ ├── ParserGenUtil.ts │ │ │ │ ├── ReaderTemplate.ts │ │ │ │ ├── SemanticAnalysisTemplate.ts │ │ │ │ ├── UnitAnalyser.ts │ │ │ │ ├── WriterTemplate.ts │ │ │ │ ├── grammarModel │ │ │ │ ├── BinaryExpressionRule.ts │ │ │ │ ├── ChoiceRule.ts │ │ │ │ ├── ConceptRule.ts │ │ │ │ ├── GrammarModel.ts │ │ │ │ ├── GrammarPart.ts │ │ │ │ ├── GrammarRule.ts │ │ │ │ ├── GrammarUtils.ts │ │ │ │ ├── LimitedRule.ts │ │ │ │ ├── RHSEntries │ │ │ │ │ ├── RHSBinExpList.ts │ │ │ │ │ ├── RHSBinExpListWithInitiator.ts │ │ │ │ │ ├── RHSBinExpListWithSeparator.ts │ │ │ │ │ ├── RHSBinExpListWithTerminator.ts │ │ │ │ │ ├── RHSBinaryExp.ts │ │ │ │ │ ├── RHSBooleanWithDoubleKeyWord.ts │ │ │ │ │ ├── RHSBooleanWithSingleKeyWord.ts │ │ │ │ │ ├── RHSLimitedRefEntry.ts │ │ │ │ │ ├── RHSLimitedRefListEntry.ts │ │ │ │ │ ├── RHSLimitedRefListWithSeparator.ts │ │ │ │ │ ├── RHSLimitedRefOptionalEntry.ts │ │ │ │ │ ├── RHSOptionalGroup.ts │ │ │ │ │ ├── RHSPartEntry.ts │ │ │ │ │ ├── RHSPartListEntry.ts │ │ │ │ │ ├── RHSPartListWithInitiator.ts │ │ │ │ │ ├── RHSPartListWithSeparator.ts │ │ │ │ │ ├── RHSPartListWithTerminator.ts │ │ │ │ │ ├── RHSPartOptionalEntry.ts │ │ │ │ │ ├── RHSPrimEntry.ts │ │ │ │ │ ├── RHSPrimListEntry.ts │ │ │ │ │ ├── RHSPrimListEntryWithSeparator.ts │ │ │ │ │ ├── RHSPrimListGroup.ts │ │ │ │ │ ├── RHSPrimListGroupWithInitiator.ts │ │ │ │ │ ├── RHSPrimOptionalEntry.ts │ │ │ │ │ ├── RHSPropEntry.ts │ │ │ │ │ ├── RHSPropPartWithSeparator.ts │ │ │ │ │ ├── RHSRefEntry.ts │ │ │ │ │ ├── RHSRefListEntry.ts │ │ │ │ │ ├── RHSRefListWithInitiator.ts │ │ │ │ │ ├── RHSRefListWithSeparator.ts │ │ │ │ │ ├── RHSRefListWithTerminator.ts │ │ │ │ │ ├── RHSRefOptionalEntry.ts │ │ │ │ │ ├── RHSText.ts │ │ │ │ │ ├── RightHandSideEntry.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── SuperChoiceRule.ts │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ ├── scoperdef │ │ │ ├── generator │ │ │ │ ├── ScoperGenerator.ts │ │ │ │ └── templates │ │ │ │ │ ├── CustomScoperTemplate.ts │ │ │ │ │ ├── ScoperDefTemplate.ts │ │ │ │ │ └── ScoperTemplate.ts │ │ │ ├── metalanguage │ │ │ │ ├── FreScopeDefLang.ts │ │ │ │ ├── ScoperChecker.ts │ │ │ │ ├── index.ts │ │ │ │ └── internal.ts │ │ │ └── parser │ │ │ │ ├── ScoperCreators.ts │ │ │ │ ├── ScoperGrammar.part.pegjs │ │ │ │ ├── ScoperParser.ts │ │ │ │ └── concat.sh │ │ ├── typerdef │ │ │ ├── generator │ │ │ │ ├── FreonTyperGenerator.ts │ │ │ │ └── templates │ │ │ │ │ ├── FreCustomTyperPartTemplate.ts │ │ │ │ │ ├── FreSuperTypeMaker.ts │ │ │ │ │ ├── FreTypeConceptMaker.ts │ │ │ │ │ ├── FreTypeEqualsMaker.ts │ │ │ │ │ ├── FreTypeInferMaker.ts │ │ │ │ │ ├── FreTyperGenUtils.ts │ │ │ │ │ ├── FreTyperPartTemplate.ts │ │ │ │ │ ├── FreTyperTemplate.ts │ │ │ │ │ └── TyperDefTemplate.ts │ │ │ ├── metalanguage │ │ │ │ ├── FreTyperElement.ts │ │ │ │ ├── FretAnyTypeSpec.ts │ │ │ │ ├── FretClassifierSpec.ts │ │ │ │ ├── FretConformanceRule.ts │ │ │ │ ├── FretEqualsRule.ts │ │ │ │ ├── FretInferenceRule.ts │ │ │ │ ├── FretLimitedRule.ts │ │ │ │ ├── FretPropInstance.ts │ │ │ │ ├── FretProperty.ts │ │ │ │ ├── FretTypeConcept.ts │ │ │ │ ├── FretTypeRule.ts │ │ │ │ ├── FretVarDecl.ts │ │ │ │ ├── TyperDef.ts │ │ │ │ ├── expressions │ │ │ │ │ ├── FretAnytypeExp.ts │ │ │ │ │ ├── FretBinaryExp.ts │ │ │ │ │ ├── FretConformsExp.ts │ │ │ │ │ ├── FretCreateExp.ts │ │ │ │ │ ├── FretEqualsExp.ts │ │ │ │ │ ├── FretExp.ts │ │ │ │ │ ├── FretFunctionCallExp.ts │ │ │ │ │ ├── FretLimitedInstanceExp.ts │ │ │ │ │ ├── FretPropertyCallExp.ts │ │ │ │ │ ├── FretSelfExp.ts │ │ │ │ │ ├── FretVarCallExp.ts │ │ │ │ │ ├── FretWhereExp.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── internal.ts │ │ │ │ ├── index.ts │ │ │ │ └── internal.ts │ │ │ └── parser │ │ │ │ ├── FreTyperChecker.ts │ │ │ │ ├── FreTyperCheckerPhase1.ts │ │ │ │ ├── FreTyperCheckerPhase2.ts │ │ │ │ ├── FreTyperDefSyntaxAnalyserPart.ts │ │ │ │ ├── FreTyperGrammar.ts │ │ │ │ ├── FreTyperMerger.ts │ │ │ │ ├── FreTyperReader.ts │ │ │ │ ├── FreTyperSyntaxAnalyser.ts │ │ │ │ ├── FretOwnerSetter.ts │ │ │ │ ├── FretResolver.ts │ │ │ │ ├── index.ts │ │ │ │ └── internal.ts │ │ ├── utils │ │ │ ├── README.md │ │ │ ├── basic-dependencies │ │ │ │ ├── CheckRunner.ts │ │ │ │ ├── Checker.ts │ │ │ │ ├── CheckerPhase.ts │ │ │ │ ├── FreGenericParser.ts │ │ │ │ ├── ParseLocationUtil.ts │ │ │ │ ├── UserLogger.ts │ │ │ │ ├── index.ts │ │ │ │ └── internal.ts │ │ │ ├── file-utils │ │ │ │ ├── FileUtil.ts │ │ │ │ ├── FileWatcher.ts │ │ │ │ └── index.ts │ │ │ ├── no-dependencies │ │ │ │ ├── FolderPathHelper.ts │ │ │ │ ├── FreErrorSeverity.ts │ │ │ │ ├── FreMetaDefinitionElement.ts │ │ │ │ ├── Json.ts │ │ │ │ ├── ListUtil.ts │ │ │ │ ├── MetaFunctionNames.ts │ │ │ │ ├── MetaLogger.ts │ │ │ │ ├── ReservedWords.ts │ │ │ │ └── index.ts │ │ │ ├── on-lang-and-editor │ │ │ │ ├── NamesForEditor.ts │ │ │ │ └── index.ts │ │ │ └── on-lang │ │ │ │ ├── GenerationUtil.ts │ │ │ │ ├── Imports.ts │ │ │ │ ├── Names.ts │ │ │ │ ├── PathProvider.ts │ │ │ │ ├── Roles.ts │ │ │ │ ├── index.ts │ │ │ │ └── internal.ts │ │ ├── validatordef │ │ │ ├── generator │ │ │ │ ├── ValidationUtils.ts │ │ │ │ ├── ValidatorGenerator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── internal.ts │ │ │ │ └── templates │ │ │ │ │ ├── NamespaceCheckerTemplate.ts │ │ │ │ │ ├── NonOptionalsCheckerTemplate.ts │ │ │ │ │ ├── ReferenceCheckerTemplate.ts │ │ │ │ │ ├── ReservedWordsTemplate.ts │ │ │ │ │ ├── RulesCheckerTemplate.ts │ │ │ │ │ ├── ValidatorTemplate.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── internal.ts │ │ │ ├── metalanguage │ │ │ │ ├── ValidatorChecker.ts │ │ │ │ ├── ValidatorDefLang.ts │ │ │ │ ├── index.ts │ │ │ │ └── internal.ts │ │ │ └── parser │ │ │ │ ├── ValidatorCreators.ts │ │ │ │ ├── ValidatorGrammar.part.pegjs │ │ │ │ ├── ValidatorParser.ts │ │ │ │ └── concat.sh │ │ └── vitest.config.ts │ ├── tsconfig.json │ ├── tsconfig.test.json │ ├── tslint.json │ └── vite.config.ts ├── samples │ ├── Calculator │ │ ├── package.json │ │ ├── rollup.config.js │ │ ├── src │ │ │ ├── __tests__ │ │ │ │ └── ParserTest.test.ts │ │ │ ├── defs │ │ │ │ ├── calculator.ast │ │ │ │ └── calculator.edit │ │ │ └── index.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── CourseSchedule │ │ ├── package.json │ │ ├── phase1 │ │ │ ├── main.ast │ │ │ └── main.edit │ │ ├── phase2 │ │ │ ├── PersonIcon.svelte │ │ │ ├── externals.edit │ │ │ ├── icons8-person-94.png │ │ │ ├── main.ast │ │ │ ├── main.edit │ │ │ └── starter.ts │ │ ├── phase3 │ │ │ ├── PersonIcon.svelte │ │ │ ├── PhoneButton.svelte │ │ │ ├── externals.edit │ │ │ ├── main.ast │ │ │ ├── main.edit │ │ │ └── starter.ts │ │ ├── phase4 │ │ │ ├── PersonIcon.svelte │ │ │ ├── PhoneButton.svelte │ │ │ ├── StaffAccordion.svelte │ │ │ ├── externals.edit │ │ │ ├── extra.css │ │ │ ├── main.ast │ │ │ ├── main.edit │ │ │ ├── package.json │ │ │ └── starter.ts │ │ ├── phase5 │ │ │ ├── PersonIcon.svelte │ │ │ ├── Schedule.svelte │ │ │ ├── externals.edit │ │ │ ├── main.ast │ │ │ ├── main.edit │ │ │ └── starter.ts │ │ ├── rollup.config.js │ │ ├── src │ │ │ ├── defs │ │ │ │ ├── externals.edit │ │ │ │ ├── main.ast │ │ │ │ └── main.edit │ │ │ └── index.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── CustomizationsProject │ │ ├── README.md │ │ ├── package.json │ │ ├── rollup.config.js │ │ ├── src │ │ │ ├── custom │ │ │ │ ├── CustomEntityModelTyperPart.ts │ │ │ │ └── CustomEntityModelValidator.ts │ │ │ ├── defs │ │ │ │ ├── LanguageDefinition.ast │ │ │ │ ├── LanguageDefinition.edit │ │ │ │ ├── LanguageDefinition.scope │ │ │ │ ├── LanguageDefinition.type │ │ │ │ ├── LanguageDefinition.valid │ │ │ │ └── Specials.edit │ │ │ └── index.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── Education │ │ ├── lesson1-defs │ │ │ ├── edu-flow.ast │ │ │ ├── edu-main.ast │ │ │ ├── edu-tests.ast │ │ │ └── edu-topics.ast │ │ ├── lesson2-defs │ │ │ ├── edu-flow.ast │ │ │ ├── edu-main.ast │ │ │ ├── edu-main.edit │ │ │ ├── edu-tests.ast │ │ │ ├── edu-topics.ast │ │ │ └── edu-topics.edit │ │ ├── lesson3-defs │ │ │ ├── edu-flow-table.edit │ │ │ ├── edu-flow.ast │ │ │ ├── edu-flow.edit │ │ │ ├── edu-main.ast │ │ │ ├── edu-main.edit │ │ │ ├── edu-tests.ast │ │ │ ├── edu-topics.ast │ │ │ ├── edu-topics.edit │ │ │ └── page-footing.edit │ │ ├── lesson4-defs │ │ │ ├── edu-flow-table.edit │ │ │ ├── edu-flow.ast │ │ │ ├── edu-flow.edit │ │ │ ├── edu-main.ast │ │ │ ├── edu-main.edit │ │ │ ├── edu-scoring.ast │ │ │ ├── edu-tests.ast │ │ │ ├── edu-topics.ast │ │ │ ├── edu-topics.edit │ │ │ └── page-footing.edit │ │ ├── lesson5-defs │ │ │ ├── edu-flow-table.edit │ │ │ ├── edu-flow.ast │ │ │ ├── edu-flow.edit │ │ │ ├── edu-main.ast │ │ │ ├── edu-main.edit │ │ │ ├── edu-scoring.ast │ │ │ ├── edu-scoring.edit │ │ │ ├── edu-tests.ast │ │ │ ├── edu-topics.ast │ │ │ ├── edu-topics.edit │ │ │ └── page-footing.edit │ │ ├── lesson6-defs │ │ │ ├── edu-flow-table.edit │ │ │ ├── edu-flow.ast │ │ │ ├── edu-flow.edit │ │ │ ├── edu-main.ast │ │ │ ├── edu-main.edit │ │ │ ├── edu-scoring.ast │ │ │ ├── edu-scoring.edit │ │ │ ├── edu-tests.ast │ │ │ ├── edu-topics.ast │ │ │ ├── edu-topics.edit │ │ │ ├── edu.scope │ │ │ └── page-footing.edit │ │ ├── lesson7-defs │ │ │ ├── edu-flow-table.edit │ │ │ ├── edu-flow.ast │ │ │ ├── edu-flow.edit │ │ │ ├── edu-main.ast │ │ │ ├── edu-main.edit │ │ │ ├── edu-scoring.ast │ │ │ ├── edu-scoring.edit │ │ │ ├── edu-tests.ast │ │ │ ├── edu-tests.edit │ │ │ ├── edu-topics.ast │ │ │ ├── edu-topics.edit │ │ │ ├── edu.scope │ │ │ └── page-footing.edit │ │ ├── lesson8-defs │ │ │ ├── edu-flow-table.edit │ │ │ ├── edu-flow.ast │ │ │ ├── edu-flow.edit │ │ │ ├── edu-main.ast │ │ │ ├── edu-main.edit │ │ │ ├── edu-scoring.ast │ │ │ ├── edu-scoring.edit │ │ │ ├── edu-scoring.type │ │ │ ├── edu-tests.ast │ │ │ ├── edu-tests.edit │ │ │ ├── edu-topics.ast │ │ │ ├── edu-topics.edit │ │ │ ├── edu.scope │ │ │ └── page-footing.edit │ │ ├── lesson9-defs │ │ │ ├── edu-flow-table.edit │ │ │ ├── edu-flow.ast │ │ │ ├── edu-flow.edit │ │ │ ├── edu-main.ast │ │ │ ├── edu-main.edit │ │ │ ├── edu-scoring.ast │ │ │ ├── edu-scoring.edit │ │ │ ├── edu-scoring.type │ │ │ ├── edu-tests.ast │ │ │ ├── edu-tests.edit │ │ │ ├── edu-topics.ast │ │ │ ├── edu-topics.edit │ │ │ ├── edu.scope │ │ │ ├── edu.valid │ │ │ └── page-footing.edit │ │ ├── package.json │ │ ├── rollup.config.js │ │ ├── src │ │ │ ├── custom │ │ │ │ ├── EducationInterpreter.ts │ │ │ │ └── interpreter │ │ │ │ │ └── runtime │ │ │ │ │ ├── RtAnswer.ts │ │ │ │ │ ├── RtFlow.ts │ │ │ │ │ ├── RtFraction.ts │ │ │ │ │ ├── RtGrade.ts │ │ │ │ │ ├── RtPage.ts │ │ │ │ │ └── RtTopic.ts │ │ │ ├── defs │ │ │ │ ├── edu-flow-table.edit │ │ │ │ ├── edu-flow.ast │ │ │ │ ├── edu-flow.edit │ │ │ │ ├── edu-main.ast │ │ │ │ ├── edu-main.edit │ │ │ │ ├── edu-scoring.ast │ │ │ │ ├── edu-scoring.edit │ │ │ │ ├── edu-scoring.type │ │ │ │ ├── edu-tests.ast │ │ │ │ ├── edu-tests.edit │ │ │ │ ├── edu-topics.ast │ │ │ │ ├── edu-topics.edit │ │ │ │ ├── edu.scope │ │ │ │ ├── edu.valid │ │ │ │ └── page-footing.edit │ │ │ └── index.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── Example │ │ ├── __exported_units__ │ │ │ ├── LargeUnit-ifstat-questionmark.exm │ │ │ ├── LargeUnit-normal-ifstat.exm │ │ │ ├── SecondTry.exm │ │ │ ├── Simple.exm │ │ │ ├── SimpleWithBase.exm │ │ │ └── SomeNameOrOther.exm │ │ ├── package.json │ │ ├── rollup.config.js │ │ ├── src │ │ │ ├── custom │ │ │ │ ├── CustomExampleActions.ts │ │ │ │ ├── CustomExampleProjection.ts │ │ │ │ └── ExampleInterpreter.ts │ │ │ ├── defs │ │ │ │ ├── Expressions-default.edit │ │ │ │ ├── Expressions.ast │ │ │ │ ├── Expressions.type │ │ │ │ ├── LanguageDefinition-default.edit │ │ │ │ ├── LanguageDefinition-second.edit │ │ │ │ ├── LanguageDefinition-short-tables.edit │ │ │ │ ├── LanguageDefinition-tables.edit │ │ │ │ ├── LanguageDefinition-third.edit │ │ │ │ ├── LanguageDefinition.ast │ │ │ │ ├── LanguageDefinition.scope │ │ │ │ ├── LanguageDefinition.type │ │ │ │ ├── LanguageDefinition.valid │ │ │ │ ├── call.edit │ │ │ │ ├── rules.ast │ │ │ │ ├── rules.edit │ │ │ │ ├── rules.scope │ │ │ │ ├── rules.type │ │ │ │ └── rules.valid │ │ │ └── index.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── ExternalTester │ │ ├── package.json │ │ ├── rollup.config.js │ │ ├── src │ │ │ ├── defs │ │ │ │ ├── base.edit │ │ │ │ ├── main.ast │ │ │ │ ├── main.edit │ │ │ │ ├── part-replacers.edit │ │ │ │ ├── prim-replacers.edit │ │ │ │ └── ref-replacers.edit │ │ │ └── index.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── FreLanguage │ │ ├── package.json │ │ ├── rollup.config.js │ │ ├── src │ │ │ ├── __inputs__ │ │ │ │ └── typer-test │ │ │ │ │ ├── type-rules.type │ │ │ │ │ └── types.ast │ │ │ ├── __tests__ │ │ │ │ └── MetaParserTest.test.ts │ │ │ ├── defs │ │ │ │ ├── MetaDSLs.ast │ │ │ │ ├── MetaEditor.ast │ │ │ │ ├── MetaEditor.edit │ │ │ │ ├── MetaScoper.ast │ │ │ │ ├── MetaScoper.edit │ │ │ │ ├── MetaStructure.ast │ │ │ │ ├── MetaStructure.edit │ │ │ │ ├── MetaTyper.ast │ │ │ │ ├── MetaTyper.edit │ │ │ │ ├── MetaTyper.rules │ │ │ │ ├── MetaTyper.scope │ │ │ │ ├── MetaTyper.type │ │ │ │ ├── MetaTyper.valid │ │ │ │ ├── MetaValidator.ast │ │ │ │ └── MetaValidator.edit │ │ │ └── index.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── Insurance │ │ ├── README.md │ │ ├── package.json │ │ ├── rollup.config.js │ │ ├── src │ │ │ ├── __inputs__ │ │ │ │ ├── base │ │ │ │ │ ├── Health.base │ │ │ │ │ ├── Home.base │ │ │ │ │ └── Legal.base │ │ │ │ └── products │ │ │ │ │ ├── HealthAll.prod │ │ │ │ │ ├── HomeAll.prod │ │ │ │ │ ├── HomeAndHealth.prod │ │ │ │ │ ├── HomeCheap.prod │ │ │ │ │ ├── HomeExtra.prod │ │ │ │ │ └── LegalAll.prod │ │ │ ├── __tests__ │ │ │ │ ├── FileHandler.ts │ │ │ │ └── readInput.test.ts │ │ │ ├── custom │ │ │ │ ├── CustomInsuranceModelActions.ts │ │ │ │ ├── CustomInsuranceModelProjection.ts │ │ │ │ ├── CustomInsuranceModelTyperPart.ts │ │ │ │ └── CustomInsuranceModelValidator.ts │ │ │ ├── defs │ │ │ │ ├── editor-expressions-default.edit │ │ │ │ ├── editor-externals.edit │ │ │ │ ├── editor-fragments.edit │ │ │ │ ├── editor-indentation.edit │ │ │ │ ├── editor-main-comments.edit │ │ │ │ ├── editor-main-controls.edit │ │ │ │ ├── editor-main-default.edit │ │ │ │ ├── editor-named-proj.edit │ │ │ │ ├── editor-tables-with-button.edit │ │ │ │ ├── editor-tables.edit │ │ │ │ ├── language-expressions.ast │ │ │ │ ├── language-extras.ast │ │ │ │ ├── language-main.ast │ │ │ │ ├── scoper-docu.scope │ │ │ │ ├── typer-docu.type │ │ │ │ ├── validator-docu.valid │ │ │ │ └── validator-extras.valid │ │ │ └── index.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── MpsExpressions │ │ ├── package.json │ │ ├── rollup.config.js │ │ ├── src │ │ │ ├── defs │ │ │ │ └── projectit-jetbrains.mps.samples.Expressions.ast │ │ │ └── index.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── Octopus │ │ ├── package.json │ │ ├── rollup.config.js │ │ ├── src │ │ │ ├── __inputs__ │ │ │ │ ├── Book.uml2 │ │ │ │ ├── Period.ocl │ │ │ │ ├── book-project-original │ │ │ │ │ ├── Appendix.ocl │ │ │ │ │ ├── Book.uml2 │ │ │ │ │ ├── Bookpart.ocl │ │ │ │ │ ├── Chapter.ocl │ │ │ │ │ ├── Period.ocl │ │ │ │ │ └── Prependix.ocl │ │ │ │ ├── catalog.uml2 │ │ │ │ ├── orders.uml2 │ │ │ │ └── trainWagon.uml2 │ │ │ ├── __tests__ │ │ │ │ ├── readOclFiles.test.ts │ │ │ │ └── readUmlFiles.test.ts │ │ │ ├── defs │ │ │ │ ├── binary-expressions.ast │ │ │ │ ├── binary-expressions.edit │ │ │ │ ├── octopus-context.ast │ │ │ │ ├── octopus-context.edit │ │ │ │ ├── octopus-main.ast │ │ │ │ ├── octopus-ocl.ast │ │ │ │ ├── octopus-ocl.edit │ │ │ │ ├── octopus-stdlib.ast │ │ │ │ ├── octopus-uml.ast │ │ │ │ └── octopus-uml.edit │ │ │ └── index.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── QName │ │ ├── README.md │ │ ├── package.json │ │ ├── rollup.config.js │ │ ├── src │ │ │ ├── defs │ │ │ │ ├── LanguageWithScopes.ast │ │ │ │ ├── LanguageWithScopes.edit │ │ │ │ └── LanguageWithScopes.scope │ │ │ └── index.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── RulesLanguage │ │ ├── package.json │ │ ├── rollup.config.js │ │ ├── src │ │ │ ├── defs │ │ │ │ ├── entities.ast │ │ │ │ ├── rules.ast │ │ │ │ ├── rules.edit │ │ │ │ └── rules.scope │ │ │ └── index.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── ScoperTest │ │ ├── package.json │ │ ├── rollup.config.js │ │ ├── src │ │ │ ├── defs │ │ │ │ ├── LanguageWithScopes.ast │ │ │ │ ├── LanguageWithScopes.edit │ │ │ │ ├── LanguageWithScopes.scope │ │ │ │ ├── LanguageWithScopes1.ast │ │ │ │ ├── LanguageWithScopes2.ast │ │ │ │ ├── LanguageWithScopes3.ast │ │ │ │ ├── LanguageWithScopes4.ast │ │ │ │ ├── LanguageWithScopes5.ast │ │ │ │ └── LanguageWithScopes5.edit │ │ │ └── index.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── ScopingExample │ │ ├── Demo-step1 │ │ │ ├── main.ast │ │ │ ├── main.edit │ │ │ ├── main.scope │ │ │ └── with-comments.edit │ │ ├── Demo-step2 │ │ │ ├── main.ast │ │ │ ├── main.edit │ │ │ └── main.scope │ │ ├── Demo-step3 │ │ │ ├── main.ast │ │ │ ├── main.edit │ │ │ └── main.scope │ │ ├── package.json │ │ ├── rollup.config.js │ │ ├── src │ │ │ ├── defs │ │ │ │ ├── main.ast │ │ │ │ ├── main.edit │ │ │ │ └── main.scope │ │ │ └── index.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── SvelteTestModel │ │ ├── package.json │ │ ├── rollup.config.js │ │ ├── src │ │ │ ├── defs │ │ │ │ └── main.ast │ │ │ └── index.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── TaxRules │ │ ├── package.json │ │ ├── rollup.config.js │ │ ├── src │ │ │ ├── defs │ │ │ │ └── TaxRules.ast │ │ │ └── index.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ ├── TyperLanguage │ │ ├── package.json │ │ ├── rollup.config.js │ │ ├── src │ │ │ ├── __inputs__ │ │ │ │ └── typer-test │ │ │ │ │ ├── type-rules.type │ │ │ │ │ └── types.ast │ │ │ ├── __tests__ │ │ │ │ └── MetaParserTest.test.ts │ │ │ ├── defs │ │ │ │ ├── MetaDSLs.ast │ │ │ │ ├── MetaStructure.ast │ │ │ │ ├── MetaTyper.ast │ │ │ │ ├── MetaTyper.edit │ │ │ │ ├── MetaTyper.scope │ │ │ │ ├── MetaTyper.type │ │ │ │ └── MetaTyper.valid │ │ │ └── index.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json │ └── UndoTester │ │ ├── package.json │ │ ├── rollup.config.js │ │ ├── src │ │ ├── defs │ │ │ └── structure.ast │ │ └── index.ts │ │ ├── tsconfig.build.json │ │ └── tsconfig.json ├── server │ ├── README.md │ ├── modelstore │ │ ├── AdultEducation1 │ │ │ ├── BuildingA.json │ │ │ ├── LanguageCourses.json │ │ │ ├── Semester_2025_1.json │ │ │ └── TeachingStaff.json │ │ ├── Agl-sentences │ │ │ └── LargeUnit.json │ │ ├── EMPTY-MODEL │ │ │ ├── LargeUnit.json │ │ │ └── Simple2.json │ │ ├── Edu-test │ │ │ ├── Fractions.json │ │ │ ├── Fractions101.json │ │ │ ├── Fractions102.json │ │ │ ├── Fractions103.json │ │ │ ├── StartFlow.json │ │ │ ├── TestB.json │ │ │ └── TestBPublic.json │ │ ├── EduOneFreonStorage │ │ │ ├── Flow.json │ │ │ ├── Fractions10.json │ │ │ ├── Multiplication.json │ │ │ ├── Test1.json │ │ │ └── sssFlowddd.json │ │ ├── ExtTest1 │ │ │ ├── PartsTest1.json │ │ │ ├── PrimsTest.json │ │ │ ├── unit1.json │ │ │ └── unit2.json │ │ ├── ExtraModel │ │ │ ├── Customers.json │ │ │ └── rules1.json │ │ ├── Insurance1 │ │ │ ├── Faulty.json │ │ │ ├── Health.json │ │ │ ├── HealthAll.json │ │ │ ├── Home.json │ │ │ ├── HomeAll.json │ │ │ ├── HomeAndHealth.json │ │ │ ├── HomeCheap.json │ │ │ ├── HomeExtra.json │ │ │ ├── Legal.json │ │ │ └── LegalAll.json │ │ ├── LangDev25-Demo │ │ │ └── Demo.json │ │ ├── Lesson1 │ │ │ ├── Fractions.json │ │ │ ├── Fractions101.json │ │ │ ├── Fractions102.json │ │ │ ├── Fractions103.json │ │ │ └── StartFlow.json │ │ ├── Lesson4 │ │ │ ├── Flow1.json │ │ │ ├── Fractions.json │ │ │ ├── Fractions101.json │ │ │ ├── Fractions102.json │ │ │ ├── Fractions103.json │ │ │ └── StartFlow.json │ │ ├── Lesson6 │ │ │ ├── Fractions.json │ │ │ ├── Fractions101.json │ │ │ ├── Fractions102.json │ │ │ ├── Fractions103.json │ │ │ ├── StartFlow.json │ │ │ ├── TestB.json │ │ │ └── TestBPublic.json │ │ ├── Meta │ │ │ ├── LionCore.M3.json │ │ │ └── LionCore.builtins.json │ │ ├── Model7 │ │ │ ├── extra23.json │ │ │ ├── modelUnit2.json │ │ │ └── unit9_1.json │ │ ├── Model8 │ │ │ ├── AnnesUnit.json │ │ │ └── unit64.json │ │ ├── Model89 │ │ │ └── SomeNameOrOther.json │ │ ├── Model9 │ │ │ ├── SomeNameOrOther.json │ │ │ └── unit9_1.json │ │ ├── PPP │ │ │ ├── Data.json │ │ │ └── Rules.json │ │ ├── Rules1 │ │ │ ├── AAA.json │ │ │ ├── Entities.json │ │ │ ├── House.json │ │ │ ├── r1.json │ │ │ └── r2.json │ │ ├── ScoperTestStandalone │ │ │ ├── test1.json │ │ │ ├── test2.json │ │ │ ├── test3.json │ │ │ ├── test4.json │ │ │ └── test5.json │ │ ├── ScopingExample1 │ │ │ └── MathFunctions.json │ │ ├── StarterModel2 │ │ │ ├── test1.json │ │ │ ├── test2.json │ │ │ ├── test3.json │ │ │ └── test4.json │ │ ├── __TEST__ │ │ │ ├── hg.json │ │ │ └── xng.json │ │ ├── meta1 │ │ │ └── ExprLanguage.json │ │ ├── myFirstModel │ │ │ ├── SomeNameOrOther.json │ │ │ └── WORDUNIT.json │ │ ├── mySecondModel │ │ │ └── modelUnit2.json │ │ ├── new │ │ │ └── unit.json │ │ ├── store.json │ │ ├── tutorial1 │ │ │ └── qw.json │ │ └── xxx │ │ │ └── LargeUnit.json │ ├── package.json │ ├── src │ │ ├── __tests__ │ │ │ └── checkServer.test.ts │ │ ├── bin │ │ │ └── start-server.ts │ │ ├── index.ts │ │ ├── old-server │ │ │ ├── ModelRequests.ts │ │ │ ├── README.md │ │ │ ├── config.ts │ │ │ ├── logging.ts │ │ │ ├── routes.ts │ │ │ ├── server-def.ts │ │ │ └── server-starter.ts │ │ └── server │ │ │ ├── FileUtil.ts │ │ │ ├── ModelRequests.ts │ │ │ ├── StoreCatalog.ts │ │ │ ├── config.ts │ │ │ ├── routes.ts │ │ │ ├── server-def.ts │ │ │ └── server-starter.ts │ ├── tsconfig.json │ └── tslint.json ├── test-helpers │ ├── README.md │ ├── package.json │ ├── src │ │ ├── FileUtil.ts │ │ └── index.ts │ └── tsconfig.json ├── test │ ├── extra-agl-types.d.ts │ ├── package.json │ ├── src │ │ ├── UndoTester │ │ │ ├── __inputs__ │ │ │ │ ├── first.und │ │ │ │ ├── second.und │ │ │ │ └── third.und │ │ │ ├── __tests__ │ │ │ │ └── readUndoFiles.test.ts │ │ │ └── defs │ │ │ │ ├── editor.edit │ │ │ │ └── structure.ast │ │ ├── ValidTest │ │ │ ├── __inputs__ │ │ │ │ ├── valid-test-input1.txt │ │ │ │ ├── valid-test-input2.txt │ │ │ │ └── valid-test-input3.txt │ │ │ ├── __tests__ │ │ │ │ └── testInheritanceInValidator.test.ts │ │ │ └── defs │ │ │ │ ├── parser.edit │ │ │ │ ├── stackTrace.txt │ │ │ │ ├── test-language.ast │ │ │ │ └── valid-rules1.valid │ │ ├── demo │ │ │ ├── __tests__ │ │ │ │ ├── DemoModelCreator.ts │ │ │ │ ├── DemoUnitCreator.ts │ │ │ │ ├── HelperFunctions.ts │ │ │ │ ├── JsonModelCreator.ts │ │ │ │ ├── Model-used-in-AlternativeScope-test.txt │ │ │ │ ├── Model-used-in-ScoperInheritance-test.txt │ │ │ │ ├── Model-used-inScoperModelUnits-test.txt │ │ │ │ ├── Serializer.test.ts │ │ │ │ ├── WithLoop-used-in-ScoperInheritance-test.txt │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── checkUnparser.test.ts.snap │ │ │ │ ├── checkModelCreator.test.ts │ │ │ │ ├── checkParser.test.ts │ │ │ │ ├── checkScoper.test.ts │ │ │ │ ├── checkScoperAlternativeScope.test.ts │ │ │ │ ├── checkScoperInheritance.test.ts │ │ │ │ ├── checkScoperModelUnits.test.ts │ │ │ │ ├── checkStdLib.test.ts │ │ │ │ ├── checkTyper.test.ts │ │ │ │ ├── checkUnparser.test.ts │ │ │ │ └── checkValidator.test.ts │ │ │ ├── custom │ │ │ │ ├── CustomDemoTyperPart.ts │ │ │ │ └── CustomDemoValidator.ts │ │ │ ├── defs │ │ │ │ ├── LanguageDefinition.ast │ │ │ │ ├── LanguageDefinition.edit │ │ │ │ ├── LanguageDefinition.scope │ │ │ │ ├── LanguageDefinition.type │ │ │ │ └── LanguageDefinition.valid │ │ │ └── utils │ │ │ │ ├── Utils.ts │ │ │ │ └── index.ts │ │ ├── octopus-small │ │ │ ├── __inputs__ │ │ │ │ ├── Book.uml2 │ │ │ │ ├── catalog.uml2 │ │ │ │ ├── orders.uml2 │ │ │ │ └── trainWagon.uml2 │ │ │ ├── __tests__ │ │ │ │ ├── readUmlFiles.test.ts │ │ │ │ ├── searchElement.test.ts │ │ │ │ ├── searchNamedElement.test.ts │ │ │ │ └── searchString.test.ts │ │ │ └── defs │ │ │ │ ├── octopus-context.ast │ │ │ │ ├── octopus-context.edit │ │ │ │ ├── octopus-main.ast │ │ │ │ ├── octopus-ocl.ast │ │ │ │ ├── octopus-ocl.edit │ │ │ │ ├── octopus-stdlib.ast │ │ │ │ ├── octopus-uml.ast │ │ │ │ └── octopus-uml.edit │ │ ├── parser-basic-concepts │ │ │ ├── __inputs__ │ │ │ │ └── test1.exp │ │ │ ├── __tests__ │ │ │ │ ├── TryParser.test.ts │ │ │ │ └── __snapshots__ │ │ │ │ │ └── TryParser.test.ts.snap │ │ │ └── defs │ │ │ │ ├── TestParser.ast │ │ │ │ └── TestParser.edit │ │ ├── parser-basic-properties │ │ │ ├── __inputs__ │ │ │ │ ├── test1.lim │ │ │ │ ├── test1.par │ │ │ │ ├── test1.pri │ │ │ │ ├── test1.ref │ │ │ │ ├── test1.wit │ │ │ │ ├── test2.par │ │ │ │ ├── test2.ref │ │ │ │ ├── test3.par │ │ │ │ ├── test3.ref │ │ │ │ └── test4.opt │ │ │ ├── __tests__ │ │ │ │ ├── AGL.test.ts │ │ │ │ ├── TryParser.test.ts │ │ │ │ └── __snapshots__ │ │ │ │ │ ├── AGL.test.ts.snap │ │ │ │ │ ├── TryParser.test.ts.snap │ │ │ │ │ └── prinitivestest.json │ │ │ └── defs │ │ │ │ ├── TestParser.ast │ │ │ │ └── TestParser.edit │ │ ├── parser-extra-tests │ │ │ ├── __inputs__ │ │ │ │ ├── test1.pexp │ │ │ │ ├── test1.pint │ │ │ │ ├── test1.prim │ │ │ │ ├── test1.prod │ │ │ │ ├── test2.pexp │ │ │ │ ├── test2.pint │ │ │ │ ├── test3.pexp │ │ │ │ ├── test3.pint │ │ │ │ ├── testa.pexp │ │ │ │ └── testb.pexp │ │ │ ├── __tests__ │ │ │ │ ├── ParserExtra.test.ts │ │ │ │ └── __snapshots__ │ │ │ │ │ └── ParserExtra.test.ts.snap │ │ │ └── defs │ │ │ │ ├── TestParser.ast │ │ │ │ └── TestParser.edit │ │ ├── parser_gen │ │ │ ├── __tests__ │ │ │ │ ├── Output_andereNaam.txt │ │ │ │ ├── Output_eenNaam.txt │ │ │ │ ├── ParserInput1.txt │ │ │ │ ├── ParserInput2.txt │ │ │ │ ├── TryParser.test.ts │ │ │ │ └── __snapshots__ │ │ │ │ │ └── TryParser.test.ts.snap │ │ │ └── defs │ │ │ │ ├── LanguageDefinition.ast │ │ │ │ └── LanguageDefinition.edit │ │ ├── qualifiedNameScoper │ │ │ ├── __inputs__ │ │ │ │ ├── unit1_1.uni │ │ │ │ └── unit1_2.uni │ │ │ ├── __tests__ │ │ │ │ └── fqn-scoper.test.ts │ │ │ └── defs │ │ │ │ ├── ScoperTryout.ast │ │ │ │ ├── ScoperTryout.edit │ │ │ │ └── ScoperTryout.scope │ │ ├── scoperTest │ │ │ └── defs │ │ │ │ ├── ScoperTest.ast │ │ │ │ └── ScoperTest.edit │ │ ├── storage │ │ │ ├── __tests__ │ │ │ │ ├── Storage.test.ts │ │ │ │ └── StoreModelCreator.ts │ │ │ └── defs │ │ │ │ ├── entities.ast │ │ │ │ ├── rules.ast │ │ │ │ ├── rules.edit │ │ │ │ └── rules.scope │ │ ├── testCircularImports │ │ │ ├── __tests__ │ │ │ │ └── checkCircularImports.test.ts │ │ │ └── def │ │ │ │ └── CircularImports.ast │ │ ├── testDefaultScoper │ │ │ ├── __TMP__ │ │ │ │ ├── unit1.txt │ │ │ │ └── unit2.txt │ │ │ ├── __tests__ │ │ │ │ ├── ExtendedModelCreator.ts │ │ │ │ ├── Model-used-in-simple-model-test.txt │ │ │ │ ├── RefCreatorWorker.ts │ │ │ │ ├── SimpleModelCreator.ts │ │ │ │ ├── checkExtendedModels.test.ts │ │ │ │ └── checkSimpleModels.test.ts │ │ │ └── defs │ │ │ │ └── Language.ast │ │ ├── testDefinedScoper │ │ │ ├── __tests__ │ │ │ │ ├── RefCreatorWorker.ts │ │ │ │ ├── SimpleModelCreator.ts │ │ │ │ ├── check1.test.ts │ │ │ │ ├── checkSimpleModels.test.ts │ │ │ │ └── namespaces.test.ts │ │ │ └── defs │ │ │ │ ├── Language.ast │ │ │ │ ├── Language.scope │ │ │ │ ├── Namespaces.ast │ │ │ │ └── Namespaces.scope │ │ ├── testLangConstructs │ │ │ ├── __tests__ │ │ │ │ ├── checkPrimProps.test.ts │ │ │ │ └── checkStdLib.test.ts │ │ │ └── defs │ │ │ │ └── TestLangConstructs.ast │ │ ├── testNoParserAvailable │ │ │ ├── README.md │ │ │ ├── __tests__ │ │ │ │ ├── LargeUnit.exm │ │ │ │ └── TryParser.test.ts │ │ │ └── defs │ │ │ │ ├── LanguageDefinition.ast │ │ │ │ ├── LanguageDefinition.edit │ │ │ │ ├── LanguageDefinition.scope │ │ │ │ ├── LanguageDefinition.type │ │ │ │ └── LanguageDefinition.valid │ │ ├── testPrimPropsGeneration │ │ │ ├── __tests__ │ │ │ │ └── checkPrimProps.test.ts │ │ │ └── defs │ │ │ │ └── test5.ast │ │ ├── testproject │ │ │ ├── __tests__ │ │ │ │ ├── checkScoper.test.ts │ │ │ │ └── checkStdLib.test.ts │ │ │ ├── custom │ │ │ │ └── CustomTestStartStdlib.ts │ │ │ └── defs │ │ │ │ ├── Testproject.ast │ │ │ │ └── Testproject.scope │ │ ├── typer-test8 │ │ │ ├── __inputs__ │ │ │ │ ├── complexExpWithComplexTypes.expr │ │ │ │ ├── complexExpWithSimpleTypes.expr │ │ │ │ ├── correctExps.expr │ │ │ │ ├── literals.expr │ │ │ │ └── literalsWithComplexTypes.expr │ │ │ ├── __tests__ │ │ │ │ └── testTyper.test.ts │ │ │ ├── custom │ │ │ │ └── CustomXXValidator.ts │ │ │ └── defs │ │ │ │ ├── projectY.ast │ │ │ │ ├── projectY.edit │ │ │ │ └── projectY.type │ │ ├── unparsedDemoModel1.txt │ │ ├── utils │ │ │ ├── FileHandler.ts │ │ │ └── HelperFunctions.ts │ │ └── vehicles │ │ │ ├── __inputs__ │ │ │ └── test1.veh │ │ │ ├── __tests__ │ │ │ └── TestVehicles.test.ts │ │ │ └── defs │ │ │ ├── Vehicles-additional.edit │ │ │ ├── Vehicles-default.edit │ │ │ ├── Vehicles-parser.edit │ │ │ └── Vehicles.ast │ ├── tests-by-hand │ │ ├── Base │ │ │ ├── Test Scenarios Core Editor Actions.md │ │ │ ├── Test Scenarios Editing Expressions.md │ │ │ ├── Test Scenarios Editor Web Actions.md │ │ │ ├── Test Scenarios Intro.md │ │ │ └── Test Scenarios Models and Units.md │ │ ├── test-april-2025 │ │ │ ├── Test Scenarios Core Editor Actions.md │ │ │ ├── Test Scenarios Editing Expressions.md │ │ │ ├── Test Scenarios Editor Web Actions.md │ │ │ └── Test Scenarios Models and Units.md │ │ └── tests-july-2025 │ │ │ ├── On Core Editor Actions.md │ │ │ ├── On Editor Web Actions.md │ │ │ ├── On Models and Units.md │ │ │ └── Summary-of-todos.md │ ├── tsconfig.json │ ├── txt.puml │ ├── unparsedDemoModel1.txt │ └── unparsedDemoModel2.txt ├── tools │ ├── README.txt │ ├── package.json │ ├── src │ │ ├── WepAppConfigTemplate.ts │ │ ├── dirvisitor │ │ │ ├── DirectoryWalker.ts │ │ │ ├── ListDirectories.ts │ │ │ ├── ListDirectory.ts │ │ │ ├── ModelStoreWorker.ts │ │ │ └── makeModelStoreIndex.ts │ │ ├── functionbinding │ │ │ └── Binding.ts │ │ ├── json │ │ │ ├── JsonCompare2.ts │ │ │ ├── LionwebM3.ts │ │ │ └── jsonCompare.ts │ │ └── lionweb │ │ │ ├── builtins.json │ │ │ ├── combined.json │ │ │ ├── diff.txt │ │ │ ├── lion.json │ │ │ ├── std-builtins.json │ │ │ ├── std-lioncore-builtins-combined.json │ │ │ └── std-lioncore.json │ └── tsconfig.json ├── tsnode-examples │ ├── package.json │ ├── src │ │ ├── Mixins.ts │ │ ├── Mixins2.ts │ │ ├── One.ts │ │ ├── Props.ts │ │ ├── TsLangMixins.ts │ │ ├── delarationmerging │ │ │ └── DeclarationMerging.ts │ │ ├── delegation │ │ │ ├── CustomClass.ts │ │ │ ├── GeneratedClass.ts │ │ │ ├── GeneratedInterface.ts │ │ │ └── Usage.ts │ │ ├── extentions │ │ │ ├── ActivateExtensions.ts │ │ │ ├── Extension.ts │ │ │ ├── ExtensionLib.ts │ │ │ └── GeneratedClass.ts │ │ ├── generationgap │ │ │ ├── CustomClass.ts │ │ │ ├── GeneratedClass.ts │ │ │ └── Usage.ts │ │ └── testmerge.ts │ └── tsconfig.json ├── webapp-flowbite │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── package.json │ ├── public │ │ ├── customImages │ │ │ ├── cats-kittens.gif │ │ │ ├── icons8-person-94.png │ │ │ ├── lenny-confetti-hired-kitten.gif │ │ │ └── rick-roll-rick-rolled.gif │ │ ├── favicon.png │ │ └── freonlogo.svg │ ├── src │ │ ├── customComponents │ │ │ ├── forCourseSchedule │ │ │ │ ├── PersonIcon.svelte │ │ │ │ ├── PhoneButton.svelte │ │ │ │ ├── Schedule.svelte │ │ │ │ └── StaffAccordion.svelte │ │ │ ├── forExternalTester │ │ │ │ ├── BooleanWrapperComponent.svelte │ │ │ │ ├── ExternalBooleanComponent.svelte │ │ │ │ ├── ExternalNumberComponent.svelte │ │ │ │ ├── ExternalPartComponent.svelte │ │ │ │ ├── ExternalPartListComponent.svelte │ │ │ │ ├── ExternalRefComponent.svelte │ │ │ │ ├── ExternalRefListComponent.svelte │ │ │ │ ├── ExternalSimpleComponent.svelte │ │ │ │ ├── ExternalStringComponent.svelte │ │ │ │ ├── FragmentWrapperComponent.svelte │ │ │ │ ├── NumberWrapperComponent.svelte │ │ │ │ ├── PartListWrapperComponent.svelte │ │ │ │ ├── PartWrapperComponent.svelte │ │ │ │ ├── RefListWrapperComponent.svelte │ │ │ │ ├── RefWrapperComponent.svelte │ │ │ │ ├── ReplacePartInConceptWithParts.svelte │ │ │ │ ├── ReplacePartListInConceptWithParts.svelte │ │ │ │ ├── ReplaceRefInConceptWithRefs.svelte │ │ │ │ ├── ReplaceRefListInConceptWithRefs.svelte │ │ │ │ └── StringWrapperComponent.svelte │ │ │ └── forInsurance │ │ │ │ ├── DatePicker.svelte │ │ │ │ ├── FB_Accordion.svelte │ │ │ │ ├── FB_Card_Component.svelte │ │ │ │ ├── FB_Dialog.svelte │ │ │ │ └── ShowAnimatedGif.svelte │ │ ├── externals.ts │ │ ├── global.d.ts │ │ ├── loggers.ts │ │ └── starter.ts │ ├── styles │ │ ├── externals-styles.css │ │ ├── theme-colors-override.css │ │ └── webapp-styles.css │ ├── svelte.config.js │ ├── tsconfig.json │ └── vite.config.ts └── weblib-flowbite │ ├── eslint.config.js │ ├── package.json │ ├── src │ ├── app.css │ ├── app.d.ts │ ├── app.html │ ├── demo.spec.ts │ ├── hooks.client.ts │ ├── lib-only.css │ ├── lib │ │ ├── dialogs │ │ │ ├── AboutDialog.svelte │ │ │ ├── DeleteModelDialog.svelte │ │ │ ├── DeleteUnitDialog.svelte │ │ │ ├── Dialog.svelte │ │ │ ├── ErrorMessage.svelte │ │ │ ├── ImportDialog.svelte │ │ │ ├── NewModelDialog.svelte │ │ │ ├── NewUnitDialog.svelte │ │ │ ├── OpenModelDialog.svelte │ │ │ ├── RenameModelDialog.svelte │ │ │ ├── RenameUnitDialog.svelte │ │ │ ├── SearchElementDialog.svelte │ │ │ ├── SearchTextDialog.svelte │ │ │ ├── StartDialog.svelte │ │ │ └── ViewDialog.svelte │ │ ├── index.ts │ │ ├── language │ │ │ ├── DialogHelpers.ts │ │ │ ├── EditorRequestsHandler.ts │ │ │ ├── ImportExportHandler.ts │ │ │ ├── WebappConfigurator.ts │ │ │ └── index.ts │ │ ├── logging │ │ │ └── LoggerSettings.ts │ │ ├── main-app │ │ │ ├── EditorPart.svelte │ │ │ ├── FlowbiteFreonLayout.svelte │ │ │ ├── GitHub.svelte │ │ │ ├── InfoPanel.svelte │ │ │ ├── InterpreterResults.svelte │ │ │ ├── ModelPanel.svelte │ │ │ ├── NavBar.svelte │ │ │ ├── SearchResults.svelte │ │ │ ├── StatusBar.svelte │ │ │ ├── TabContent.svelte │ │ │ ├── ToolBar.svelte │ │ │ ├── ToolMenu.svelte │ │ │ ├── ValidationResults.svelte │ │ │ └── index.ts │ │ ├── stores │ │ │ ├── InfoPanelStore.svelte.ts │ │ │ ├── LanguageInfo.svelte.ts │ │ │ ├── ModelInfo.svelte.ts │ │ │ ├── Projections.svelte.ts │ │ │ ├── StylesStore.svelte.ts │ │ │ ├── UserMessageStore.svelte.ts │ │ │ ├── WebappStores.svelte.ts │ │ │ └── index.ts │ │ ├── tree │ │ │ ├── TreeNode.svelte │ │ │ ├── TreeNodeData.ts │ │ │ └── TreeView.svelte │ │ ├── ts-utils │ │ │ ├── CommonFunctions.ts │ │ │ └── MenuItem.ts │ │ └── used-from-FB.md │ ├── routes │ │ ├── +layout.svelte │ │ └── +page.svelte │ └── theme-colors.css │ ├── static │ ├── favicon.png │ └── freonlogo.svg │ ├── svelte.config.js │ ├── tsconfig.json │ └── vite.config.ts ├── public └── images │ ├── projectit-logo-3d.png │ └── projectit.png ├── scripts ├── check-import-extensions.sh ├── cleanup.sh ├── freon-profiling-dev.sh ├── freon-samples-dev.sh ├── freon-test-dev.sh ├── kill-server.sh ├── release-local-test-template.sh └── release-local-test.sh ├── storage └── .verdaccio-db.json ├── tsconfig-base.json └── tslint.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | tsconfig.json 2 | 3 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/.prettierrc -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/README.md -------------------------------------------------------------------------------- /developer-documentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/developer-documentation/README.md -------------------------------------------------------------------------------- /developer-documentation/on-core-choice-boxes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/developer-documentation/on-core-choice-boxes.md -------------------------------------------------------------------------------- /developer-documentation/structure-of-the-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/developer-documentation/structure-of-the-project.md -------------------------------------------------------------------------------- /notes/IdeasOnActions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/notes/IdeasOnActions.md -------------------------------------------------------------------------------- /notes/LionWeb-errors-in-samples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/notes/LionWeb-errors-in-samples.md -------------------------------------------------------------------------------- /notes/Notes-on-styling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/notes/Notes-on-styling.md -------------------------------------------------------------------------------- /notes/box-roles-and-actions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/notes/box-roles-and-actions.md -------------------------------------------------------------------------------- /notes/demo-canon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/notes/demo-canon.md -------------------------------------------------------------------------------- /notes/editor-misc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/notes/editor-misc.md -------------------------------------------------------------------------------- /notes/expression-editing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/notes/expression-editing.md -------------------------------------------------------------------------------- /notes/for-documentation-v2/AST-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/notes/for-documentation-v2/AST-graph.png -------------------------------------------------------------------------------- /notes/for-documentation-v2/AST-plus-NS-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/notes/for-documentation-v2/AST-plus-NS-graph.png -------------------------------------------------------------------------------- /notes/for-documentation-v2/AST-plus-mult-refs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/notes/for-documentation-v2/AST-plus-mult-refs.png -------------------------------------------------------------------------------- /notes/for-documentation-v2/AST-plus-reference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/notes/for-documentation-v2/AST-plus-reference.png -------------------------------------------------------------------------------- /notes/for-documentation-v2/Changes-Scoper-v1-v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/notes/for-documentation-v2/Changes-Scoper-v1-v2.md -------------------------------------------------------------------------------- /notes/for-documentation-v2/NS-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/notes/for-documentation-v2/NS-graph.png -------------------------------------------------------------------------------- /notes/for-documentation-v2/On-scoping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/notes/for-documentation-v2/On-scoping.md -------------------------------------------------------------------------------- /notes/for-documentation-v2/Styling-in-v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/notes/for-documentation-v2/Styling-in-v2.md -------------------------------------------------------------------------------- /notes/interpreter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/notes/interpreter.md -------------------------------------------------------------------------------- /notes/language-composition/language-composition.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/notes/language-composition/language-composition.adoc -------------------------------------------------------------------------------- /notes/new-scoper/C.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/notes/new-scoper/C.m4 -------------------------------------------------------------------------------- /notes/new-scoper/ast-base-multiple-package.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/notes/new-scoper/ast-base-multiple-package.dot -------------------------------------------------------------------------------- /notes/new-scoper/ast-base-multiple-package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/notes/new-scoper/ast-base-multiple-package.md -------------------------------------------------------------------------------- /notes/new-scoper/ast-base-multiple-package.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/notes/new-scoper/ast-base-multiple-package.svg -------------------------------------------------------------------------------- /notes/new-scoper/ast-base-single-package-nons.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/notes/new-scoper/ast-base-single-package-nons.dot -------------------------------------------------------------------------------- /notes/new-scoper/ast-base-single-package-nons.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/notes/new-scoper/ast-base-single-package-nons.m4 -------------------------------------------------------------------------------- /notes/new-scoper/ast-base-single-package-nons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/notes/new-scoper/ast-base-single-package-nons.svg -------------------------------------------------------------------------------- /notes/new-scoper/ast-base-single-package.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/notes/new-scoper/ast-base-single-package.dot -------------------------------------------------------------------------------- /notes/new-scoper/ast-base-single-package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/notes/new-scoper/ast-base-single-package.md -------------------------------------------------------------------------------- /notes/new-scoper/ast-base-single-package.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/notes/new-scoper/ast-base-single-package.svg -------------------------------------------------------------------------------- /notes/new-scoper/c.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notes/new-scoper/create-variants.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/notes/new-scoper/create-variants.sh -------------------------------------------------------------------------------- /notes/new-scoper/legend.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/notes/new-scoper/legend.dot -------------------------------------------------------------------------------- /notes/new-scoper/legend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/notes/new-scoper/legend.svg -------------------------------------------------------------------------------- /notes/new-scoper/m4arguments/SHOW_AST.m4: -------------------------------------------------------------------------------- 1 | define('NO_IMPORTS', '1') 2 | -------------------------------------------------------------------------------- /notes/new-scoper/m4arguments/SHOW_IMPORTS.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/notes/new-scoper/m4arguments/SHOW_IMPORTS.m4 -------------------------------------------------------------------------------- /notes/new-scoper/m4arguments/SHOW_IMPORTS_RECURSIVE.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/notes/new-scoper/m4arguments/SHOW_IMPORTS_RECURSIVE.m4 -------------------------------------------------------------------------------- /notes/new-scoper/m4arguments/SHOW_NAMESPACES.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/notes/new-scoper/m4arguments/SHOW_NAMESPACES.m4 -------------------------------------------------------------------------------- /notes/on-youtube-videos/InventoryOfVideos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/notes/on-youtube-videos/InventoryOfVideos.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/package.json -------------------------------------------------------------------------------- /packages/core-svelte/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core-svelte/.gitignore -------------------------------------------------------------------------------- /packages/core-svelte/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core-svelte/.prettierignore -------------------------------------------------------------------------------- /packages/core-svelte/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core-svelte/.prettierrc -------------------------------------------------------------------------------- /packages/core-svelte/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core-svelte/README.md -------------------------------------------------------------------------------- /packages/core-svelte/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core-svelte/package.json -------------------------------------------------------------------------------- /packages/core-svelte/src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core-svelte/src/app.css -------------------------------------------------------------------------------- /packages/core-svelte/src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core-svelte/src/app.d.ts -------------------------------------------------------------------------------- /packages/core-svelte/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core-svelte/src/app.html -------------------------------------------------------------------------------- /packages/core-svelte/src/demo.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core-svelte/src/demo.spec.ts -------------------------------------------------------------------------------- /packages/core-svelte/src/lib/__test__/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core-svelte/src/lib/__test__/README.md -------------------------------------------------------------------------------- /packages/core-svelte/src/lib/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core-svelte/src/lib/components/index.ts -------------------------------------------------------------------------------- /packages/core-svelte/src/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core-svelte/src/lib/index.ts -------------------------------------------------------------------------------- /packages/core-svelte/src/lib/styles/freon-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core-svelte/src/lib/styles/freon-light.css -------------------------------------------------------------------------------- /packages/core-svelte/src/lib/styles/freon-tw-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core-svelte/src/lib/styles/freon-tw-dark.css -------------------------------------------------------------------------------- /packages/core-svelte/src/lib/styles/freon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core-svelte/src/lib/styles/freon.css -------------------------------------------------------------------------------- /packages/core-svelte/src/routes/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core-svelte/src/routes/+layout.svelte -------------------------------------------------------------------------------- /packages/core-svelte/src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core-svelte/src/routes/+page.svelte -------------------------------------------------------------------------------- /packages/core-svelte/src/routes/dragdrop/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core-svelte/src/routes/dragdrop/+page.svelte -------------------------------------------------------------------------------- /packages/core-svelte/src/routes/render/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core-svelte/src/routes/render/+page.svelte -------------------------------------------------------------------------------- /packages/core-svelte/src/routes/tabbing/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core-svelte/src/routes/tabbing/+page.svelte -------------------------------------------------------------------------------- /packages/core-svelte/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core-svelte/static/favicon.png -------------------------------------------------------------------------------- /packages/core-svelte/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core-svelte/svelte.config.js -------------------------------------------------------------------------------- /packages/core-svelte/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core-svelte/tsconfig.json -------------------------------------------------------------------------------- /packages/core-svelte/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core-svelte/vite.config.ts -------------------------------------------------------------------------------- /packages/core/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/eslint.config.js -------------------------------------------------------------------------------- /packages/core/oldvite-config-ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/oldvite-config-ts.md -------------------------------------------------------------------------------- /packages/core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/package.json -------------------------------------------------------------------------------- /packages/core/src/__tests__/changes/Change.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/__tests__/changes/Change.test.ts -------------------------------------------------------------------------------- /packages/core/src/__tests__/changes/ModelCreator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/__tests__/changes/ModelCreator.ts -------------------------------------------------------------------------------- /packages/core/src/__tests__/mobx/MobxModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/__tests__/mobx/MobxModel.ts -------------------------------------------------------------------------------- /packages/core/src/__tests__/mobx/MobxTest.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/__tests__/mobx/MobxTest.spec.ts -------------------------------------------------------------------------------- /packages/core/src/__tests__/mobx/TestScoper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/__tests__/mobx/TestScoper.ts -------------------------------------------------------------------------------- /packages/core/src/__tests__/scoper/ModelCreator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/__tests__/scoper/ModelCreator.ts -------------------------------------------------------------------------------- /packages/core/src/__tests__/scoper/parentNames.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/__tests__/scoper/parentNames.test.ts -------------------------------------------------------------------------------- /packages/core/src/ast-utils/Ast2Dot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/ast-utils/Ast2Dot.ts -------------------------------------------------------------------------------- /packages/core/src/ast-utils/AstActionExecutor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/ast-utils/AstActionExecutor.ts -------------------------------------------------------------------------------- /packages/core/src/ast-utils/AstUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/ast-utils/AstUtil.ts -------------------------------------------------------------------------------- /packages/core/src/ast-utils/AstWalker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/ast-utils/AstWalker.ts -------------------------------------------------------------------------------- /packages/core/src/ast-utils/AstWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/ast-utils/AstWorker.ts -------------------------------------------------------------------------------- /packages/core/src/ast-utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/ast-utils/index.ts -------------------------------------------------------------------------------- /packages/core/src/ast/FreBinaryExpression.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/ast/FreBinaryExpression.ts -------------------------------------------------------------------------------- /packages/core/src/ast/FreExpressionNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/ast/FreExpressionNode.ts -------------------------------------------------------------------------------- /packages/core/src/ast/FreModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/ast/FreModel.ts -------------------------------------------------------------------------------- /packages/core/src/ast/FreModelUnit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/ast/FreModelUnit.ts -------------------------------------------------------------------------------- /packages/core/src/ast/FreNamedNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/ast/FreNamedNode.ts -------------------------------------------------------------------------------- /packages/core/src/ast/FreNode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/ast/FreNode.ts -------------------------------------------------------------------------------- /packages/core/src/ast/FreNodeBaseImpl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/ast/FreNodeBaseImpl.ts -------------------------------------------------------------------------------- /packages/core/src/ast/FreNodeReference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/ast/FreNodeReference.ts -------------------------------------------------------------------------------- /packages/core/src/ast/FreOwnerDescriptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/ast/FreOwnerDescriptor.ts -------------------------------------------------------------------------------- /packages/core/src/ast/decorators/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/ast/decorators/index.ts -------------------------------------------------------------------------------- /packages/core/src/ast/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./internal.js"; 2 | -------------------------------------------------------------------------------- /packages/core/src/ast/internal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/ast/internal.ts -------------------------------------------------------------------------------- /packages/core/src/change-manager/AstChanger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/change-manager/AstChanger.ts -------------------------------------------------------------------------------- /packages/core/src/change-manager/FreChangeManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/change-manager/FreChangeManager.ts -------------------------------------------------------------------------------- /packages/core/src/change-manager/FreDelta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/change-manager/FreDelta.ts -------------------------------------------------------------------------------- /packages/core/src/change-manager/FreUndoManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/change-manager/FreUndoManager.ts -------------------------------------------------------------------------------- /packages/core/src/change-manager/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./internal.js"; 2 | -------------------------------------------------------------------------------- /packages/core/src/change-manager/internal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/change-manager/internal.ts -------------------------------------------------------------------------------- /packages/core/src/editor/ClientRectangleTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/ClientRectangleTypes.ts -------------------------------------------------------------------------------- /packages/core/src/editor/FreCombinedActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/FreCombinedActions.ts -------------------------------------------------------------------------------- /packages/core/src/editor/FreEditor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/FreEditor.ts -------------------------------------------------------------------------------- /packages/core/src/editor/FreErrorDecorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/FreErrorDecorator.ts -------------------------------------------------------------------------------- /packages/core/src/editor/FreStyle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/FreStyle.ts -------------------------------------------------------------------------------- /packages/core/src/editor/FreTableDefinition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/FreTableDefinition.ts -------------------------------------------------------------------------------- /packages/core/src/editor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/README.md -------------------------------------------------------------------------------- /packages/core/src/editor/actions/FreAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/actions/FreAction.ts -------------------------------------------------------------------------------- /packages/core/src/editor/actions/FreCustomAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/actions/FreCustomAction.ts -------------------------------------------------------------------------------- /packages/core/src/editor/actions/FreTriggers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/actions/FreTriggers.ts -------------------------------------------------------------------------------- /packages/core/src/editor/actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/actions/index.ts -------------------------------------------------------------------------------- /packages/core/src/editor/actions/internal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/actions/internal.ts -------------------------------------------------------------------------------- /packages/core/src/editor/boxes/AbstractChoiceBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/boxes/AbstractChoiceBox.ts -------------------------------------------------------------------------------- /packages/core/src/editor/boxes/ActionBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/boxes/ActionBox.ts -------------------------------------------------------------------------------- /packages/core/src/editor/boxes/BooleanControlBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/boxes/BooleanControlBox.ts -------------------------------------------------------------------------------- /packages/core/src/editor/boxes/Box.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/boxes/Box.ts -------------------------------------------------------------------------------- /packages/core/src/editor/boxes/BoxFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/boxes/BoxFactory.ts -------------------------------------------------------------------------------- /packages/core/src/editor/boxes/ButtonBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/boxes/ButtonBox.ts -------------------------------------------------------------------------------- /packages/core/src/editor/boxes/ChoiceTextHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/boxes/ChoiceTextHelper.ts -------------------------------------------------------------------------------- /packages/core/src/editor/boxes/ElementBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/boxes/ElementBox.ts -------------------------------------------------------------------------------- /packages/core/src/editor/boxes/EmptyLineBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/boxes/EmptyLineBox.ts -------------------------------------------------------------------------------- /packages/core/src/editor/boxes/FragmentBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/boxes/FragmentBox.ts -------------------------------------------------------------------------------- /packages/core/src/editor/boxes/GridBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/boxes/GridBox.ts -------------------------------------------------------------------------------- /packages/core/src/editor/boxes/GridCellBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/boxes/GridCellBox.ts -------------------------------------------------------------------------------- /packages/core/src/editor/boxes/IndentBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/boxes/IndentBox.ts -------------------------------------------------------------------------------- /packages/core/src/editor/boxes/LabelBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/boxes/LabelBox.ts -------------------------------------------------------------------------------- /packages/core/src/editor/boxes/LayoutBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/boxes/LayoutBox.ts -------------------------------------------------------------------------------- /packages/core/src/editor/boxes/LimitedControlBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/boxes/LimitedControlBox.ts -------------------------------------------------------------------------------- /packages/core/src/editor/boxes/ListBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/boxes/ListBox.ts -------------------------------------------------------------------------------- /packages/core/src/editor/boxes/MultiLineTextBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/boxes/MultiLineTextBox.ts -------------------------------------------------------------------------------- /packages/core/src/editor/boxes/NumberControlBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/boxes/NumberControlBox.ts -------------------------------------------------------------------------------- /packages/core/src/editor/boxes/OptionalBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/boxes/OptionalBox.ts -------------------------------------------------------------------------------- /packages/core/src/editor/boxes/OptionalBox2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/boxes/OptionalBox2.ts -------------------------------------------------------------------------------- /packages/core/src/editor/boxes/ReferenceBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/boxes/ReferenceBox.ts -------------------------------------------------------------------------------- /packages/core/src/editor/boxes/SelectBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/boxes/SelectBox.ts -------------------------------------------------------------------------------- /packages/core/src/editor/boxes/SelectOption.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/boxes/SelectOption.ts -------------------------------------------------------------------------------- /packages/core/src/editor/boxes/SvgBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/boxes/SvgBox.ts -------------------------------------------------------------------------------- /packages/core/src/editor/boxes/TableBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/boxes/TableBox.ts -------------------------------------------------------------------------------- /packages/core/src/editor/boxes/TableCellBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/boxes/TableCellBox.ts -------------------------------------------------------------------------------- /packages/core/src/editor/boxes/TableRowBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/boxes/TableRowBox.ts -------------------------------------------------------------------------------- /packages/core/src/editor/boxes/TextBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/boxes/TextBox.ts -------------------------------------------------------------------------------- /packages/core/src/editor/boxes/externalBoxes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/boxes/externalBoxes/index.ts -------------------------------------------------------------------------------- /packages/core/src/editor/boxes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/boxes/index.ts -------------------------------------------------------------------------------- /packages/core/src/editor/boxes/internal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/boxes/internal.ts -------------------------------------------------------------------------------- /packages/core/src/editor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/index.ts -------------------------------------------------------------------------------- /packages/core/src/editor/internal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/internal.ts -------------------------------------------------------------------------------- /packages/core/src/editor/projections/FreBoxProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/projections/FreBoxProvider.ts -------------------------------------------------------------------------------- /packages/core/src/editor/projections/FreProjection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/projections/FreProjection.ts -------------------------------------------------------------------------------- /packages/core/src/editor/projections/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/projections/index.ts -------------------------------------------------------------------------------- /packages/core/src/editor/simplifiedBoxAPI/BoxUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/simplifiedBoxAPI/BoxUtil.ts -------------------------------------------------------------------------------- /packages/core/src/editor/simplifiedBoxAPI/TableUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/simplifiedBoxAPI/TableUtil.ts -------------------------------------------------------------------------------- /packages/core/src/editor/simplifiedBoxAPI/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/simplifiedBoxAPI/index.ts -------------------------------------------------------------------------------- /packages/core/src/editor/util/ActionsUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/util/ActionsUtil.ts -------------------------------------------------------------------------------- /packages/core/src/editor/util/BehaviorUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/util/BehaviorUtils.ts -------------------------------------------------------------------------------- /packages/core/src/editor/util/FreCaret.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/util/FreCaret.ts -------------------------------------------------------------------------------- /packages/core/src/editor/util/FreEditorUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/util/FreEditorUtil.ts -------------------------------------------------------------------------------- /packages/core/src/editor/util/FreExpressionUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/util/FreExpressionUtil.ts -------------------------------------------------------------------------------- /packages/core/src/editor/util/Keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/util/Keys.ts -------------------------------------------------------------------------------- /packages/core/src/editor/util/ListElementInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/util/ListElementInfo.ts -------------------------------------------------------------------------------- /packages/core/src/editor/util/ListUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/util/ListUtil.ts -------------------------------------------------------------------------------- /packages/core/src/editor/util/MenuItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/util/MenuItem.ts -------------------------------------------------------------------------------- /packages/core/src/editor/util/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./internal.js"; 2 | -------------------------------------------------------------------------------- /packages/core/src/editor/util/internal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/editor/util/internal.ts -------------------------------------------------------------------------------- /packages/core/src/environment/FreEnvironment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/environment/FreEnvironment.ts -------------------------------------------------------------------------------- /packages/core/src/environment/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/environment/index.ts -------------------------------------------------------------------------------- /packages/core/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./internal.js"; 2 | -------------------------------------------------------------------------------- /packages/core/src/internal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/internal.ts -------------------------------------------------------------------------------- /packages/core/src/interpreter/FreInterpreter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/interpreter/FreInterpreter.ts -------------------------------------------------------------------------------- /packages/core/src/interpreter/IMainInterpreter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/interpreter/IMainInterpreter.ts -------------------------------------------------------------------------------- /packages/core/src/interpreter/InterpreterContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/interpreter/InterpreterContext.ts -------------------------------------------------------------------------------- /packages/core/src/interpreter/InterpreterException.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/interpreter/InterpreterException.ts -------------------------------------------------------------------------------- /packages/core/src/interpreter/InterpreterTracer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/interpreter/InterpreterTracer.ts -------------------------------------------------------------------------------- /packages/core/src/interpreter/MainInterpreter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/interpreter/MainInterpreter.ts -------------------------------------------------------------------------------- /packages/core/src/interpreter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/interpreter/index.ts -------------------------------------------------------------------------------- /packages/core/src/interpreter/runtime/RtArray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/interpreter/runtime/RtArray.ts -------------------------------------------------------------------------------- /packages/core/src/interpreter/runtime/RtBoolean.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/interpreter/runtime/RtBoolean.ts -------------------------------------------------------------------------------- /packages/core/src/interpreter/runtime/RtEmpty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/interpreter/runtime/RtEmpty.ts -------------------------------------------------------------------------------- /packages/core/src/interpreter/runtime/RtError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/interpreter/runtime/RtError.ts -------------------------------------------------------------------------------- /packages/core/src/interpreter/runtime/RtNumber.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/interpreter/runtime/RtNumber.ts -------------------------------------------------------------------------------- /packages/core/src/interpreter/runtime/RtObject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/interpreter/runtime/RtObject.ts -------------------------------------------------------------------------------- /packages/core/src/interpreter/runtime/RtString.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/interpreter/runtime/RtString.ts -------------------------------------------------------------------------------- /packages/core/src/interpreter/runtime/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/interpreter/runtime/index.ts -------------------------------------------------------------------------------- /packages/core/src/language/FreLanguage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/language/FreLanguage.ts -------------------------------------------------------------------------------- /packages/core/src/language/FreLanguageRegistry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/language/FreLanguageRegistry.ts -------------------------------------------------------------------------------- /packages/core/src/language/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./FreLanguage.js"; 2 | -------------------------------------------------------------------------------- /packages/core/src/logging/FreLogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/logging/FreLogger.ts -------------------------------------------------------------------------------- /packages/core/src/logging/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./FreLogger.js"; 2 | -------------------------------------------------------------------------------- /packages/core/src/reader/FreParseLocation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/reader/FreParseLocation.ts -------------------------------------------------------------------------------- /packages/core/src/reader/FreReader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/reader/FreReader.ts -------------------------------------------------------------------------------- /packages/core/src/reader/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/reader/index.ts -------------------------------------------------------------------------------- /packages/core/src/scoper/CollectDeclaredNodesWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/scoper/CollectDeclaredNodesWorker.ts -------------------------------------------------------------------------------- /packages/core/src/scoper/FreCompositeScoper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/scoper/FreCompositeScoper.ts -------------------------------------------------------------------------------- /packages/core/src/scoper/FreNamespace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/scoper/FreNamespace.ts -------------------------------------------------------------------------------- /packages/core/src/scoper/FreNamespaceInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/scoper/FreNamespaceInfo.ts -------------------------------------------------------------------------------- /packages/core/src/scoper/FreScoper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/scoper/FreScoper.ts -------------------------------------------------------------------------------- /packages/core/src/scoper/FreScoperBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/scoper/FreScoperBase.ts -------------------------------------------------------------------------------- /packages/core/src/scoper/ScoperUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/scoper/ScoperUtil.ts -------------------------------------------------------------------------------- /packages/core/src/scoper/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./internal.js"; 2 | -------------------------------------------------------------------------------- /packages/core/src/scoper/internal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/scoper/internal.ts -------------------------------------------------------------------------------- /packages/core/src/searchers/FreSearchWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/searchers/FreSearchWorker.ts -------------------------------------------------------------------------------- /packages/core/src/searchers/FreSearcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/searchers/FreSearcher.ts -------------------------------------------------------------------------------- /packages/core/src/searchers/StringSearchWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/searchers/StringSearchWorker.ts -------------------------------------------------------------------------------- /packages/core/src/searchers/StructureSearchWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/searchers/StructureSearchWorker.ts -------------------------------------------------------------------------------- /packages/core/src/searchers/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./FreSearcher.js"; 2 | -------------------------------------------------------------------------------- /packages/core/src/stdlib/FreStdlib.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/stdlib/FreStdlib.ts -------------------------------------------------------------------------------- /packages/core/src/stdlib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/stdlib/index.ts -------------------------------------------------------------------------------- /packages/core/src/storage/InMemoryModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/storage/InMemoryModel.ts -------------------------------------------------------------------------------- /packages/core/src/storage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/storage/index.ts -------------------------------------------------------------------------------- /packages/core/src/storage/serializer/FreSerializer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/storage/serializer/FreSerializer.ts -------------------------------------------------------------------------------- /packages/core/src/storage/serializer/NewLionwebM3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/storage/serializer/NewLionwebM3.ts -------------------------------------------------------------------------------- /packages/core/src/storage/serializer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/storage/serializer/index.ts -------------------------------------------------------------------------------- /packages/core/src/storage/server/LionwebIdProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/storage/server/LionwebIdProvider.ts -------------------------------------------------------------------------------- /packages/core/src/storage/server/UsedLanguages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/storage/server/UsedLanguages.ts -------------------------------------------------------------------------------- /packages/core/src/storage/server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/storage/server/index.ts -------------------------------------------------------------------------------- /packages/core/src/typer/AstType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/typer/AstType.ts -------------------------------------------------------------------------------- /packages/core/src/typer/FreCommonSuperTypeUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/typer/FreCommonSuperTypeUtil.ts -------------------------------------------------------------------------------- /packages/core/src/typer/FreCompositeTyper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/typer/FreCompositeTyper.ts -------------------------------------------------------------------------------- /packages/core/src/typer/FreType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/typer/FreType.ts -------------------------------------------------------------------------------- /packages/core/src/typer/FreTypeOrderedList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/typer/FreTypeOrderedList.ts -------------------------------------------------------------------------------- /packages/core/src/typer/FreTyper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/typer/FreTyper.ts -------------------------------------------------------------------------------- /packages/core/src/typer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/typer/index.ts -------------------------------------------------------------------------------- /packages/core/src/util/ArrayUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/util/ArrayUtil.ts -------------------------------------------------------------------------------- /packages/core/src/util/BalanceTreeUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/util/BalanceTreeUtils.ts -------------------------------------------------------------------------------- /packages/core/src/util/FreUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/util/FreUtils.ts -------------------------------------------------------------------------------- /packages/core/src/util/IdProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/util/IdProvider.ts -------------------------------------------------------------------------------- /packages/core/src/util/Json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/util/Json.ts -------------------------------------------------------------------------------- /packages/core/src/util/MatchUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/util/MatchUtil.ts -------------------------------------------------------------------------------- /packages/core/src/util/SimpleIdProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/util/SimpleIdProvider.ts -------------------------------------------------------------------------------- /packages/core/src/util/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./internal.js"; 2 | -------------------------------------------------------------------------------- /packages/core/src/util/internal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/util/internal.ts -------------------------------------------------------------------------------- /packages/core/src/validator/FreValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/validator/FreValidator.ts -------------------------------------------------------------------------------- /packages/core/src/validator/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./FreValidator.js"; 2 | -------------------------------------------------------------------------------- /packages/core/src/writer/FreWriter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/src/writer/FreWriter.ts -------------------------------------------------------------------------------- /packages/core/src/writer/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./FreWriter.js"; 2 | -------------------------------------------------------------------------------- /packages/core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/core/tsconfig.json -------------------------------------------------------------------------------- /packages/meta/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/package.json -------------------------------------------------------------------------------- /packages/meta/src/__tests__/TestPathHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/__tests__/TestPathHelpers.ts -------------------------------------------------------------------------------- /packages/meta/src/__tests__/editor-tests/correctDefFiles/test1.edit: -------------------------------------------------------------------------------- 1 | editor xxx 2 | 3 | -------------------------------------------------------------------------------- /packages/meta/src/__tests__/language-tests/faultyDefFiles/checking-errors/test10.ast: -------------------------------------------------------------------------------- 1 | language SOMETHING 2 | 3 | concept YYY {} 4 | -------------------------------------------------------------------------------- /packages/meta/src/__tests__/language-tests/faultyDefFiles/syntax-errors/test11.ast: -------------------------------------------------------------------------------- 1 | language 2 | 3 | concept YYY {} 4 | -------------------------------------------------------------------------------- /packages/meta/src/__tests__/language-tests/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/__tests__/language-tests/utils.ts -------------------------------------------------------------------------------- /packages/meta/src/bin/freon-generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/bin/freon-generator.ts -------------------------------------------------------------------------------- /packages/meta/src/commandline/FreonGenerateAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/commandline/FreonGenerateAction.ts -------------------------------------------------------------------------------- /packages/meta/src/commandline/FreonGenerateDiagrams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/commandline/FreonGenerateDiagrams.ts -------------------------------------------------------------------------------- /packages/meta/src/commandline/FreonGenerateEditor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/commandline/FreonGenerateEditor.ts -------------------------------------------------------------------------------- /packages/meta/src/commandline/FreonGenerateLanguage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/commandline/FreonGenerateLanguage.ts -------------------------------------------------------------------------------- /packages/meta/src/commandline/FreonGenerateLionWeb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/commandline/FreonGenerateLionWeb.ts -------------------------------------------------------------------------------- /packages/meta/src/commandline/FreonGenerateParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/commandline/FreonGenerateParser.ts -------------------------------------------------------------------------------- /packages/meta/src/commandline/FreonGenerateScoper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/commandline/FreonGenerateScoper.ts -------------------------------------------------------------------------------- /packages/meta/src/commandline/FreonGenerateTyper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/commandline/FreonGenerateTyper.ts -------------------------------------------------------------------------------- /packages/meta/src/commandline/IdMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/commandline/IdMap.ts -------------------------------------------------------------------------------- /packages/meta/src/commandline/freon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/commandline/freon.ts -------------------------------------------------------------------------------- /packages/meta/src/diagramgen/DiagramGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/diagramgen/DiagramGenerator.ts -------------------------------------------------------------------------------- /packages/meta/src/editordef/generator/templates/boxproviderhelpers/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./internal.js"; 2 | -------------------------------------------------------------------------------- /packages/meta/src/editordef/metalanguage/editlanguage/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./internal.js"; 2 | -------------------------------------------------------------------------------- /packages/meta/src/editordef/metalanguage/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./internal.js"; 2 | -------------------------------------------------------------------------------- /packages/meta/src/editordef/metalanguage/internal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/editordef/metalanguage/internal.ts -------------------------------------------------------------------------------- /packages/meta/src/editordef/parser/FreEditCreators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/editordef/parser/FreEditCreators.ts -------------------------------------------------------------------------------- /packages/meta/src/editordef/parser/FreEditParseUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/editordef/parser/FreEditParseUtil.ts -------------------------------------------------------------------------------- /packages/meta/src/editordef/parser/FreEditParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/editordef/parser/FreEditParser.ts -------------------------------------------------------------------------------- /packages/meta/src/editordef/parser/concat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/editordef/parser/concat.sh -------------------------------------------------------------------------------- /packages/meta/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./commandline/freon.js" 2 | -------------------------------------------------------------------------------- /packages/meta/src/langexpressions/metalanguage/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./FreLangExpressions.js"; 2 | -------------------------------------------------------------------------------- /packages/meta/src/langexpressions/parser/concat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/langexpressions/parser/concat.sh -------------------------------------------------------------------------------- /packages/meta/src/languagedef/checking/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/languagedef/checking/index.ts -------------------------------------------------------------------------------- /packages/meta/src/languagedef/checking/internal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/languagedef/checking/internal.ts -------------------------------------------------------------------------------- /packages/meta/src/languagedef/metalanguage/LangUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/languagedef/metalanguage/LangUtil.ts -------------------------------------------------------------------------------- /packages/meta/src/languagedef/metalanguage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/languagedef/metalanguage/index.ts -------------------------------------------------------------------------------- /packages/meta/src/languagedef/metalanguage/internal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/languagedef/metalanguage/internal.ts -------------------------------------------------------------------------------- /packages/meta/src/languagedef/parser/IdParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/languagedef/parser/IdParser.ts -------------------------------------------------------------------------------- /packages/meta/src/languagedef/parser/LanguageParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/languagedef/parser/LanguageParser.ts -------------------------------------------------------------------------------- /packages/meta/src/languagedef/parser/concat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/languagedef/parser/concat.sh -------------------------------------------------------------------------------- /packages/meta/src/lionwebgen/LionWebGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/lionwebgen/LionWebGenerator.ts -------------------------------------------------------------------------------- /packages/meta/src/lionwebgen/templates/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/meta/src/parsergen/ReaderWriterGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/parsergen/ReaderWriterGenerator.ts -------------------------------------------------------------------------------- /packages/meta/src/parsergen/parserTemplates/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/parsergen/parserTemplates/index.ts -------------------------------------------------------------------------------- /packages/meta/src/scoperdef/metalanguage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/scoperdef/metalanguage/index.ts -------------------------------------------------------------------------------- /packages/meta/src/scoperdef/metalanguage/internal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/scoperdef/metalanguage/internal.ts -------------------------------------------------------------------------------- /packages/meta/src/scoperdef/parser/ScoperCreators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/scoperdef/parser/ScoperCreators.ts -------------------------------------------------------------------------------- /packages/meta/src/scoperdef/parser/ScoperParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/scoperdef/parser/ScoperParser.ts -------------------------------------------------------------------------------- /packages/meta/src/scoperdef/parser/concat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/scoperdef/parser/concat.sh -------------------------------------------------------------------------------- /packages/meta/src/typerdef/metalanguage/FretVarDecl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/typerdef/metalanguage/FretVarDecl.ts -------------------------------------------------------------------------------- /packages/meta/src/typerdef/metalanguage/TyperDef.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/typerdef/metalanguage/TyperDef.ts -------------------------------------------------------------------------------- /packages/meta/src/typerdef/metalanguage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/typerdef/metalanguage/index.ts -------------------------------------------------------------------------------- /packages/meta/src/typerdef/metalanguage/internal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/typerdef/metalanguage/internal.ts -------------------------------------------------------------------------------- /packages/meta/src/typerdef/parser/FreTyperChecker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/typerdef/parser/FreTyperChecker.ts -------------------------------------------------------------------------------- /packages/meta/src/typerdef/parser/FreTyperGrammar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/typerdef/parser/FreTyperGrammar.ts -------------------------------------------------------------------------------- /packages/meta/src/typerdef/parser/FreTyperMerger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/typerdef/parser/FreTyperMerger.ts -------------------------------------------------------------------------------- /packages/meta/src/typerdef/parser/FreTyperReader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/typerdef/parser/FreTyperReader.ts -------------------------------------------------------------------------------- /packages/meta/src/typerdef/parser/FretOwnerSetter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/typerdef/parser/FretOwnerSetter.ts -------------------------------------------------------------------------------- /packages/meta/src/typerdef/parser/FretResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/typerdef/parser/FretResolver.ts -------------------------------------------------------------------------------- /packages/meta/src/typerdef/parser/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/typerdef/parser/index.ts -------------------------------------------------------------------------------- /packages/meta/src/typerdef/parser/internal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/typerdef/parser/internal.ts -------------------------------------------------------------------------------- /packages/meta/src/utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/utils/README.md -------------------------------------------------------------------------------- /packages/meta/src/utils/basic-dependencies/Checker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/utils/basic-dependencies/Checker.ts -------------------------------------------------------------------------------- /packages/meta/src/utils/basic-dependencies/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./internal.js"; 2 | -------------------------------------------------------------------------------- /packages/meta/src/utils/basic-dependencies/internal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/utils/basic-dependencies/internal.ts -------------------------------------------------------------------------------- /packages/meta/src/utils/file-utils/FileUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/utils/file-utils/FileUtil.ts -------------------------------------------------------------------------------- /packages/meta/src/utils/file-utils/FileWatcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/utils/file-utils/FileWatcher.ts -------------------------------------------------------------------------------- /packages/meta/src/utils/file-utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/utils/file-utils/index.ts -------------------------------------------------------------------------------- /packages/meta/src/utils/no-dependencies/Json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/utils/no-dependencies/Json.ts -------------------------------------------------------------------------------- /packages/meta/src/utils/no-dependencies/ListUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/utils/no-dependencies/ListUtil.ts -------------------------------------------------------------------------------- /packages/meta/src/utils/no-dependencies/MetaLogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/utils/no-dependencies/MetaLogger.ts -------------------------------------------------------------------------------- /packages/meta/src/utils/no-dependencies/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/utils/no-dependencies/index.ts -------------------------------------------------------------------------------- /packages/meta/src/utils/on-lang-and-editor/index.ts: -------------------------------------------------------------------------------- 1 | export * from './NamesForEditor.js'; 2 | -------------------------------------------------------------------------------- /packages/meta/src/utils/on-lang/GenerationUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/utils/on-lang/GenerationUtil.ts -------------------------------------------------------------------------------- /packages/meta/src/utils/on-lang/Imports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/utils/on-lang/Imports.ts -------------------------------------------------------------------------------- /packages/meta/src/utils/on-lang/Names.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/utils/on-lang/Names.ts -------------------------------------------------------------------------------- /packages/meta/src/utils/on-lang/PathProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/utils/on-lang/PathProvider.ts -------------------------------------------------------------------------------- /packages/meta/src/utils/on-lang/Roles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/utils/on-lang/Roles.ts -------------------------------------------------------------------------------- /packages/meta/src/utils/on-lang/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./internal.js"; 2 | -------------------------------------------------------------------------------- /packages/meta/src/utils/on-lang/internal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/utils/on-lang/internal.ts -------------------------------------------------------------------------------- /packages/meta/src/validatordef/generator/index.ts: -------------------------------------------------------------------------------- 1 | export * from './internal.js'; 2 | -------------------------------------------------------------------------------- /packages/meta/src/validatordef/generator/internal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/validatordef/generator/internal.ts -------------------------------------------------------------------------------- /packages/meta/src/validatordef/generator/templates/index.ts: -------------------------------------------------------------------------------- 1 | export * from './internal.js'; 2 | -------------------------------------------------------------------------------- /packages/meta/src/validatordef/metalanguage/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./internal.js"; 2 | -------------------------------------------------------------------------------- /packages/meta/src/validatordef/parser/concat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/validatordef/parser/concat.sh -------------------------------------------------------------------------------- /packages/meta/src/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/src/vitest.config.ts -------------------------------------------------------------------------------- /packages/meta/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/tsconfig.json -------------------------------------------------------------------------------- /packages/meta/tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/tsconfig.test.json -------------------------------------------------------------------------------- /packages/meta/tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tslint.json" 3 | } -------------------------------------------------------------------------------- /packages/meta/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/meta/vite.config.ts -------------------------------------------------------------------------------- /packages/samples/Calculator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Calculator/package.json -------------------------------------------------------------------------------- /packages/samples/Calculator/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Calculator/rollup.config.js -------------------------------------------------------------------------------- /packages/samples/Calculator/src/defs/calculator.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Calculator/src/defs/calculator.ast -------------------------------------------------------------------------------- /packages/samples/Calculator/src/defs/calculator.edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Calculator/src/defs/calculator.edit -------------------------------------------------------------------------------- /packages/samples/Calculator/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Calculator/src/index.ts -------------------------------------------------------------------------------- /packages/samples/Calculator/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Calculator/tsconfig.build.json -------------------------------------------------------------------------------- /packages/samples/Calculator/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Calculator/tsconfig.json -------------------------------------------------------------------------------- /packages/samples/CourseSchedule/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/CourseSchedule/package.json -------------------------------------------------------------------------------- /packages/samples/CourseSchedule/phase1/main.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/CourseSchedule/phase1/main.ast -------------------------------------------------------------------------------- /packages/samples/CourseSchedule/phase1/main.edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/CourseSchedule/phase1/main.edit -------------------------------------------------------------------------------- /packages/samples/CourseSchedule/phase2/externals.edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/CourseSchedule/phase2/externals.edit -------------------------------------------------------------------------------- /packages/samples/CourseSchedule/phase2/main.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/CourseSchedule/phase2/main.ast -------------------------------------------------------------------------------- /packages/samples/CourseSchedule/phase2/main.edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/CourseSchedule/phase2/main.edit -------------------------------------------------------------------------------- /packages/samples/CourseSchedule/phase2/starter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/CourseSchedule/phase2/starter.ts -------------------------------------------------------------------------------- /packages/samples/CourseSchedule/phase3/externals.edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/CourseSchedule/phase3/externals.edit -------------------------------------------------------------------------------- /packages/samples/CourseSchedule/phase3/main.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/CourseSchedule/phase3/main.ast -------------------------------------------------------------------------------- /packages/samples/CourseSchedule/phase3/main.edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/CourseSchedule/phase3/main.edit -------------------------------------------------------------------------------- /packages/samples/CourseSchedule/phase3/starter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/CourseSchedule/phase3/starter.ts -------------------------------------------------------------------------------- /packages/samples/CourseSchedule/phase4/externals.edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/CourseSchedule/phase4/externals.edit -------------------------------------------------------------------------------- /packages/samples/CourseSchedule/phase4/extra.css: -------------------------------------------------------------------------------- 1 | .smui-accordion { 2 | width: 800px; 3 | } 4 | -------------------------------------------------------------------------------- /packages/samples/CourseSchedule/phase4/main.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/CourseSchedule/phase4/main.ast -------------------------------------------------------------------------------- /packages/samples/CourseSchedule/phase4/main.edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/CourseSchedule/phase4/main.edit -------------------------------------------------------------------------------- /packages/samples/CourseSchedule/phase4/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/CourseSchedule/phase4/package.json -------------------------------------------------------------------------------- /packages/samples/CourseSchedule/phase4/starter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/CourseSchedule/phase4/starter.ts -------------------------------------------------------------------------------- /packages/samples/CourseSchedule/phase5/Schedule.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/CourseSchedule/phase5/Schedule.svelte -------------------------------------------------------------------------------- /packages/samples/CourseSchedule/phase5/externals.edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/CourseSchedule/phase5/externals.edit -------------------------------------------------------------------------------- /packages/samples/CourseSchedule/phase5/main.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/CourseSchedule/phase5/main.ast -------------------------------------------------------------------------------- /packages/samples/CourseSchedule/phase5/main.edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/CourseSchedule/phase5/main.edit -------------------------------------------------------------------------------- /packages/samples/CourseSchedule/phase5/starter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/CourseSchedule/phase5/starter.ts -------------------------------------------------------------------------------- /packages/samples/CourseSchedule/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/CourseSchedule/rollup.config.js -------------------------------------------------------------------------------- /packages/samples/CourseSchedule/src/defs/main.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/CourseSchedule/src/defs/main.ast -------------------------------------------------------------------------------- /packages/samples/CourseSchedule/src/defs/main.edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/CourseSchedule/src/defs/main.edit -------------------------------------------------------------------------------- /packages/samples/CourseSchedule/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/CourseSchedule/src/index.ts -------------------------------------------------------------------------------- /packages/samples/CourseSchedule/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/CourseSchedule/tsconfig.build.json -------------------------------------------------------------------------------- /packages/samples/CourseSchedule/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/CourseSchedule/tsconfig.json -------------------------------------------------------------------------------- /packages/samples/CustomizationsProject/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/CustomizationsProject/README.md -------------------------------------------------------------------------------- /packages/samples/CustomizationsProject/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/CustomizationsProject/package.json -------------------------------------------------------------------------------- /packages/samples/CustomizationsProject/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/CustomizationsProject/src/index.ts -------------------------------------------------------------------------------- /packages/samples/CustomizationsProject/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/CustomizationsProject/tsconfig.json -------------------------------------------------------------------------------- /packages/samples/Education/lesson1-defs/edu-flow.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/lesson1-defs/edu-flow.ast -------------------------------------------------------------------------------- /packages/samples/Education/lesson1-defs/edu-main.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/lesson1-defs/edu-main.ast -------------------------------------------------------------------------------- /packages/samples/Education/lesson1-defs/edu-tests.ast: -------------------------------------------------------------------------------- 1 | language Education 2 | 3 | modelunit Test { 4 | name: identifier; 5 | } 6 | -------------------------------------------------------------------------------- /packages/samples/Education/lesson1-defs/edu-topics.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/lesson1-defs/edu-topics.ast -------------------------------------------------------------------------------- /packages/samples/Education/lesson2-defs/edu-flow.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/lesson2-defs/edu-flow.ast -------------------------------------------------------------------------------- /packages/samples/Education/lesson2-defs/edu-main.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/lesson2-defs/edu-main.ast -------------------------------------------------------------------------------- /packages/samples/Education/lesson2-defs/edu-main.edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/lesson2-defs/edu-main.edit -------------------------------------------------------------------------------- /packages/samples/Education/lesson2-defs/edu-tests.ast: -------------------------------------------------------------------------------- 1 | language Education 2 | 3 | modelunit Test { 4 | name: identifier; 5 | } 6 | -------------------------------------------------------------------------------- /packages/samples/Education/lesson2-defs/edu-topics.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/lesson2-defs/edu-topics.ast -------------------------------------------------------------------------------- /packages/samples/Education/lesson3-defs/edu-flow.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/lesson3-defs/edu-flow.ast -------------------------------------------------------------------------------- /packages/samples/Education/lesson3-defs/edu-flow.edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/lesson3-defs/edu-flow.edit -------------------------------------------------------------------------------- /packages/samples/Education/lesson3-defs/edu-main.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/lesson3-defs/edu-main.ast -------------------------------------------------------------------------------- /packages/samples/Education/lesson3-defs/edu-main.edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/lesson3-defs/edu-main.edit -------------------------------------------------------------------------------- /packages/samples/Education/lesson3-defs/edu-tests.ast: -------------------------------------------------------------------------------- 1 | language Education 2 | 3 | modelunit Test { 4 | name: identifier; 5 | } 6 | -------------------------------------------------------------------------------- /packages/samples/Education/lesson3-defs/edu-topics.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/lesson3-defs/edu-topics.ast -------------------------------------------------------------------------------- /packages/samples/Education/lesson4-defs/edu-flow.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/lesson4-defs/edu-flow.ast -------------------------------------------------------------------------------- /packages/samples/Education/lesson4-defs/edu-flow.edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/lesson4-defs/edu-flow.edit -------------------------------------------------------------------------------- /packages/samples/Education/lesson4-defs/edu-main.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/lesson4-defs/edu-main.ast -------------------------------------------------------------------------------- /packages/samples/Education/lesson4-defs/edu-main.edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/lesson4-defs/edu-main.edit -------------------------------------------------------------------------------- /packages/samples/Education/lesson4-defs/edu-tests.ast: -------------------------------------------------------------------------------- 1 | language Education 2 | 3 | modelunit Test { 4 | name: identifier; 5 | } 6 | -------------------------------------------------------------------------------- /packages/samples/Education/lesson4-defs/edu-topics.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/lesson4-defs/edu-topics.ast -------------------------------------------------------------------------------- /packages/samples/Education/lesson5-defs/edu-flow.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/lesson5-defs/edu-flow.ast -------------------------------------------------------------------------------- /packages/samples/Education/lesson5-defs/edu-flow.edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/lesson5-defs/edu-flow.edit -------------------------------------------------------------------------------- /packages/samples/Education/lesson5-defs/edu-main.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/lesson5-defs/edu-main.ast -------------------------------------------------------------------------------- /packages/samples/Education/lesson5-defs/edu-main.edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/lesson5-defs/edu-main.edit -------------------------------------------------------------------------------- /packages/samples/Education/lesson5-defs/edu-tests.ast: -------------------------------------------------------------------------------- 1 | language Education 2 | 3 | modelunit Test { 4 | name: identifier; 5 | } 6 | -------------------------------------------------------------------------------- /packages/samples/Education/lesson5-defs/edu-topics.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/lesson5-defs/edu-topics.ast -------------------------------------------------------------------------------- /packages/samples/Education/lesson6-defs/edu-flow.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/lesson6-defs/edu-flow.ast -------------------------------------------------------------------------------- /packages/samples/Education/lesson6-defs/edu-flow.edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/lesson6-defs/edu-flow.edit -------------------------------------------------------------------------------- /packages/samples/Education/lesson6-defs/edu-main.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/lesson6-defs/edu-main.ast -------------------------------------------------------------------------------- /packages/samples/Education/lesson6-defs/edu-main.edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/lesson6-defs/edu-main.edit -------------------------------------------------------------------------------- /packages/samples/Education/lesson6-defs/edu-tests.ast: -------------------------------------------------------------------------------- 1 | language Education 2 | 3 | modelunit Test { 4 | name: identifier; 5 | } 6 | -------------------------------------------------------------------------------- /packages/samples/Education/lesson6-defs/edu-topics.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/lesson6-defs/edu-topics.ast -------------------------------------------------------------------------------- /packages/samples/Education/lesson6-defs/edu.scope: -------------------------------------------------------------------------------- 1 | scoper for language Education 2 | 3 | isNamespace { Page } 4 | -------------------------------------------------------------------------------- /packages/samples/Education/lesson7-defs/edu-flow.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/lesson7-defs/edu-flow.ast -------------------------------------------------------------------------------- /packages/samples/Education/lesson7-defs/edu-flow.edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/lesson7-defs/edu-flow.edit -------------------------------------------------------------------------------- /packages/samples/Education/lesson7-defs/edu-main.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/lesson7-defs/edu-main.ast -------------------------------------------------------------------------------- /packages/samples/Education/lesson7-defs/edu-main.edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/lesson7-defs/edu-main.edit -------------------------------------------------------------------------------- /packages/samples/Education/lesson7-defs/edu-tests.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/lesson7-defs/edu-tests.ast -------------------------------------------------------------------------------- /packages/samples/Education/lesson7-defs/edu-tests.edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/lesson7-defs/edu-tests.edit -------------------------------------------------------------------------------- /packages/samples/Education/lesson7-defs/edu-topics.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/lesson7-defs/edu-topics.ast -------------------------------------------------------------------------------- /packages/samples/Education/lesson7-defs/edu.scope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/lesson7-defs/edu.scope -------------------------------------------------------------------------------- /packages/samples/Education/lesson8-defs/edu-flow.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/lesson8-defs/edu-flow.ast -------------------------------------------------------------------------------- /packages/samples/Education/lesson8-defs/edu-flow.edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/lesson8-defs/edu-flow.edit -------------------------------------------------------------------------------- /packages/samples/Education/lesson8-defs/edu-main.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/lesson8-defs/edu-main.ast -------------------------------------------------------------------------------- /packages/samples/Education/lesson8-defs/edu-main.edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/lesson8-defs/edu-main.edit -------------------------------------------------------------------------------- /packages/samples/Education/lesson8-defs/edu-tests.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/lesson8-defs/edu-tests.ast -------------------------------------------------------------------------------- /packages/samples/Education/lesson8-defs/edu-tests.edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/lesson8-defs/edu-tests.edit -------------------------------------------------------------------------------- /packages/samples/Education/lesson8-defs/edu-topics.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/lesson8-defs/edu-topics.ast -------------------------------------------------------------------------------- /packages/samples/Education/lesson8-defs/edu.scope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/lesson8-defs/edu.scope -------------------------------------------------------------------------------- /packages/samples/Education/lesson9-defs/edu-flow.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/lesson9-defs/edu-flow.ast -------------------------------------------------------------------------------- /packages/samples/Education/lesson9-defs/edu-flow.edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/lesson9-defs/edu-flow.edit -------------------------------------------------------------------------------- /packages/samples/Education/lesson9-defs/edu-main.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/lesson9-defs/edu-main.ast -------------------------------------------------------------------------------- /packages/samples/Education/lesson9-defs/edu-main.edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/lesson9-defs/edu-main.edit -------------------------------------------------------------------------------- /packages/samples/Education/lesson9-defs/edu-tests.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/lesson9-defs/edu-tests.ast -------------------------------------------------------------------------------- /packages/samples/Education/lesson9-defs/edu-tests.edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/lesson9-defs/edu-tests.edit -------------------------------------------------------------------------------- /packages/samples/Education/lesson9-defs/edu-topics.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/lesson9-defs/edu-topics.ast -------------------------------------------------------------------------------- /packages/samples/Education/lesson9-defs/edu.scope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/lesson9-defs/edu.scope -------------------------------------------------------------------------------- /packages/samples/Education/lesson9-defs/edu.valid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/lesson9-defs/edu.valid -------------------------------------------------------------------------------- /packages/samples/Education/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/package.json -------------------------------------------------------------------------------- /packages/samples/Education/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/rollup.config.js -------------------------------------------------------------------------------- /packages/samples/Education/src/defs/edu-flow.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/src/defs/edu-flow.ast -------------------------------------------------------------------------------- /packages/samples/Education/src/defs/edu-flow.edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/src/defs/edu-flow.edit -------------------------------------------------------------------------------- /packages/samples/Education/src/defs/edu-main.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/src/defs/edu-main.ast -------------------------------------------------------------------------------- /packages/samples/Education/src/defs/edu-main.edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/src/defs/edu-main.edit -------------------------------------------------------------------------------- /packages/samples/Education/src/defs/edu-scoring.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/src/defs/edu-scoring.ast -------------------------------------------------------------------------------- /packages/samples/Education/src/defs/edu-scoring.edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/src/defs/edu-scoring.edit -------------------------------------------------------------------------------- /packages/samples/Education/src/defs/edu-scoring.type: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/src/defs/edu-scoring.type -------------------------------------------------------------------------------- /packages/samples/Education/src/defs/edu-tests.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/src/defs/edu-tests.ast -------------------------------------------------------------------------------- /packages/samples/Education/src/defs/edu-tests.edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/src/defs/edu-tests.edit -------------------------------------------------------------------------------- /packages/samples/Education/src/defs/edu-topics.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/src/defs/edu-topics.ast -------------------------------------------------------------------------------- /packages/samples/Education/src/defs/edu-topics.edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/src/defs/edu-topics.edit -------------------------------------------------------------------------------- /packages/samples/Education/src/defs/edu.scope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/src/defs/edu.scope -------------------------------------------------------------------------------- /packages/samples/Education/src/defs/edu.valid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/src/defs/edu.valid -------------------------------------------------------------------------------- /packages/samples/Education/src/defs/page-footing.edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/src/defs/page-footing.edit -------------------------------------------------------------------------------- /packages/samples/Education/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/src/index.ts -------------------------------------------------------------------------------- /packages/samples/Education/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/tsconfig.build.json -------------------------------------------------------------------------------- /packages/samples/Education/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Education/tsconfig.json -------------------------------------------------------------------------------- /packages/samples/Example/__exported_units__/Simple.exm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Example/__exported_units__/Simple.exm -------------------------------------------------------------------------------- /packages/samples/Example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Example/package.json -------------------------------------------------------------------------------- /packages/samples/Example/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Example/rollup.config.js -------------------------------------------------------------------------------- /packages/samples/Example/src/defs/Expressions.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Example/src/defs/Expressions.ast -------------------------------------------------------------------------------- /packages/samples/Example/src/defs/Expressions.type: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Example/src/defs/Expressions.type -------------------------------------------------------------------------------- /packages/samples/Example/src/defs/call.edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Example/src/defs/call.edit -------------------------------------------------------------------------------- /packages/samples/Example/src/defs/rules.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Example/src/defs/rules.ast -------------------------------------------------------------------------------- /packages/samples/Example/src/defs/rules.edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Example/src/defs/rules.edit -------------------------------------------------------------------------------- /packages/samples/Example/src/defs/rules.scope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Example/src/defs/rules.scope -------------------------------------------------------------------------------- /packages/samples/Example/src/defs/rules.type: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Example/src/defs/rules.type -------------------------------------------------------------------------------- /packages/samples/Example/src/defs/rules.valid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Example/src/defs/rules.valid -------------------------------------------------------------------------------- /packages/samples/Example/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Example/src/index.ts -------------------------------------------------------------------------------- /packages/samples/Example/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Example/tsconfig.build.json -------------------------------------------------------------------------------- /packages/samples/Example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Example/tsconfig.json -------------------------------------------------------------------------------- /packages/samples/ExternalTester/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/ExternalTester/package.json -------------------------------------------------------------------------------- /packages/samples/ExternalTester/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/ExternalTester/rollup.config.js -------------------------------------------------------------------------------- /packages/samples/ExternalTester/src/defs/base.edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/ExternalTester/src/defs/base.edit -------------------------------------------------------------------------------- /packages/samples/ExternalTester/src/defs/main.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/ExternalTester/src/defs/main.ast -------------------------------------------------------------------------------- /packages/samples/ExternalTester/src/defs/main.edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/ExternalTester/src/defs/main.edit -------------------------------------------------------------------------------- /packages/samples/ExternalTester/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/ExternalTester/src/index.ts -------------------------------------------------------------------------------- /packages/samples/ExternalTester/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/ExternalTester/tsconfig.build.json -------------------------------------------------------------------------------- /packages/samples/ExternalTester/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/ExternalTester/tsconfig.json -------------------------------------------------------------------------------- /packages/samples/FreLanguage/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/FreLanguage/package.json -------------------------------------------------------------------------------- /packages/samples/FreLanguage/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/FreLanguage/rollup.config.js -------------------------------------------------------------------------------- /packages/samples/FreLanguage/src/defs/MetaDSLs.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/FreLanguage/src/defs/MetaDSLs.ast -------------------------------------------------------------------------------- /packages/samples/FreLanguage/src/defs/MetaEditor.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/FreLanguage/src/defs/MetaEditor.ast -------------------------------------------------------------------------------- /packages/samples/FreLanguage/src/defs/MetaEditor.edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/FreLanguage/src/defs/MetaEditor.edit -------------------------------------------------------------------------------- /packages/samples/FreLanguage/src/defs/MetaScoper.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/FreLanguage/src/defs/MetaScoper.ast -------------------------------------------------------------------------------- /packages/samples/FreLanguage/src/defs/MetaScoper.edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/FreLanguage/src/defs/MetaScoper.edit -------------------------------------------------------------------------------- /packages/samples/FreLanguage/src/defs/MetaTyper.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/FreLanguage/src/defs/MetaTyper.ast -------------------------------------------------------------------------------- /packages/samples/FreLanguage/src/defs/MetaTyper.edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/FreLanguage/src/defs/MetaTyper.edit -------------------------------------------------------------------------------- /packages/samples/FreLanguage/src/defs/MetaTyper.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/FreLanguage/src/defs/MetaTyper.rules -------------------------------------------------------------------------------- /packages/samples/FreLanguage/src/defs/MetaTyper.scope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/FreLanguage/src/defs/MetaTyper.scope -------------------------------------------------------------------------------- /packages/samples/FreLanguage/src/defs/MetaTyper.type: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/FreLanguage/src/defs/MetaTyper.type -------------------------------------------------------------------------------- /packages/samples/FreLanguage/src/defs/MetaTyper.valid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/FreLanguage/src/defs/MetaTyper.valid -------------------------------------------------------------------------------- /packages/samples/FreLanguage/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/FreLanguage/src/index.ts -------------------------------------------------------------------------------- /packages/samples/FreLanguage/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/FreLanguage/tsconfig.build.json -------------------------------------------------------------------------------- /packages/samples/FreLanguage/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/FreLanguage/tsconfig.json -------------------------------------------------------------------------------- /packages/samples/Insurance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Insurance/README.md -------------------------------------------------------------------------------- /packages/samples/Insurance/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Insurance/package.json -------------------------------------------------------------------------------- /packages/samples/Insurance/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Insurance/rollup.config.js -------------------------------------------------------------------------------- /packages/samples/Insurance/src/defs/editor-tables.edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Insurance/src/defs/editor-tables.edit -------------------------------------------------------------------------------- /packages/samples/Insurance/src/defs/language-main.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Insurance/src/defs/language-main.ast -------------------------------------------------------------------------------- /packages/samples/Insurance/src/defs/scoper-docu.scope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Insurance/src/defs/scoper-docu.scope -------------------------------------------------------------------------------- /packages/samples/Insurance/src/defs/typer-docu.type: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Insurance/src/defs/typer-docu.type -------------------------------------------------------------------------------- /packages/samples/Insurance/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Insurance/src/index.ts -------------------------------------------------------------------------------- /packages/samples/Insurance/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Insurance/tsconfig.build.json -------------------------------------------------------------------------------- /packages/samples/Insurance/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Insurance/tsconfig.json -------------------------------------------------------------------------------- /packages/samples/MpsExpressions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/MpsExpressions/package.json -------------------------------------------------------------------------------- /packages/samples/MpsExpressions/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/MpsExpressions/rollup.config.js -------------------------------------------------------------------------------- /packages/samples/MpsExpressions/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/MpsExpressions/src/index.ts -------------------------------------------------------------------------------- /packages/samples/MpsExpressions/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/MpsExpressions/tsconfig.build.json -------------------------------------------------------------------------------- /packages/samples/MpsExpressions/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/MpsExpressions/tsconfig.json -------------------------------------------------------------------------------- /packages/samples/Octopus/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Octopus/package.json -------------------------------------------------------------------------------- /packages/samples/Octopus/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Octopus/rollup.config.js -------------------------------------------------------------------------------- /packages/samples/Octopus/src/__inputs__/Book.uml2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Octopus/src/__inputs__/Book.uml2 -------------------------------------------------------------------------------- /packages/samples/Octopus/src/__inputs__/Period.ocl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Octopus/src/__inputs__/Period.ocl -------------------------------------------------------------------------------- /packages/samples/Octopus/src/__inputs__/catalog.uml2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Octopus/src/__inputs__/catalog.uml2 -------------------------------------------------------------------------------- /packages/samples/Octopus/src/__inputs__/orders.uml2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Octopus/src/__inputs__/orders.uml2 -------------------------------------------------------------------------------- /packages/samples/Octopus/src/defs/octopus-context.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Octopus/src/defs/octopus-context.ast -------------------------------------------------------------------------------- /packages/samples/Octopus/src/defs/octopus-context.edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Octopus/src/defs/octopus-context.edit -------------------------------------------------------------------------------- /packages/samples/Octopus/src/defs/octopus-main.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Octopus/src/defs/octopus-main.ast -------------------------------------------------------------------------------- /packages/samples/Octopus/src/defs/octopus-ocl.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Octopus/src/defs/octopus-ocl.ast -------------------------------------------------------------------------------- /packages/samples/Octopus/src/defs/octopus-ocl.edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Octopus/src/defs/octopus-ocl.edit -------------------------------------------------------------------------------- /packages/samples/Octopus/src/defs/octopus-stdlib.ast: -------------------------------------------------------------------------------- 1 | language octopus 2 | 3 | concept OclIterator { 4 | name: identifier; 5 | } 6 | -------------------------------------------------------------------------------- /packages/samples/Octopus/src/defs/octopus-uml.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Octopus/src/defs/octopus-uml.ast -------------------------------------------------------------------------------- /packages/samples/Octopus/src/defs/octopus-uml.edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Octopus/src/defs/octopus-uml.edit -------------------------------------------------------------------------------- /packages/samples/Octopus/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Octopus/src/index.ts -------------------------------------------------------------------------------- /packages/samples/Octopus/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Octopus/tsconfig.build.json -------------------------------------------------------------------------------- /packages/samples/Octopus/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/Octopus/tsconfig.json -------------------------------------------------------------------------------- /packages/samples/QName/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/QName/README.md -------------------------------------------------------------------------------- /packages/samples/QName/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/QName/package.json -------------------------------------------------------------------------------- /packages/samples/QName/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/QName/rollup.config.js -------------------------------------------------------------------------------- /packages/samples/QName/src/defs/LanguageWithScopes.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/QName/src/defs/LanguageWithScopes.ast -------------------------------------------------------------------------------- /packages/samples/QName/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/QName/src/index.ts -------------------------------------------------------------------------------- /packages/samples/QName/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/QName/tsconfig.build.json -------------------------------------------------------------------------------- /packages/samples/QName/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/QName/tsconfig.json -------------------------------------------------------------------------------- /packages/samples/RulesLanguage/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/RulesLanguage/package.json -------------------------------------------------------------------------------- /packages/samples/RulesLanguage/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/RulesLanguage/rollup.config.js -------------------------------------------------------------------------------- /packages/samples/RulesLanguage/src/defs/entities.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/RulesLanguage/src/defs/entities.ast -------------------------------------------------------------------------------- /packages/samples/RulesLanguage/src/defs/rules.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/RulesLanguage/src/defs/rules.ast -------------------------------------------------------------------------------- /packages/samples/RulesLanguage/src/defs/rules.edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/RulesLanguage/src/defs/rules.edit -------------------------------------------------------------------------------- /packages/samples/RulesLanguage/src/defs/rules.scope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/RulesLanguage/src/defs/rules.scope -------------------------------------------------------------------------------- /packages/samples/RulesLanguage/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/RulesLanguage/src/index.ts -------------------------------------------------------------------------------- /packages/samples/RulesLanguage/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/RulesLanguage/tsconfig.build.json -------------------------------------------------------------------------------- /packages/samples/RulesLanguage/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/RulesLanguage/tsconfig.json -------------------------------------------------------------------------------- /packages/samples/ScoperTest/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/ScoperTest/package.json -------------------------------------------------------------------------------- /packages/samples/ScoperTest/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/ScoperTest/rollup.config.js -------------------------------------------------------------------------------- /packages/samples/ScoperTest/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/ScoperTest/src/index.ts -------------------------------------------------------------------------------- /packages/samples/ScoperTest/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/ScoperTest/tsconfig.build.json -------------------------------------------------------------------------------- /packages/samples/ScoperTest/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/ScoperTest/tsconfig.json -------------------------------------------------------------------------------- /packages/samples/ScopingExample/Demo-step1/main.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/ScopingExample/Demo-step1/main.ast -------------------------------------------------------------------------------- /packages/samples/ScopingExample/Demo-step1/main.edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/ScopingExample/Demo-step1/main.edit -------------------------------------------------------------------------------- /packages/samples/ScopingExample/Demo-step1/main.scope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/ScopingExample/Demo-step1/main.scope -------------------------------------------------------------------------------- /packages/samples/ScopingExample/Demo-step2/main.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/ScopingExample/Demo-step2/main.ast -------------------------------------------------------------------------------- /packages/samples/ScopingExample/Demo-step2/main.edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/ScopingExample/Demo-step2/main.edit -------------------------------------------------------------------------------- /packages/samples/ScopingExample/Demo-step2/main.scope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/ScopingExample/Demo-step2/main.scope -------------------------------------------------------------------------------- /packages/samples/ScopingExample/Demo-step3/main.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/ScopingExample/Demo-step3/main.ast -------------------------------------------------------------------------------- /packages/samples/ScopingExample/Demo-step3/main.edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/ScopingExample/Demo-step3/main.edit -------------------------------------------------------------------------------- /packages/samples/ScopingExample/Demo-step3/main.scope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/ScopingExample/Demo-step3/main.scope -------------------------------------------------------------------------------- /packages/samples/ScopingExample/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/ScopingExample/package.json -------------------------------------------------------------------------------- /packages/samples/ScopingExample/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/ScopingExample/rollup.config.js -------------------------------------------------------------------------------- /packages/samples/ScopingExample/src/defs/main.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/ScopingExample/src/defs/main.ast -------------------------------------------------------------------------------- /packages/samples/ScopingExample/src/defs/main.edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/ScopingExample/src/defs/main.edit -------------------------------------------------------------------------------- /packages/samples/ScopingExample/src/defs/main.scope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/ScopingExample/src/defs/main.scope -------------------------------------------------------------------------------- /packages/samples/ScopingExample/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/ScopingExample/src/index.ts -------------------------------------------------------------------------------- /packages/samples/ScopingExample/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/ScopingExample/tsconfig.build.json -------------------------------------------------------------------------------- /packages/samples/ScopingExample/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/ScopingExample/tsconfig.json -------------------------------------------------------------------------------- /packages/samples/SvelteTestModel/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/SvelteTestModel/package.json -------------------------------------------------------------------------------- /packages/samples/SvelteTestModel/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/SvelteTestModel/rollup.config.js -------------------------------------------------------------------------------- /packages/samples/SvelteTestModel/src/defs/main.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/SvelteTestModel/src/defs/main.ast -------------------------------------------------------------------------------- /packages/samples/SvelteTestModel/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/SvelteTestModel/src/index.ts -------------------------------------------------------------------------------- /packages/samples/SvelteTestModel/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/SvelteTestModel/tsconfig.build.json -------------------------------------------------------------------------------- /packages/samples/SvelteTestModel/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/SvelteTestModel/tsconfig.json -------------------------------------------------------------------------------- /packages/samples/TaxRules/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/TaxRules/package.json -------------------------------------------------------------------------------- /packages/samples/TaxRules/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/TaxRules/rollup.config.js -------------------------------------------------------------------------------- /packages/samples/TaxRules/src/defs/TaxRules.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/TaxRules/src/defs/TaxRules.ast -------------------------------------------------------------------------------- /packages/samples/TaxRules/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/TaxRules/src/index.ts -------------------------------------------------------------------------------- /packages/samples/TaxRules/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/TaxRules/tsconfig.build.json -------------------------------------------------------------------------------- /packages/samples/TaxRules/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/TaxRules/tsconfig.json -------------------------------------------------------------------------------- /packages/samples/TyperLanguage/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/TyperLanguage/package.json -------------------------------------------------------------------------------- /packages/samples/TyperLanguage/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/TyperLanguage/rollup.config.js -------------------------------------------------------------------------------- /packages/samples/TyperLanguage/src/defs/MetaDSLs.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/TyperLanguage/src/defs/MetaDSLs.ast -------------------------------------------------------------------------------- /packages/samples/TyperLanguage/src/defs/MetaTyper.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/TyperLanguage/src/defs/MetaTyper.ast -------------------------------------------------------------------------------- /packages/samples/TyperLanguage/src/defs/MetaTyper.edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/TyperLanguage/src/defs/MetaTyper.edit -------------------------------------------------------------------------------- /packages/samples/TyperLanguage/src/defs/MetaTyper.type: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/TyperLanguage/src/defs/MetaTyper.type -------------------------------------------------------------------------------- /packages/samples/TyperLanguage/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/TyperLanguage/src/index.ts -------------------------------------------------------------------------------- /packages/samples/TyperLanguage/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/TyperLanguage/tsconfig.build.json -------------------------------------------------------------------------------- /packages/samples/TyperLanguage/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/TyperLanguage/tsconfig.json -------------------------------------------------------------------------------- /packages/samples/UndoTester/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/UndoTester/package.json -------------------------------------------------------------------------------- /packages/samples/UndoTester/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/UndoTester/rollup.config.js -------------------------------------------------------------------------------- /packages/samples/UndoTester/src/defs/structure.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/UndoTester/src/defs/structure.ast -------------------------------------------------------------------------------- /packages/samples/UndoTester/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/UndoTester/src/index.ts -------------------------------------------------------------------------------- /packages/samples/UndoTester/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/UndoTester/tsconfig.build.json -------------------------------------------------------------------------------- /packages/samples/UndoTester/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/samples/UndoTester/tsconfig.json -------------------------------------------------------------------------------- /packages/server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/README.md -------------------------------------------------------------------------------- /packages/server/modelstore/EMPTY-MODEL/LargeUnit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/EMPTY-MODEL/LargeUnit.json -------------------------------------------------------------------------------- /packages/server/modelstore/EMPTY-MODEL/Simple2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/EMPTY-MODEL/Simple2.json -------------------------------------------------------------------------------- /packages/server/modelstore/Edu-test/Fractions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/Edu-test/Fractions.json -------------------------------------------------------------------------------- /packages/server/modelstore/Edu-test/Fractions101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/Edu-test/Fractions101.json -------------------------------------------------------------------------------- /packages/server/modelstore/Edu-test/Fractions102.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/Edu-test/Fractions102.json -------------------------------------------------------------------------------- /packages/server/modelstore/Edu-test/Fractions103.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/Edu-test/Fractions103.json -------------------------------------------------------------------------------- /packages/server/modelstore/Edu-test/StartFlow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/Edu-test/StartFlow.json -------------------------------------------------------------------------------- /packages/server/modelstore/Edu-test/TestB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/Edu-test/TestB.json -------------------------------------------------------------------------------- /packages/server/modelstore/Edu-test/TestBPublic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/Edu-test/TestBPublic.json -------------------------------------------------------------------------------- /packages/server/modelstore/ExtTest1/PartsTest1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/ExtTest1/PartsTest1.json -------------------------------------------------------------------------------- /packages/server/modelstore/ExtTest1/PrimsTest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/ExtTest1/PrimsTest.json -------------------------------------------------------------------------------- /packages/server/modelstore/ExtTest1/unit1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/ExtTest1/unit1.json -------------------------------------------------------------------------------- /packages/server/modelstore/ExtTest1/unit2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/ExtTest1/unit2.json -------------------------------------------------------------------------------- /packages/server/modelstore/ExtraModel/Customers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/ExtraModel/Customers.json -------------------------------------------------------------------------------- /packages/server/modelstore/ExtraModel/rules1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/ExtraModel/rules1.json -------------------------------------------------------------------------------- /packages/server/modelstore/Insurance1/Faulty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/Insurance1/Faulty.json -------------------------------------------------------------------------------- /packages/server/modelstore/Insurance1/Health.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/Insurance1/Health.json -------------------------------------------------------------------------------- /packages/server/modelstore/Insurance1/HealthAll.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/Insurance1/HealthAll.json -------------------------------------------------------------------------------- /packages/server/modelstore/Insurance1/Home.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/Insurance1/Home.json -------------------------------------------------------------------------------- /packages/server/modelstore/Insurance1/HomeAll.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/Insurance1/HomeAll.json -------------------------------------------------------------------------------- /packages/server/modelstore/Insurance1/HomeCheap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/Insurance1/HomeCheap.json -------------------------------------------------------------------------------- /packages/server/modelstore/Insurance1/HomeExtra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/Insurance1/HomeExtra.json -------------------------------------------------------------------------------- /packages/server/modelstore/Insurance1/Legal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/Insurance1/Legal.json -------------------------------------------------------------------------------- /packages/server/modelstore/Insurance1/LegalAll.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/Insurance1/LegalAll.json -------------------------------------------------------------------------------- /packages/server/modelstore/LangDev25-Demo/Demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/LangDev25-Demo/Demo.json -------------------------------------------------------------------------------- /packages/server/modelstore/Lesson1/Fractions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/Lesson1/Fractions.json -------------------------------------------------------------------------------- /packages/server/modelstore/Lesson1/Fractions101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/Lesson1/Fractions101.json -------------------------------------------------------------------------------- /packages/server/modelstore/Lesson1/Fractions102.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/Lesson1/Fractions102.json -------------------------------------------------------------------------------- /packages/server/modelstore/Lesson1/Fractions103.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/Lesson1/Fractions103.json -------------------------------------------------------------------------------- /packages/server/modelstore/Lesson1/StartFlow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/Lesson1/StartFlow.json -------------------------------------------------------------------------------- /packages/server/modelstore/Lesson4/Flow1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/Lesson4/Flow1.json -------------------------------------------------------------------------------- /packages/server/modelstore/Lesson4/Fractions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/Lesson4/Fractions.json -------------------------------------------------------------------------------- /packages/server/modelstore/Lesson4/Fractions101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/Lesson4/Fractions101.json -------------------------------------------------------------------------------- /packages/server/modelstore/Lesson4/Fractions102.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/Lesson4/Fractions102.json -------------------------------------------------------------------------------- /packages/server/modelstore/Lesson4/Fractions103.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/Lesson4/Fractions103.json -------------------------------------------------------------------------------- /packages/server/modelstore/Lesson4/StartFlow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/Lesson4/StartFlow.json -------------------------------------------------------------------------------- /packages/server/modelstore/Lesson6/Fractions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/Lesson6/Fractions.json -------------------------------------------------------------------------------- /packages/server/modelstore/Lesson6/Fractions101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/Lesson6/Fractions101.json -------------------------------------------------------------------------------- /packages/server/modelstore/Lesson6/Fractions102.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/Lesson6/Fractions102.json -------------------------------------------------------------------------------- /packages/server/modelstore/Lesson6/Fractions103.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/Lesson6/Fractions103.json -------------------------------------------------------------------------------- /packages/server/modelstore/Lesson6/StartFlow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/Lesson6/StartFlow.json -------------------------------------------------------------------------------- /packages/server/modelstore/Lesson6/TestB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/Lesson6/TestB.json -------------------------------------------------------------------------------- /packages/server/modelstore/Lesson6/TestBPublic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/Lesson6/TestBPublic.json -------------------------------------------------------------------------------- /packages/server/modelstore/Meta/LionCore.M3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/Meta/LionCore.M3.json -------------------------------------------------------------------------------- /packages/server/modelstore/Meta/LionCore.builtins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/Meta/LionCore.builtins.json -------------------------------------------------------------------------------- /packages/server/modelstore/Model7/extra23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/Model7/extra23.json -------------------------------------------------------------------------------- /packages/server/modelstore/Model7/modelUnit2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/Model7/modelUnit2.json -------------------------------------------------------------------------------- /packages/server/modelstore/Model7/unit9_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/Model7/unit9_1.json -------------------------------------------------------------------------------- /packages/server/modelstore/Model8/AnnesUnit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/Model8/AnnesUnit.json -------------------------------------------------------------------------------- /packages/server/modelstore/Model8/unit64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/Model8/unit64.json -------------------------------------------------------------------------------- /packages/server/modelstore/Model9/unit9_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/Model9/unit9_1.json -------------------------------------------------------------------------------- /packages/server/modelstore/PPP/Data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/PPP/Data.json -------------------------------------------------------------------------------- /packages/server/modelstore/PPP/Rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/PPP/Rules.json -------------------------------------------------------------------------------- /packages/server/modelstore/Rules1/AAA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/Rules1/AAA.json -------------------------------------------------------------------------------- /packages/server/modelstore/Rules1/Entities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/Rules1/Entities.json -------------------------------------------------------------------------------- /packages/server/modelstore/Rules1/House.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/Rules1/House.json -------------------------------------------------------------------------------- /packages/server/modelstore/Rules1/r1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/Rules1/r1.json -------------------------------------------------------------------------------- /packages/server/modelstore/Rules1/r2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/Rules1/r2.json -------------------------------------------------------------------------------- /packages/server/modelstore/StarterModel2/test1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/StarterModel2/test1.json -------------------------------------------------------------------------------- /packages/server/modelstore/StarterModel2/test2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/StarterModel2/test2.json -------------------------------------------------------------------------------- /packages/server/modelstore/StarterModel2/test3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/StarterModel2/test3.json -------------------------------------------------------------------------------- /packages/server/modelstore/StarterModel2/test4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/StarterModel2/test4.json -------------------------------------------------------------------------------- /packages/server/modelstore/__TEST__/hg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/__TEST__/hg.json -------------------------------------------------------------------------------- /packages/server/modelstore/__TEST__/xng.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/__TEST__/xng.json -------------------------------------------------------------------------------- /packages/server/modelstore/meta1/ExprLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/meta1/ExprLanguage.json -------------------------------------------------------------------------------- /packages/server/modelstore/new/unit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/new/unit.json -------------------------------------------------------------------------------- /packages/server/modelstore/store.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/store.json -------------------------------------------------------------------------------- /packages/server/modelstore/tutorial1/qw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/tutorial1/qw.json -------------------------------------------------------------------------------- /packages/server/modelstore/xxx/LargeUnit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/modelstore/xxx/LargeUnit.json -------------------------------------------------------------------------------- /packages/server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/package.json -------------------------------------------------------------------------------- /packages/server/src/__tests__/checkServer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/src/__tests__/checkServer.test.ts -------------------------------------------------------------------------------- /packages/server/src/bin/start-server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/src/bin/start-server.ts -------------------------------------------------------------------------------- /packages/server/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/src/index.ts -------------------------------------------------------------------------------- /packages/server/src/old-server/ModelRequests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/src/old-server/ModelRequests.ts -------------------------------------------------------------------------------- /packages/server/src/old-server/README.md: -------------------------------------------------------------------------------- 1 | # Old Server, saved in case old modelstore still needs it 2 | -------------------------------------------------------------------------------- /packages/server/src/old-server/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/src/old-server/config.ts -------------------------------------------------------------------------------- /packages/server/src/old-server/logging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/src/old-server/logging.ts -------------------------------------------------------------------------------- /packages/server/src/old-server/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/src/old-server/routes.ts -------------------------------------------------------------------------------- /packages/server/src/old-server/server-def.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/src/old-server/server-def.ts -------------------------------------------------------------------------------- /packages/server/src/old-server/server-starter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/src/old-server/server-starter.ts -------------------------------------------------------------------------------- /packages/server/src/server/FileUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/src/server/FileUtil.ts -------------------------------------------------------------------------------- /packages/server/src/server/ModelRequests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/src/server/ModelRequests.ts -------------------------------------------------------------------------------- /packages/server/src/server/StoreCatalog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/src/server/StoreCatalog.ts -------------------------------------------------------------------------------- /packages/server/src/server/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/src/server/config.ts -------------------------------------------------------------------------------- /packages/server/src/server/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/src/server/routes.ts -------------------------------------------------------------------------------- /packages/server/src/server/server-def.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/src/server/server-def.ts -------------------------------------------------------------------------------- /packages/server/src/server/server-starter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/src/server/server-starter.ts -------------------------------------------------------------------------------- /packages/server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/server/tsconfig.json -------------------------------------------------------------------------------- /packages/server/tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tslint.json" 3 | } -------------------------------------------------------------------------------- /packages/test-helpers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/test-helpers/README.md -------------------------------------------------------------------------------- /packages/test-helpers/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/test-helpers/package.json -------------------------------------------------------------------------------- /packages/test-helpers/src/FileUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/test-helpers/src/FileUtil.ts -------------------------------------------------------------------------------- /packages/test-helpers/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './FileUtil.js'; 2 | -------------------------------------------------------------------------------- /packages/test-helpers/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/test-helpers/tsconfig.json -------------------------------------------------------------------------------- /packages/test/extra-agl-types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/test/extra-agl-types.d.ts -------------------------------------------------------------------------------- /packages/test/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/test/package.json -------------------------------------------------------------------------------- /packages/test/src/UndoTester/__inputs__/first.und: -------------------------------------------------------------------------------- 1 | UndoUnit `myName` { 2 | prim "myText" 3 | numlist 1 4 | } 5 | -------------------------------------------------------------------------------- /packages/test/src/UndoTester/__inputs__/second.und: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/test/src/UndoTester/__inputs__/second.und -------------------------------------------------------------------------------- /packages/test/src/UndoTester/__inputs__/third.und: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/test/src/UndoTester/__inputs__/third.und -------------------------------------------------------------------------------- /packages/test/src/UndoTester/defs/editor.edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/test/src/UndoTester/defs/editor.edit -------------------------------------------------------------------------------- /packages/test/src/UndoTester/defs/structure.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/test/src/UndoTester/defs/structure.ast -------------------------------------------------------------------------------- /packages/test/src/ValidTest/defs/parser.edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/test/src/ValidTest/defs/parser.edit -------------------------------------------------------------------------------- /packages/test/src/ValidTest/defs/stackTrace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/test/src/ValidTest/defs/stackTrace.txt -------------------------------------------------------------------------------- /packages/test/src/ValidTest/defs/test-language.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/test/src/ValidTest/defs/test-language.ast -------------------------------------------------------------------------------- /packages/test/src/ValidTest/defs/valid-rules1.valid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/test/src/ValidTest/defs/valid-rules1.valid -------------------------------------------------------------------------------- /packages/test/src/demo/__tests__/DemoUnitCreator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/test/src/demo/__tests__/DemoUnitCreator.ts -------------------------------------------------------------------------------- /packages/test/src/demo/__tests__/HelperFunctions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/test/src/demo/__tests__/HelperFunctions.ts -------------------------------------------------------------------------------- /packages/test/src/demo/__tests__/Serializer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/test/src/demo/__tests__/Serializer.test.ts -------------------------------------------------------------------------------- /packages/test/src/demo/__tests__/checkTyper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/test/src/demo/__tests__/checkTyper.test.ts -------------------------------------------------------------------------------- /packages/test/src/demo/defs/LanguageDefinition.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/test/src/demo/defs/LanguageDefinition.ast -------------------------------------------------------------------------------- /packages/test/src/demo/defs/LanguageDefinition.edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/test/src/demo/defs/LanguageDefinition.edit -------------------------------------------------------------------------------- /packages/test/src/demo/defs/LanguageDefinition.type: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/test/src/demo/defs/LanguageDefinition.type -------------------------------------------------------------------------------- /packages/test/src/demo/utils/Utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/test/src/demo/utils/Utils.ts -------------------------------------------------------------------------------- /packages/test/src/demo/utils/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./Utils.js"; 2 | -------------------------------------------------------------------------------- /packages/test/src/octopus-small/defs/octopus-stdlib.ast: -------------------------------------------------------------------------------- 1 | language octopus 2 | 3 | concept OclIterator { 4 | name: identifier; 5 | } 6 | -------------------------------------------------------------------------------- /packages/test/src/scoperTest/defs/ScoperTest.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/test/src/scoperTest/defs/ScoperTest.ast -------------------------------------------------------------------------------- /packages/test/src/scoperTest/defs/ScoperTest.edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/test/src/scoperTest/defs/ScoperTest.edit -------------------------------------------------------------------------------- /packages/test/src/storage/__tests__/Storage.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/test/src/storage/__tests__/Storage.test.ts -------------------------------------------------------------------------------- /packages/test/src/storage/defs/entities.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/test/src/storage/defs/entities.ast -------------------------------------------------------------------------------- /packages/test/src/storage/defs/rules.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/test/src/storage/defs/rules.ast -------------------------------------------------------------------------------- /packages/test/src/storage/defs/rules.edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/test/src/storage/defs/rules.edit -------------------------------------------------------------------------------- /packages/test/src/storage/defs/rules.scope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/test/src/storage/defs/rules.scope -------------------------------------------------------------------------------- /packages/test/src/testNoParserAvailable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/test/src/testNoParserAvailable/README.md -------------------------------------------------------------------------------- /packages/test/src/testproject/defs/Testproject.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/test/src/testproject/defs/Testproject.ast -------------------------------------------------------------------------------- /packages/test/src/typer-test8/defs/projectY.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/test/src/typer-test8/defs/projectY.ast -------------------------------------------------------------------------------- /packages/test/src/typer-test8/defs/projectY.edit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/test/src/typer-test8/defs/projectY.edit -------------------------------------------------------------------------------- /packages/test/src/typer-test8/defs/projectY.type: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/test/src/typer-test8/defs/projectY.type -------------------------------------------------------------------------------- /packages/test/src/unparsedDemoModel1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/test/src/unparsedDemoModel1.txt -------------------------------------------------------------------------------- /packages/test/src/utils/FileHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/test/src/utils/FileHandler.ts -------------------------------------------------------------------------------- /packages/test/src/utils/HelperFunctions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/test/src/utils/HelperFunctions.ts -------------------------------------------------------------------------------- /packages/test/src/vehicles/__inputs__/test1.veh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/test/src/vehicles/__inputs__/test1.veh -------------------------------------------------------------------------------- /packages/test/src/vehicles/defs/Vehicles.ast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/test/src/vehicles/defs/Vehicles.ast -------------------------------------------------------------------------------- /packages/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/test/tsconfig.json -------------------------------------------------------------------------------- /packages/test/txt.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/test/txt.puml -------------------------------------------------------------------------------- /packages/test/unparsedDemoModel1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/test/unparsedDemoModel1.txt -------------------------------------------------------------------------------- /packages/test/unparsedDemoModel2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/test/unparsedDemoModel2.txt -------------------------------------------------------------------------------- /packages/tools/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/tools/README.txt -------------------------------------------------------------------------------- /packages/tools/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/tools/package.json -------------------------------------------------------------------------------- /packages/tools/src/WepAppConfigTemplate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/tools/src/WepAppConfigTemplate.ts -------------------------------------------------------------------------------- /packages/tools/src/dirvisitor/DirectoryWalker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/tools/src/dirvisitor/DirectoryWalker.ts -------------------------------------------------------------------------------- /packages/tools/src/dirvisitor/ListDirectories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/tools/src/dirvisitor/ListDirectories.ts -------------------------------------------------------------------------------- /packages/tools/src/dirvisitor/ListDirectory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/tools/src/dirvisitor/ListDirectory.ts -------------------------------------------------------------------------------- /packages/tools/src/dirvisitor/ModelStoreWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/tools/src/dirvisitor/ModelStoreWorker.ts -------------------------------------------------------------------------------- /packages/tools/src/functionbinding/Binding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/tools/src/functionbinding/Binding.ts -------------------------------------------------------------------------------- /packages/tools/src/json/JsonCompare2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/tools/src/json/JsonCompare2.ts -------------------------------------------------------------------------------- /packages/tools/src/json/LionwebM3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/tools/src/json/LionwebM3.ts -------------------------------------------------------------------------------- /packages/tools/src/json/jsonCompare.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/tools/src/json/jsonCompare.ts -------------------------------------------------------------------------------- /packages/tools/src/lionweb/builtins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/tools/src/lionweb/builtins.json -------------------------------------------------------------------------------- /packages/tools/src/lionweb/combined.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/tools/src/lionweb/combined.json -------------------------------------------------------------------------------- /packages/tools/src/lionweb/diff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/tools/src/lionweb/diff.txt -------------------------------------------------------------------------------- /packages/tools/src/lionweb/lion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/tools/src/lionweb/lion.json -------------------------------------------------------------------------------- /packages/tools/src/lionweb/std-builtins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/tools/src/lionweb/std-builtins.json -------------------------------------------------------------------------------- /packages/tools/src/lionweb/std-lioncore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/tools/src/lionweb/std-lioncore.json -------------------------------------------------------------------------------- /packages/tools/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/tools/tsconfig.json -------------------------------------------------------------------------------- /packages/tsnode-examples/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/tsnode-examples/package.json -------------------------------------------------------------------------------- /packages/tsnode-examples/src/Mixins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/tsnode-examples/src/Mixins.ts -------------------------------------------------------------------------------- /packages/tsnode-examples/src/Mixins2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/tsnode-examples/src/Mixins2.ts -------------------------------------------------------------------------------- /packages/tsnode-examples/src/One.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/tsnode-examples/src/One.ts -------------------------------------------------------------------------------- /packages/tsnode-examples/src/Props.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/tsnode-examples/src/Props.ts -------------------------------------------------------------------------------- /packages/tsnode-examples/src/TsLangMixins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/tsnode-examples/src/TsLangMixins.ts -------------------------------------------------------------------------------- /packages/tsnode-examples/src/delegation/Usage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/tsnode-examples/src/delegation/Usage.ts -------------------------------------------------------------------------------- /packages/tsnode-examples/src/generationgap/Usage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/tsnode-examples/src/generationgap/Usage.ts -------------------------------------------------------------------------------- /packages/tsnode-examples/src/testmerge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/tsnode-examples/src/testmerge.ts -------------------------------------------------------------------------------- /packages/tsnode-examples/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/tsnode-examples/tsconfig.json -------------------------------------------------------------------------------- /packages/webapp-flowbite/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/webapp-flowbite/.gitignore -------------------------------------------------------------------------------- /packages/webapp-flowbite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/webapp-flowbite/README.md -------------------------------------------------------------------------------- /packages/webapp-flowbite/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/webapp-flowbite/index.html -------------------------------------------------------------------------------- /packages/webapp-flowbite/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/webapp-flowbite/package.json -------------------------------------------------------------------------------- /packages/webapp-flowbite/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/webapp-flowbite/public/favicon.png -------------------------------------------------------------------------------- /packages/webapp-flowbite/public/freonlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/webapp-flowbite/public/freonlogo.svg -------------------------------------------------------------------------------- /packages/webapp-flowbite/src/externals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/webapp-flowbite/src/externals.ts -------------------------------------------------------------------------------- /packages/webapp-flowbite/src/global.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /packages/webapp-flowbite/src/loggers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/webapp-flowbite/src/loggers.ts -------------------------------------------------------------------------------- /packages/webapp-flowbite/src/starter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/webapp-flowbite/src/starter.ts -------------------------------------------------------------------------------- /packages/webapp-flowbite/styles/webapp-styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/webapp-flowbite/styles/webapp-styles.css -------------------------------------------------------------------------------- /packages/webapp-flowbite/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/webapp-flowbite/svelte.config.js -------------------------------------------------------------------------------- /packages/webapp-flowbite/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/webapp-flowbite/tsconfig.json -------------------------------------------------------------------------------- /packages/webapp-flowbite/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/webapp-flowbite/vite.config.ts -------------------------------------------------------------------------------- /packages/weblib-flowbite/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/weblib-flowbite/eslint.config.js -------------------------------------------------------------------------------- /packages/weblib-flowbite/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/weblib-flowbite/package.json -------------------------------------------------------------------------------- /packages/weblib-flowbite/src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/weblib-flowbite/src/app.css -------------------------------------------------------------------------------- /packages/weblib-flowbite/src/app.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/weblib-flowbite/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/weblib-flowbite/src/app.html -------------------------------------------------------------------------------- /packages/weblib-flowbite/src/demo.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/weblib-flowbite/src/demo.spec.ts -------------------------------------------------------------------------------- /packages/weblib-flowbite/src/hooks.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/weblib-flowbite/src/hooks.client.ts -------------------------------------------------------------------------------- /packages/weblib-flowbite/src/lib-only.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/weblib-flowbite/src/lib-only.css -------------------------------------------------------------------------------- /packages/weblib-flowbite/src/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/weblib-flowbite/src/lib/index.ts -------------------------------------------------------------------------------- /packages/weblib-flowbite/src/lib/language/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/weblib-flowbite/src/lib/language/index.ts -------------------------------------------------------------------------------- /packages/weblib-flowbite/src/lib/main-app/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/weblib-flowbite/src/lib/main-app/index.ts -------------------------------------------------------------------------------- /packages/weblib-flowbite/src/lib/stores/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/weblib-flowbite/src/lib/stores/index.ts -------------------------------------------------------------------------------- /packages/weblib-flowbite/src/lib/used-from-FB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/weblib-flowbite/src/lib/used-from-FB.md -------------------------------------------------------------------------------- /packages/weblib-flowbite/src/routes/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/weblib-flowbite/src/routes/+layout.svelte -------------------------------------------------------------------------------- /packages/weblib-flowbite/src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/weblib-flowbite/src/routes/+page.svelte -------------------------------------------------------------------------------- /packages/weblib-flowbite/src/theme-colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/weblib-flowbite/src/theme-colors.css -------------------------------------------------------------------------------- /packages/weblib-flowbite/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/weblib-flowbite/static/favicon.png -------------------------------------------------------------------------------- /packages/weblib-flowbite/static/freonlogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/weblib-flowbite/static/freonlogo.svg -------------------------------------------------------------------------------- /packages/weblib-flowbite/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/weblib-flowbite/svelte.config.js -------------------------------------------------------------------------------- /packages/weblib-flowbite/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/weblib-flowbite/tsconfig.json -------------------------------------------------------------------------------- /packages/weblib-flowbite/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/packages/weblib-flowbite/vite.config.ts -------------------------------------------------------------------------------- /public/images/projectit-logo-3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/public/images/projectit-logo-3d.png -------------------------------------------------------------------------------- /public/images/projectit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/public/images/projectit.png -------------------------------------------------------------------------------- /scripts/check-import-extensions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/scripts/check-import-extensions.sh -------------------------------------------------------------------------------- /scripts/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/scripts/cleanup.sh -------------------------------------------------------------------------------- /scripts/freon-profiling-dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/scripts/freon-profiling-dev.sh -------------------------------------------------------------------------------- /scripts/freon-samples-dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/scripts/freon-samples-dev.sh -------------------------------------------------------------------------------- /scripts/freon-test-dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/scripts/freon-test-dev.sh -------------------------------------------------------------------------------- /scripts/kill-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/scripts/kill-server.sh -------------------------------------------------------------------------------- /scripts/release-local-test-template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/scripts/release-local-test-template.sh -------------------------------------------------------------------------------- /scripts/release-local-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/scripts/release-local-test.sh -------------------------------------------------------------------------------- /storage/.verdaccio-db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/storage/.verdaccio-db.json -------------------------------------------------------------------------------- /tsconfig-base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/tsconfig-base.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freon4dsl/Freon4dsl/HEAD/tslint.json --------------------------------------------------------------------------------