├── .github └── workflows │ ├── build.yml │ └── cmake.yml ├── .gitignore ├── .gitlab-ci.yml ├── AEC_specification.html ├── AECforWebAssembly.cpp ├── AVLInAEC ├── AVLInAEC.aec ├── AVLInAEC.html ├── README.md └── avl_api.js ├── AssemblyCode.cpp ├── Bilbo_Infokup2013 ├── README.md ├── bilbo.aec └── bilbo.html ├── CMakeLists.txt ├── CorruptCompilationContextException.cpp ├── HavlikLaw ├── README.md ├── havlik.aec └── havlik.js ├── HuffmanCodingInAEC ├── HuffmanCodingInAEC.aec ├── HuffmanCodingInAEC.html ├── README.md └── automaticTest.js ├── Hurwitz ├── README.md ├── hurwitz.aec └── hurwitz.html ├── HybridSort ├── HybridSort.aec ├── HybridSort.js ├── README.md └── rezultati_mjerenja.jpg ├── InvalidTypenameException.cpp ├── JSONhelpers.cpp ├── LICENSE ├── NotImplementedException.cpp ├── README.md ├── RedBlackTree ├── README.md ├── RedBlackTree.aec ├── RedBlackTree.html └── rbt_api.js ├── Roman_numerals ├── README.md ├── roman_numerals.aec └── roman_numerals.html ├── Roman_to_Decimal ├── README.md ├── roman_to_decimal.aec └── roman_to_decimal.html ├── SplayTree ├── README.md ├── SplayTree.aec ├── SplayTree.html └── splay_api.js ├── TreeNode.cpp ├── TreeRootNode.cpp ├── alignedAccessTest.aec ├── alignedAccessTest.js ├── analogClock ├── README.md ├── analogClock.aec ├── analogClock.html └── analogClock.js ├── arithmeticOperatorsTest ├── README.md ├── arithmeticOperatorsTest.aec └── arithmeticOperatorsTest.html ├── birthday_paradox ├── README.md ├── birthday_paradox.aec └── birthday_paradox.html ├── bitManipulations.cpp ├── break_and_continue_test.aec ├── break_and_continue_test.js ├── chainedComparisonWithSideEffects ├── README.md ├── chainedComparisonWithSideEffects.aec └── chainedComparisonWithSideEffects.js ├── chainedComparisonsTest.aec ├── chainedComparisonsTest.js ├── compiler.cpp ├── compilingContext.cpp ├── dragonCurve ├── README.md ├── dragonCurve.aec ├── dragonCurve.html └── screenshot.png ├── emptyFunctionTest.aec ├── euclidTest ├── README.md ├── euclidTest.aec └── euclidTest.html ├── globalVariablesDeclarationTest.aec ├── hello_world_from_wasi ├── README.md └── hello_world_from_wasi.aec ├── leftHandSideConditionalTest.aec ├── leftHandSideConditionalTest.js ├── lgtm.yml ├── logo.PNG ├── mcafee-screenshot.png ├── multiLineStringTest.aec ├── multiLineStringTest.js ├── multiplying-strings-aec ├── README.md ├── multiplying-strings-aec.aec └── multiplying-strings-aec.html ├── nQueensPuzzle ├── README.md ├── nQueensPuzzle.aec ├── nQueensPuzzle.dart ├── nQueensPuzzle.html └── nQueensPuzzle.py ├── namedArgumentsTest.aec ├── namedArgumentsTest.js ├── package.json ├── parser.cpp ├── permutationsTest ├── README.md ├── permutationsTest.aec └── permutationsTest.html ├── recursionTest ├── README.md ├── recursionTest.aec └── recursionTest.html ├── semanticAnalyzer.cpp ├── sonar-project.properties ├── stringManipulationHelperFunctions.cpp ├── structureDeclarationTest.aec ├── structureDeclarationTest.js ├── syntaxHighlighterForAEC.js ├── tests.cpp ├── tokenizer.cpp ├── typeOfTest.aec └── typeOfTest.js /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/cmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/.github/workflows/cmake.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /AEC_specification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/AEC_specification.html -------------------------------------------------------------------------------- /AECforWebAssembly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/AECforWebAssembly.cpp -------------------------------------------------------------------------------- /AVLInAEC/AVLInAEC.aec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/AVLInAEC/AVLInAEC.aec -------------------------------------------------------------------------------- /AVLInAEC/AVLInAEC.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/AVLInAEC/AVLInAEC.html -------------------------------------------------------------------------------- /AVLInAEC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/AVLInAEC/README.md -------------------------------------------------------------------------------- /AVLInAEC/avl_api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/AVLInAEC/avl_api.js -------------------------------------------------------------------------------- /AssemblyCode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/AssemblyCode.cpp -------------------------------------------------------------------------------- /Bilbo_Infokup2013/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/Bilbo_Infokup2013/README.md -------------------------------------------------------------------------------- /Bilbo_Infokup2013/bilbo.aec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/Bilbo_Infokup2013/bilbo.aec -------------------------------------------------------------------------------- /Bilbo_Infokup2013/bilbo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/Bilbo_Infokup2013/bilbo.html -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CorruptCompilationContextException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/CorruptCompilationContextException.cpp -------------------------------------------------------------------------------- /HavlikLaw/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/HavlikLaw/README.md -------------------------------------------------------------------------------- /HavlikLaw/havlik.aec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/HavlikLaw/havlik.aec -------------------------------------------------------------------------------- /HavlikLaw/havlik.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/HavlikLaw/havlik.js -------------------------------------------------------------------------------- /HuffmanCodingInAEC/HuffmanCodingInAEC.aec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/HuffmanCodingInAEC/HuffmanCodingInAEC.aec -------------------------------------------------------------------------------- /HuffmanCodingInAEC/HuffmanCodingInAEC.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/HuffmanCodingInAEC/HuffmanCodingInAEC.html -------------------------------------------------------------------------------- /HuffmanCodingInAEC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/HuffmanCodingInAEC/README.md -------------------------------------------------------------------------------- /HuffmanCodingInAEC/automaticTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/HuffmanCodingInAEC/automaticTest.js -------------------------------------------------------------------------------- /Hurwitz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/Hurwitz/README.md -------------------------------------------------------------------------------- /Hurwitz/hurwitz.aec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/Hurwitz/hurwitz.aec -------------------------------------------------------------------------------- /Hurwitz/hurwitz.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/Hurwitz/hurwitz.html -------------------------------------------------------------------------------- /HybridSort/HybridSort.aec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/HybridSort/HybridSort.aec -------------------------------------------------------------------------------- /HybridSort/HybridSort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/HybridSort/HybridSort.js -------------------------------------------------------------------------------- /HybridSort/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/HybridSort/README.md -------------------------------------------------------------------------------- /HybridSort/rezultati_mjerenja.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/HybridSort/rezultati_mjerenja.jpg -------------------------------------------------------------------------------- /InvalidTypenameException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/InvalidTypenameException.cpp -------------------------------------------------------------------------------- /JSONhelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/JSONhelpers.cpp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/LICENSE -------------------------------------------------------------------------------- /NotImplementedException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/NotImplementedException.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/README.md -------------------------------------------------------------------------------- /RedBlackTree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/RedBlackTree/README.md -------------------------------------------------------------------------------- /RedBlackTree/RedBlackTree.aec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/RedBlackTree/RedBlackTree.aec -------------------------------------------------------------------------------- /RedBlackTree/RedBlackTree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/RedBlackTree/RedBlackTree.html -------------------------------------------------------------------------------- /RedBlackTree/rbt_api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/RedBlackTree/rbt_api.js -------------------------------------------------------------------------------- /Roman_numerals/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/Roman_numerals/README.md -------------------------------------------------------------------------------- /Roman_numerals/roman_numerals.aec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/Roman_numerals/roman_numerals.aec -------------------------------------------------------------------------------- /Roman_numerals/roman_numerals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/Roman_numerals/roman_numerals.html -------------------------------------------------------------------------------- /Roman_to_Decimal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/Roman_to_Decimal/README.md -------------------------------------------------------------------------------- /Roman_to_Decimal/roman_to_decimal.aec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/Roman_to_Decimal/roman_to_decimal.aec -------------------------------------------------------------------------------- /Roman_to_Decimal/roman_to_decimal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/Roman_to_Decimal/roman_to_decimal.html -------------------------------------------------------------------------------- /SplayTree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/SplayTree/README.md -------------------------------------------------------------------------------- /SplayTree/SplayTree.aec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/SplayTree/SplayTree.aec -------------------------------------------------------------------------------- /SplayTree/SplayTree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/SplayTree/SplayTree.html -------------------------------------------------------------------------------- /SplayTree/splay_api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/SplayTree/splay_api.js -------------------------------------------------------------------------------- /TreeNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/TreeNode.cpp -------------------------------------------------------------------------------- /TreeRootNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/TreeRootNode.cpp -------------------------------------------------------------------------------- /alignedAccessTest.aec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/alignedAccessTest.aec -------------------------------------------------------------------------------- /alignedAccessTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/alignedAccessTest.js -------------------------------------------------------------------------------- /analogClock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/analogClock/README.md -------------------------------------------------------------------------------- /analogClock/analogClock.aec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/analogClock/analogClock.aec -------------------------------------------------------------------------------- /analogClock/analogClock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/analogClock/analogClock.html -------------------------------------------------------------------------------- /analogClock/analogClock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/analogClock/analogClock.js -------------------------------------------------------------------------------- /arithmeticOperatorsTest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/arithmeticOperatorsTest/README.md -------------------------------------------------------------------------------- /arithmeticOperatorsTest/arithmeticOperatorsTest.aec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/arithmeticOperatorsTest/arithmeticOperatorsTest.aec -------------------------------------------------------------------------------- /arithmeticOperatorsTest/arithmeticOperatorsTest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/arithmeticOperatorsTest/arithmeticOperatorsTest.html -------------------------------------------------------------------------------- /birthday_paradox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/birthday_paradox/README.md -------------------------------------------------------------------------------- /birthday_paradox/birthday_paradox.aec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/birthday_paradox/birthday_paradox.aec -------------------------------------------------------------------------------- /birthday_paradox/birthday_paradox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/birthday_paradox/birthday_paradox.html -------------------------------------------------------------------------------- /bitManipulations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/bitManipulations.cpp -------------------------------------------------------------------------------- /break_and_continue_test.aec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/break_and_continue_test.aec -------------------------------------------------------------------------------- /break_and_continue_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/break_and_continue_test.js -------------------------------------------------------------------------------- /chainedComparisonWithSideEffects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/chainedComparisonWithSideEffects/README.md -------------------------------------------------------------------------------- /chainedComparisonWithSideEffects/chainedComparisonWithSideEffects.aec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/chainedComparisonWithSideEffects/chainedComparisonWithSideEffects.aec -------------------------------------------------------------------------------- /chainedComparisonWithSideEffects/chainedComparisonWithSideEffects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/chainedComparisonWithSideEffects/chainedComparisonWithSideEffects.js -------------------------------------------------------------------------------- /chainedComparisonsTest.aec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/chainedComparisonsTest.aec -------------------------------------------------------------------------------- /chainedComparisonsTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/chainedComparisonsTest.js -------------------------------------------------------------------------------- /compiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/compiler.cpp -------------------------------------------------------------------------------- /compilingContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/compilingContext.cpp -------------------------------------------------------------------------------- /dragonCurve/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/dragonCurve/README.md -------------------------------------------------------------------------------- /dragonCurve/dragonCurve.aec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/dragonCurve/dragonCurve.aec -------------------------------------------------------------------------------- /dragonCurve/dragonCurve.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/dragonCurve/dragonCurve.html -------------------------------------------------------------------------------- /dragonCurve/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/dragonCurve/screenshot.png -------------------------------------------------------------------------------- /emptyFunctionTest.aec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/emptyFunctionTest.aec -------------------------------------------------------------------------------- /euclidTest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/euclidTest/README.md -------------------------------------------------------------------------------- /euclidTest/euclidTest.aec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/euclidTest/euclidTest.aec -------------------------------------------------------------------------------- /euclidTest/euclidTest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/euclidTest/euclidTest.html -------------------------------------------------------------------------------- /globalVariablesDeclarationTest.aec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/globalVariablesDeclarationTest.aec -------------------------------------------------------------------------------- /hello_world_from_wasi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/hello_world_from_wasi/README.md -------------------------------------------------------------------------------- /hello_world_from_wasi/hello_world_from_wasi.aec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/hello_world_from_wasi/hello_world_from_wasi.aec -------------------------------------------------------------------------------- /leftHandSideConditionalTest.aec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/leftHandSideConditionalTest.aec -------------------------------------------------------------------------------- /leftHandSideConditionalTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/leftHandSideConditionalTest.js -------------------------------------------------------------------------------- /lgtm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/lgtm.yml -------------------------------------------------------------------------------- /logo.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/logo.PNG -------------------------------------------------------------------------------- /mcafee-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/mcafee-screenshot.png -------------------------------------------------------------------------------- /multiLineStringTest.aec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/multiLineStringTest.aec -------------------------------------------------------------------------------- /multiLineStringTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/multiLineStringTest.js -------------------------------------------------------------------------------- /multiplying-strings-aec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/multiplying-strings-aec/README.md -------------------------------------------------------------------------------- /multiplying-strings-aec/multiplying-strings-aec.aec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/multiplying-strings-aec/multiplying-strings-aec.aec -------------------------------------------------------------------------------- /multiplying-strings-aec/multiplying-strings-aec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/multiplying-strings-aec/multiplying-strings-aec.html -------------------------------------------------------------------------------- /nQueensPuzzle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/nQueensPuzzle/README.md -------------------------------------------------------------------------------- /nQueensPuzzle/nQueensPuzzle.aec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/nQueensPuzzle/nQueensPuzzle.aec -------------------------------------------------------------------------------- /nQueensPuzzle/nQueensPuzzle.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/nQueensPuzzle/nQueensPuzzle.dart -------------------------------------------------------------------------------- /nQueensPuzzle/nQueensPuzzle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/nQueensPuzzle/nQueensPuzzle.html -------------------------------------------------------------------------------- /nQueensPuzzle/nQueensPuzzle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/nQueensPuzzle/nQueensPuzzle.py -------------------------------------------------------------------------------- /namedArgumentsTest.aec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/namedArgumentsTest.aec -------------------------------------------------------------------------------- /namedArgumentsTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/namedArgumentsTest.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/package.json -------------------------------------------------------------------------------- /parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/parser.cpp -------------------------------------------------------------------------------- /permutationsTest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/permutationsTest/README.md -------------------------------------------------------------------------------- /permutationsTest/permutationsTest.aec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/permutationsTest/permutationsTest.aec -------------------------------------------------------------------------------- /permutationsTest/permutationsTest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/permutationsTest/permutationsTest.html -------------------------------------------------------------------------------- /recursionTest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/recursionTest/README.md -------------------------------------------------------------------------------- /recursionTest/recursionTest.aec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/recursionTest/recursionTest.aec -------------------------------------------------------------------------------- /recursionTest/recursionTest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/recursionTest/recursionTest.html -------------------------------------------------------------------------------- /semanticAnalyzer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/semanticAnalyzer.cpp -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /stringManipulationHelperFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/stringManipulationHelperFunctions.cpp -------------------------------------------------------------------------------- /structureDeclarationTest.aec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/structureDeclarationTest.aec -------------------------------------------------------------------------------- /structureDeclarationTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/structureDeclarationTest.js -------------------------------------------------------------------------------- /syntaxHighlighterForAEC.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/syntaxHighlighterForAEC.js -------------------------------------------------------------------------------- /tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/tests.cpp -------------------------------------------------------------------------------- /tokenizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/tokenizer.cpp -------------------------------------------------------------------------------- /typeOfTest.aec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/typeOfTest.aec -------------------------------------------------------------------------------- /typeOfTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlatAssembler/AECforWebAssembly/HEAD/typeOfTest.js --------------------------------------------------------------------------------