├── .github └── FUNDING.yml ├── .gitignore ├── CONTRIBUTING.md ├── COPYRIGHT.TXT ├── Deprecation_and_Breaking_Changes.txt ├── Known_Issues.txt ├── LICENSE.TXT ├── README.md ├── TeaScript_SyntaxHighlighting_DarkMode_Notepad++.xml ├── TeaScript_SyntaxHighlighting_Notepad++.xml ├── changelog.txt ├── demo ├── MIT_LICENSE.txt ├── compile.props ├── compile_clang.sh ├── compile_gcc.sh ├── corelibrary_test03.tea ├── corelibrary_test04.tea ├── corelibrary_test05.tea ├── coroutine_demo.cpp ├── dir.tea ├── double_linked_list.tea ├── example_v0.12.tea ├── example_v0.13.tea ├── example_v0.14.tea ├── forall_test.tea ├── format_string.tea ├── gcd.tea ├── suspend_thread_demo.cpp ├── teascript_demo.cpp ├── teascript_demo.sln ├── teascript_demo.vcxproj ├── toml_test01.tea ├── tuple_demo.tea ├── web_client.tea ├── web_server.tea └── write_image.tea ├── extensions ├── include │ └── teascript │ │ └── ext │ │ ├── JsonAdapterBoost.hpp │ │ ├── JsonAdapterNlohmann.hpp │ │ └── JsonAdapterRapid.hpp ├── readme.txt └── source │ ├── JsonAdapterBoost.cpp │ ├── JsonAdapterNlohmann.cpp │ └── JsonAdapterRapid.cpp ├── include └── teascript │ ├── ASTNode.hpp │ ├── ASTNodeBase.hpp │ ├── ASTNodeFunc.hpp │ ├── ASTNodeTSVM.hpp │ ├── Collection.hpp │ ├── CompiledFunc.hpp │ ├── CompiledFuncBase.hpp │ ├── ConfigEnums.hpp │ ├── Content.hpp │ ├── Context.hpp │ ├── ContextFactory.hpp │ ├── ControlFlow.hpp │ ├── CoreLibrary.hpp │ ├── CoroutineScriptEngine.hpp │ ├── CoroutineScriptEngine_Impl.ipp │ ├── Dialect.hpp │ ├── Engine.hpp │ ├── EngineBase.hpp │ ├── Engine_Impl.ipp │ ├── Exception.hpp │ ├── Func.hpp │ ├── FunctionBase.hpp │ ├── IModule.hpp │ ├── IntegerSequence.hpp │ ├── JsonAdapterPico.hpp │ ├── JsonSupport.hpp │ ├── LibraryFunctions.hpp │ ├── Number.hpp │ ├── Parser.hpp │ ├── ParsingState.hpp │ ├── Print.hpp │ ├── Sequence.hpp │ ├── SourceLocation.hpp │ ├── StackMachine.hpp │ ├── StackVMCompiler.hpp │ ├── StackVMConstraints.hpp │ ├── StackVMInstructions.hpp │ ├── StackVMProgram.hpp │ ├── TomlSupport.hpp │ ├── TupleUtil.hpp │ ├── Type.hpp │ ├── TypeSystem.hpp │ ├── Types.hpp │ ├── UserCallbackFunc.hpp │ ├── Util.hpp │ ├── UtilContent.hpp │ ├── UtilInternal.hpp │ ├── ValueObject.hpp │ ├── thirdparty │ ├── PICOJSON_LICENSE │ └── picojson.h │ └── version.h ├── instructions.txt └── modules ├── include └── teascript │ └── modules │ └── WebPreview.hpp ├── readme.txt └── source └── WebPreview.cpp /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYRIGHT.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/COPYRIGHT.TXT -------------------------------------------------------------------------------- /Deprecation_and_Breaking_Changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/Deprecation_and_Breaking_Changes.txt -------------------------------------------------------------------------------- /Known_Issues.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/Known_Issues.txt -------------------------------------------------------------------------------- /LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/LICENSE.TXT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/README.md -------------------------------------------------------------------------------- /TeaScript_SyntaxHighlighting_DarkMode_Notepad++.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/TeaScript_SyntaxHighlighting_DarkMode_Notepad++.xml -------------------------------------------------------------------------------- /TeaScript_SyntaxHighlighting_Notepad++.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/TeaScript_SyntaxHighlighting_Notepad++.xml -------------------------------------------------------------------------------- /changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/changelog.txt -------------------------------------------------------------------------------- /demo/MIT_LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/demo/MIT_LICENSE.txt -------------------------------------------------------------------------------- /demo/compile.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/demo/compile.props -------------------------------------------------------------------------------- /demo/compile_clang.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/demo/compile_clang.sh -------------------------------------------------------------------------------- /demo/compile_gcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/demo/compile_gcc.sh -------------------------------------------------------------------------------- /demo/corelibrary_test03.tea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/demo/corelibrary_test03.tea -------------------------------------------------------------------------------- /demo/corelibrary_test04.tea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/demo/corelibrary_test04.tea -------------------------------------------------------------------------------- /demo/corelibrary_test05.tea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/demo/corelibrary_test05.tea -------------------------------------------------------------------------------- /demo/coroutine_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/demo/coroutine_demo.cpp -------------------------------------------------------------------------------- /demo/dir.tea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/demo/dir.tea -------------------------------------------------------------------------------- /demo/double_linked_list.tea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/demo/double_linked_list.tea -------------------------------------------------------------------------------- /demo/example_v0.12.tea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/demo/example_v0.12.tea -------------------------------------------------------------------------------- /demo/example_v0.13.tea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/demo/example_v0.13.tea -------------------------------------------------------------------------------- /demo/example_v0.14.tea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/demo/example_v0.14.tea -------------------------------------------------------------------------------- /demo/forall_test.tea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/demo/forall_test.tea -------------------------------------------------------------------------------- /demo/format_string.tea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/demo/format_string.tea -------------------------------------------------------------------------------- /demo/gcd.tea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/demo/gcd.tea -------------------------------------------------------------------------------- /demo/suspend_thread_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/demo/suspend_thread_demo.cpp -------------------------------------------------------------------------------- /demo/teascript_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/demo/teascript_demo.cpp -------------------------------------------------------------------------------- /demo/teascript_demo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/demo/teascript_demo.sln -------------------------------------------------------------------------------- /demo/teascript_demo.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/demo/teascript_demo.vcxproj -------------------------------------------------------------------------------- /demo/toml_test01.tea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/demo/toml_test01.tea -------------------------------------------------------------------------------- /demo/tuple_demo.tea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/demo/tuple_demo.tea -------------------------------------------------------------------------------- /demo/web_client.tea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/demo/web_client.tea -------------------------------------------------------------------------------- /demo/web_server.tea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/demo/web_server.tea -------------------------------------------------------------------------------- /demo/write_image.tea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/demo/write_image.tea -------------------------------------------------------------------------------- /extensions/include/teascript/ext/JsonAdapterBoost.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/extensions/include/teascript/ext/JsonAdapterBoost.hpp -------------------------------------------------------------------------------- /extensions/include/teascript/ext/JsonAdapterNlohmann.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/extensions/include/teascript/ext/JsonAdapterNlohmann.hpp -------------------------------------------------------------------------------- /extensions/include/teascript/ext/JsonAdapterRapid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/extensions/include/teascript/ext/JsonAdapterRapid.hpp -------------------------------------------------------------------------------- /extensions/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/extensions/readme.txt -------------------------------------------------------------------------------- /extensions/source/JsonAdapterBoost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/extensions/source/JsonAdapterBoost.cpp -------------------------------------------------------------------------------- /extensions/source/JsonAdapterNlohmann.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/extensions/source/JsonAdapterNlohmann.cpp -------------------------------------------------------------------------------- /extensions/source/JsonAdapterRapid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/extensions/source/JsonAdapterRapid.cpp -------------------------------------------------------------------------------- /include/teascript/ASTNode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/include/teascript/ASTNode.hpp -------------------------------------------------------------------------------- /include/teascript/ASTNodeBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/include/teascript/ASTNodeBase.hpp -------------------------------------------------------------------------------- /include/teascript/ASTNodeFunc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/include/teascript/ASTNodeFunc.hpp -------------------------------------------------------------------------------- /include/teascript/ASTNodeTSVM.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/include/teascript/ASTNodeTSVM.hpp -------------------------------------------------------------------------------- /include/teascript/Collection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/include/teascript/Collection.hpp -------------------------------------------------------------------------------- /include/teascript/CompiledFunc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/include/teascript/CompiledFunc.hpp -------------------------------------------------------------------------------- /include/teascript/CompiledFuncBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/include/teascript/CompiledFuncBase.hpp -------------------------------------------------------------------------------- /include/teascript/ConfigEnums.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/include/teascript/ConfigEnums.hpp -------------------------------------------------------------------------------- /include/teascript/Content.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/include/teascript/Content.hpp -------------------------------------------------------------------------------- /include/teascript/Context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/include/teascript/Context.hpp -------------------------------------------------------------------------------- /include/teascript/ContextFactory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/include/teascript/ContextFactory.hpp -------------------------------------------------------------------------------- /include/teascript/ControlFlow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/include/teascript/ControlFlow.hpp -------------------------------------------------------------------------------- /include/teascript/CoreLibrary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/include/teascript/CoreLibrary.hpp -------------------------------------------------------------------------------- /include/teascript/CoroutineScriptEngine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/include/teascript/CoroutineScriptEngine.hpp -------------------------------------------------------------------------------- /include/teascript/CoroutineScriptEngine_Impl.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/include/teascript/CoroutineScriptEngine_Impl.ipp -------------------------------------------------------------------------------- /include/teascript/Dialect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/include/teascript/Dialect.hpp -------------------------------------------------------------------------------- /include/teascript/Engine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/include/teascript/Engine.hpp -------------------------------------------------------------------------------- /include/teascript/EngineBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/include/teascript/EngineBase.hpp -------------------------------------------------------------------------------- /include/teascript/Engine_Impl.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/include/teascript/Engine_Impl.ipp -------------------------------------------------------------------------------- /include/teascript/Exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/include/teascript/Exception.hpp -------------------------------------------------------------------------------- /include/teascript/Func.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/include/teascript/Func.hpp -------------------------------------------------------------------------------- /include/teascript/FunctionBase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/include/teascript/FunctionBase.hpp -------------------------------------------------------------------------------- /include/teascript/IModule.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/include/teascript/IModule.hpp -------------------------------------------------------------------------------- /include/teascript/IntegerSequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/include/teascript/IntegerSequence.hpp -------------------------------------------------------------------------------- /include/teascript/JsonAdapterPico.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/include/teascript/JsonAdapterPico.hpp -------------------------------------------------------------------------------- /include/teascript/JsonSupport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/include/teascript/JsonSupport.hpp -------------------------------------------------------------------------------- /include/teascript/LibraryFunctions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/include/teascript/LibraryFunctions.hpp -------------------------------------------------------------------------------- /include/teascript/Number.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/include/teascript/Number.hpp -------------------------------------------------------------------------------- /include/teascript/Parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/include/teascript/Parser.hpp -------------------------------------------------------------------------------- /include/teascript/ParsingState.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/include/teascript/ParsingState.hpp -------------------------------------------------------------------------------- /include/teascript/Print.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/include/teascript/Print.hpp -------------------------------------------------------------------------------- /include/teascript/Sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/include/teascript/Sequence.hpp -------------------------------------------------------------------------------- /include/teascript/SourceLocation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/include/teascript/SourceLocation.hpp -------------------------------------------------------------------------------- /include/teascript/StackMachine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/include/teascript/StackMachine.hpp -------------------------------------------------------------------------------- /include/teascript/StackVMCompiler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/include/teascript/StackVMCompiler.hpp -------------------------------------------------------------------------------- /include/teascript/StackVMConstraints.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/include/teascript/StackVMConstraints.hpp -------------------------------------------------------------------------------- /include/teascript/StackVMInstructions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/include/teascript/StackVMInstructions.hpp -------------------------------------------------------------------------------- /include/teascript/StackVMProgram.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/include/teascript/StackVMProgram.hpp -------------------------------------------------------------------------------- /include/teascript/TomlSupport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/include/teascript/TomlSupport.hpp -------------------------------------------------------------------------------- /include/teascript/TupleUtil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/include/teascript/TupleUtil.hpp -------------------------------------------------------------------------------- /include/teascript/Type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/include/teascript/Type.hpp -------------------------------------------------------------------------------- /include/teascript/TypeSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/include/teascript/TypeSystem.hpp -------------------------------------------------------------------------------- /include/teascript/Types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/include/teascript/Types.hpp -------------------------------------------------------------------------------- /include/teascript/UserCallbackFunc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/include/teascript/UserCallbackFunc.hpp -------------------------------------------------------------------------------- /include/teascript/Util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/include/teascript/Util.hpp -------------------------------------------------------------------------------- /include/teascript/UtilContent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/include/teascript/UtilContent.hpp -------------------------------------------------------------------------------- /include/teascript/UtilInternal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/include/teascript/UtilInternal.hpp -------------------------------------------------------------------------------- /include/teascript/ValueObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/include/teascript/ValueObject.hpp -------------------------------------------------------------------------------- /include/teascript/thirdparty/PICOJSON_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/include/teascript/thirdparty/PICOJSON_LICENSE -------------------------------------------------------------------------------- /include/teascript/thirdparty/picojson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/include/teascript/thirdparty/picojson.h -------------------------------------------------------------------------------- /include/teascript/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/include/teascript/version.h -------------------------------------------------------------------------------- /instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/instructions.txt -------------------------------------------------------------------------------- /modules/include/teascript/modules/WebPreview.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/modules/include/teascript/modules/WebPreview.hpp -------------------------------------------------------------------------------- /modules/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/modules/readme.txt -------------------------------------------------------------------------------- /modules/source/WebPreview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Florian-Thake/TeaScript-Cpp-Library/HEAD/modules/source/WebPreview.cpp --------------------------------------------------------------------------------