├── .gitattributes ├── .gitignore ├── .vs └── Cs2Dsl │ ├── FileContentIndex │ ├── a247ea85-bfec-47d5-b803-86ba2a1c3f64.vsidx │ └── read.lock │ ├── v15 │ └── Server │ │ └── sqlite3 │ │ ├── db.lock │ │ ├── storage.ide │ │ ├── storage.ide-shm │ │ └── storage.ide-wal │ └── xs │ ├── UserPrefs.xml │ └── sqlite3 │ ├── db.lock │ ├── storage.ide │ ├── storage.ide-shm │ └── storage.ide-wal ├── AnalysisHelper ├── BreakAnalysis.cs ├── ContinueAnalysis.cs ├── DslKeywordsReplacer.cs ├── FieldInitializerAnalysis.cs ├── InnerClassAnalysis.cs ├── LocalVariableAccessAnalysis.cs ├── ReturnAnalysis.cs ├── TryCatchUsingAnalysis.cs ├── TypeAnalysis.cs └── YieldAnalysis.cs ├── App.config ├── Cs2Dsl.csproj ├── Cs2Dsl.sln ├── Cs2DslUtility ├── Cs2DslUtility.csproj ├── Main.cs └── bin │ └── Debug │ ├── Cs2DslUtility.dll │ └── Cs2DslUtility.pdb ├── CsToDsl ├── CsToDsl.cs ├── CsToDslProcessor.cs ├── CsToDslUnimplemented.cs ├── CsToDsl_CoreSyntax.cs ├── CsToDsl_Exception.cs ├── CsToDsl_Expression.cs ├── CsToDsl_Linq.cs ├── CsToDsl_Misc.cs ├── CsToDsl_Object.cs ├── CsToDsl_Statement.cs └── Logger.cs ├── Generator ├── JsGenerator.cs ├── LuaGenerator.cs ├── LuaGenerator_Helper.cs └── LuaGenerator_Main.cs ├── Getting Started - Semantic Analysis (CSharp).pdf ├── Getting Started - Syntax Analysis (CSharp).pdf ├── Getting Started - Syntax Transformation (CSharp).pdf ├── Info ├── ClassInfo.cs ├── ClassSymbolInfo.cs ├── InvocationInfo.cs ├── MethodInfo.cs ├── MiscInfo.cs ├── StringMatcher.cs ├── SymbolTable.cs └── TypeChecker.cs ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── README.md ├── bin └── Debug │ ├── Cs2Dsl.exe │ ├── Cs2Dsl.exe.config │ ├── Cs2Dsl.pdb │ ├── Cs2Dsl.vshost.exe │ ├── Cs2Dsl.vshost.exe.config │ ├── Cs2Dsl.vshost.exe.manifest │ ├── Cs2DslUtility.dll │ ├── Cs2DslUtility.pdb │ ├── Dsl.dll │ ├── Dsl.instr.pdb │ ├── Dsl.pdb │ ├── Microsoft.CodeAnalysis.CSharp.dll │ ├── Microsoft.CodeAnalysis.dll │ ├── System.Buffers.dll │ ├── System.Collections.Immutable.dll │ ├── System.Memory.dll │ ├── System.Numerics.Vectors.dll │ ├── System.Reflection.Metadata.dll │ ├── System.Runtime.CompilerServices.Unsafe.dll │ ├── System.Text.Encoding.CodePages.dll │ ├── System.Threading.Tasks.Extensions.dll │ ├── cs2dsl.dsl │ ├── dsl │ ├── cs2dsl__attributes.dsl │ ├── cs2dsl__externenums.dsl │ ├── cs2dsl__interfaces.dsl │ ├── cs2dsl__namespaces.dsl │ ├── cs2dsl__references.txt │ ├── cs2js__attributes.txt │ ├── cs2js__externenums.txt │ ├── cs2js__interfaces.txt │ ├── cs2js__namespaces.txt │ ├── mandelbrot.dsl │ └── mandelbrot.txt │ ├── generator.dsl │ ├── jslib │ └── utility.html │ ├── log │ ├── Generator.log │ ├── SemanticError.log │ ├── SemanticWarning.log │ ├── SymbolChecker.log │ ├── SyntaxError.log │ ├── SyntaxWarning.log │ └── Translation.log │ ├── lua │ ├── perftest.lua │ └── test.lua │ ├── lualib │ ├── cs2luatypeimpl.lua │ ├── lualib_basic.lua │ ├── lualib_valuetypescript.lua │ └── syslib.lua │ ├── rewriter.dsl │ ├── symbol.txt │ ├── test.bat │ ├── test.cs │ ├── test_delegate.cs │ ├── test_extension.cs │ ├── test_generic.cs │ ├── test_js.cs │ ├── test_mangling.cs │ ├── test_vs2017.cs │ └── testjs.bat ├── copy.bat └── dep ├── Cs2DslUtility.dll ├── Dsl.dll ├── Dsl.pdb ├── DslCalculator.cs ├── Microsoft.CodeAnalysis.CSharp.Scripting.dll ├── Microsoft.CodeAnalysis.CSharp.dll ├── Microsoft.CodeAnalysis.Scripting.dll ├── Microsoft.CodeAnalysis.VisualBasic.dll ├── Microsoft.CodeAnalysis.dll ├── Microsoft.DiaSymReader.Native.amd64.dll ├── Microsoft.DiaSymReader.Native.arm64.dll ├── Microsoft.DiaSymReader.Native.x86.dll ├── Slua ├── Editor.meta ├── Editor │ ├── CustomEditor.cs │ ├── CustomEditor.cs.meta │ ├── CustomExport.cs │ ├── CustomExport.cs.meta │ ├── LuaCodeGen.cs │ ├── LuaCodeGen.cs.meta │ ├── LuaConsole.cs │ ├── LuaConsole.cs.meta │ ├── MemoryProfilerWindow.cs │ ├── MemoryProfilerWindow.cs.meta │ ├── ModuleSelector.cs │ ├── ModuleSelector.cs.meta │ ├── SluaEditorUtility.cs │ └── SluaEditorUtility.cs.meta ├── Meta.meta └── Meta │ ├── Resources.meta │ └── Resources │ ├── lua3rdmeta.asset │ ├── lua3rdmeta.asset.meta │ ├── luadebug.txt │ ├── luadebug.txt.meta │ ├── setting.asset │ └── setting.asset.meta ├── SluaManaged ├── SluaManaged.sln └── SluaManaged │ ├── Properties │ └── AssemblyInfo.cs │ ├── SluaManaged.csproj │ ├── Slua_Managed │ ├── ByteArray.cs │ ├── Coroutine.cs │ ├── Helper.cs │ ├── Logger.cs │ ├── Lua3rdDLL.cs │ ├── Lua3rdMeta.cs │ ├── LuaArray.cs │ ├── LuaByteArray.cs │ ├── LuaDLL.cs │ ├── LuaDLLWrapper.cs │ ├── LuaObject.cs │ ├── LuaObject_basetype.cs │ ├── LuaObject_overload.cs │ ├── LuaState.cs │ ├── LuaSvr.cs │ ├── LuaSvrGameObject.cs │ ├── LuaVarObject.cs │ ├── ObjectCache.cs │ ├── SLuaSetting.cs │ ├── Timer.cs │ └── WeakDictionary.cs │ └── bin │ └── Debug │ ├── SluaManaged.dll │ ├── SluaManaged.dll.mdb │ ├── SluaManaged.pdb │ ├── UnityEditor.dll │ ├── UnityEngine.UI.dll │ └── UnityEngine.dll ├── System.Buffers.dll ├── System.Collections.Immutable.dll ├── System.Memory.dll ├── System.Numerics.Vectors.dll ├── System.Reflection.Metadata.dll ├── System.Runtime.CompilerServices.Unsafe.dll ├── System.Text.Encoding.CodePages.dll ├── System.Threading.Tasks.Extensions.dll ├── debug_with_zerobrane_win_x64_and_mac ├── CopyToUnityProjectDir │ ├── lualibs │ │ ├── ltn12.lua │ │ ├── mime.lua │ │ ├── mobdebug │ │ │ └── mobdebug.lua │ │ ├── socket.lua │ │ ├── socket │ │ │ ├── ftp.lua │ │ │ ├── headers.lua │ │ │ ├── http.lua │ │ │ ├── smtp.lua │ │ │ ├── tp.lua │ │ │ └── url.lua │ │ ├── ssl.lua │ │ └── ssl │ │ │ └── https.lua │ ├── mime.dll │ ├── mime.so │ ├── socket.dll │ └── socket.so └── CopyToUnity_Assets_Slua_Resources │ └── luadebug.txt └── slua-1.6.2 └── build ├── make_win_x64_debug.bat ├── make_win_x86_debug.bat ├── slua.c └── snapshot.c /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/.gitignore -------------------------------------------------------------------------------- /.vs/Cs2Dsl/FileContentIndex/a247ea85-bfec-47d5-b803-86ba2a1c3f64.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/.vs/Cs2Dsl/FileContentIndex/a247ea85-bfec-47d5-b803-86ba2a1c3f64.vsidx -------------------------------------------------------------------------------- /.vs/Cs2Dsl/FileContentIndex/read.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vs/Cs2Dsl/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vs/Cs2Dsl/v15/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/.vs/Cs2Dsl/v15/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /.vs/Cs2Dsl/v15/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/.vs/Cs2Dsl/v15/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /.vs/Cs2Dsl/v15/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/.vs/Cs2Dsl/v15/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /.vs/Cs2Dsl/xs/UserPrefs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/.vs/Cs2Dsl/xs/UserPrefs.xml -------------------------------------------------------------------------------- /.vs/Cs2Dsl/xs/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vs/Cs2Dsl/xs/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/.vs/Cs2Dsl/xs/sqlite3/storage.ide -------------------------------------------------------------------------------- /.vs/Cs2Dsl/xs/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/.vs/Cs2Dsl/xs/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /.vs/Cs2Dsl/xs/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/.vs/Cs2Dsl/xs/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /AnalysisHelper/BreakAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/AnalysisHelper/BreakAnalysis.cs -------------------------------------------------------------------------------- /AnalysisHelper/ContinueAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/AnalysisHelper/ContinueAnalysis.cs -------------------------------------------------------------------------------- /AnalysisHelper/DslKeywordsReplacer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/AnalysisHelper/DslKeywordsReplacer.cs -------------------------------------------------------------------------------- /AnalysisHelper/FieldInitializerAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/AnalysisHelper/FieldInitializerAnalysis.cs -------------------------------------------------------------------------------- /AnalysisHelper/InnerClassAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/AnalysisHelper/InnerClassAnalysis.cs -------------------------------------------------------------------------------- /AnalysisHelper/LocalVariableAccessAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/AnalysisHelper/LocalVariableAccessAnalysis.cs -------------------------------------------------------------------------------- /AnalysisHelper/ReturnAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/AnalysisHelper/ReturnAnalysis.cs -------------------------------------------------------------------------------- /AnalysisHelper/TryCatchUsingAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/AnalysisHelper/TryCatchUsingAnalysis.cs -------------------------------------------------------------------------------- /AnalysisHelper/TypeAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/AnalysisHelper/TypeAnalysis.cs -------------------------------------------------------------------------------- /AnalysisHelper/YieldAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/AnalysisHelper/YieldAnalysis.cs -------------------------------------------------------------------------------- /App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/App.config -------------------------------------------------------------------------------- /Cs2Dsl.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/Cs2Dsl.csproj -------------------------------------------------------------------------------- /Cs2Dsl.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/Cs2Dsl.sln -------------------------------------------------------------------------------- /Cs2DslUtility/Cs2DslUtility.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/Cs2DslUtility/Cs2DslUtility.csproj -------------------------------------------------------------------------------- /Cs2DslUtility/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/Cs2DslUtility/Main.cs -------------------------------------------------------------------------------- /Cs2DslUtility/bin/Debug/Cs2DslUtility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/Cs2DslUtility/bin/Debug/Cs2DslUtility.dll -------------------------------------------------------------------------------- /Cs2DslUtility/bin/Debug/Cs2DslUtility.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/Cs2DslUtility/bin/Debug/Cs2DslUtility.pdb -------------------------------------------------------------------------------- /CsToDsl/CsToDsl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/CsToDsl/CsToDsl.cs -------------------------------------------------------------------------------- /CsToDsl/CsToDslProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/CsToDsl/CsToDslProcessor.cs -------------------------------------------------------------------------------- /CsToDsl/CsToDslUnimplemented.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/CsToDsl/CsToDslUnimplemented.cs -------------------------------------------------------------------------------- /CsToDsl/CsToDsl_CoreSyntax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/CsToDsl/CsToDsl_CoreSyntax.cs -------------------------------------------------------------------------------- /CsToDsl/CsToDsl_Exception.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/CsToDsl/CsToDsl_Exception.cs -------------------------------------------------------------------------------- /CsToDsl/CsToDsl_Expression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/CsToDsl/CsToDsl_Expression.cs -------------------------------------------------------------------------------- /CsToDsl/CsToDsl_Linq.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/CsToDsl/CsToDsl_Linq.cs -------------------------------------------------------------------------------- /CsToDsl/CsToDsl_Misc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/CsToDsl/CsToDsl_Misc.cs -------------------------------------------------------------------------------- /CsToDsl/CsToDsl_Object.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/CsToDsl/CsToDsl_Object.cs -------------------------------------------------------------------------------- /CsToDsl/CsToDsl_Statement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/CsToDsl/CsToDsl_Statement.cs -------------------------------------------------------------------------------- /CsToDsl/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/CsToDsl/Logger.cs -------------------------------------------------------------------------------- /Generator/JsGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/Generator/JsGenerator.cs -------------------------------------------------------------------------------- /Generator/LuaGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/Generator/LuaGenerator.cs -------------------------------------------------------------------------------- /Generator/LuaGenerator_Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/Generator/LuaGenerator_Helper.cs -------------------------------------------------------------------------------- /Generator/LuaGenerator_Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/Generator/LuaGenerator_Main.cs -------------------------------------------------------------------------------- /Getting Started - Semantic Analysis (CSharp).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/Getting Started - Semantic Analysis (CSharp).pdf -------------------------------------------------------------------------------- /Getting Started - Syntax Analysis (CSharp).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/Getting Started - Syntax Analysis (CSharp).pdf -------------------------------------------------------------------------------- /Getting Started - Syntax Transformation (CSharp).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/Getting Started - Syntax Transformation (CSharp).pdf -------------------------------------------------------------------------------- /Info/ClassInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/Info/ClassInfo.cs -------------------------------------------------------------------------------- /Info/ClassSymbolInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/Info/ClassSymbolInfo.cs -------------------------------------------------------------------------------- /Info/InvocationInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/Info/InvocationInfo.cs -------------------------------------------------------------------------------- /Info/MethodInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/Info/MethodInfo.cs -------------------------------------------------------------------------------- /Info/MiscInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/Info/MiscInfo.cs -------------------------------------------------------------------------------- /Info/StringMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/Info/StringMatcher.cs -------------------------------------------------------------------------------- /Info/SymbolTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/Info/SymbolTable.cs -------------------------------------------------------------------------------- /Info/TypeChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/Info/TypeChecker.cs -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/README.md -------------------------------------------------------------------------------- /bin/Debug/Cs2Dsl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/bin/Debug/Cs2Dsl.exe -------------------------------------------------------------------------------- /bin/Debug/Cs2Dsl.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/bin/Debug/Cs2Dsl.exe.config -------------------------------------------------------------------------------- /bin/Debug/Cs2Dsl.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/bin/Debug/Cs2Dsl.pdb -------------------------------------------------------------------------------- /bin/Debug/Cs2Dsl.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/bin/Debug/Cs2Dsl.vshost.exe -------------------------------------------------------------------------------- /bin/Debug/Cs2Dsl.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/bin/Debug/Cs2Dsl.vshost.exe.config -------------------------------------------------------------------------------- /bin/Debug/Cs2Dsl.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/bin/Debug/Cs2Dsl.vshost.exe.manifest -------------------------------------------------------------------------------- /bin/Debug/Cs2DslUtility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/bin/Debug/Cs2DslUtility.dll -------------------------------------------------------------------------------- /bin/Debug/Cs2DslUtility.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/bin/Debug/Cs2DslUtility.pdb -------------------------------------------------------------------------------- /bin/Debug/Dsl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/bin/Debug/Dsl.dll -------------------------------------------------------------------------------- /bin/Debug/Dsl.instr.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/bin/Debug/Dsl.instr.pdb -------------------------------------------------------------------------------- /bin/Debug/Dsl.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/bin/Debug/Dsl.pdb -------------------------------------------------------------------------------- /bin/Debug/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/bin/Debug/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /bin/Debug/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/bin/Debug/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /bin/Debug/System.Buffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/bin/Debug/System.Buffers.dll -------------------------------------------------------------------------------- /bin/Debug/System.Collections.Immutable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/bin/Debug/System.Collections.Immutable.dll -------------------------------------------------------------------------------- /bin/Debug/System.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/bin/Debug/System.Memory.dll -------------------------------------------------------------------------------- /bin/Debug/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/bin/Debug/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /bin/Debug/System.Reflection.Metadata.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/bin/Debug/System.Reflection.Metadata.dll -------------------------------------------------------------------------------- /bin/Debug/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/bin/Debug/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /bin/Debug/System.Text.Encoding.CodePages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/bin/Debug/System.Text.Encoding.CodePages.dll -------------------------------------------------------------------------------- /bin/Debug/System.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/bin/Debug/System.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /bin/Debug/cs2dsl.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/bin/Debug/cs2dsl.dsl -------------------------------------------------------------------------------- /bin/Debug/dsl/cs2dsl__attributes.dsl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/Debug/dsl/cs2dsl__externenums.dsl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/Debug/dsl/cs2dsl__interfaces.dsl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/Debug/dsl/cs2dsl__namespaces.dsl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/Debug/dsl/cs2dsl__references.txt: -------------------------------------------------------------------------------- 1 | System.Int32 2 | -------------------------------------------------------------------------------- /bin/Debug/dsl/cs2js__attributes.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/Debug/dsl/cs2js__externenums.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/Debug/dsl/cs2js__interfaces.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/Debug/dsl/cs2js__namespaces.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/Debug/dsl/mandelbrot.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/bin/Debug/dsl/mandelbrot.dsl -------------------------------------------------------------------------------- /bin/Debug/dsl/mandelbrot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/bin/Debug/dsl/mandelbrot.txt -------------------------------------------------------------------------------- /bin/Debug/generator.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/bin/Debug/generator.dsl -------------------------------------------------------------------------------- /bin/Debug/jslib/utility.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/bin/Debug/jslib/utility.html -------------------------------------------------------------------------------- /bin/Debug/log/Generator.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/Debug/log/SemanticError.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/Debug/log/SemanticWarning.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/bin/Debug/log/SemanticWarning.log -------------------------------------------------------------------------------- /bin/Debug/log/SymbolChecker.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/Debug/log/SyntaxError.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/Debug/log/SyntaxWarning.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/Debug/log/Translation.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/Debug/lua/perftest.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/bin/Debug/lua/perftest.lua -------------------------------------------------------------------------------- /bin/Debug/lua/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/bin/Debug/lua/test.lua -------------------------------------------------------------------------------- /bin/Debug/lualib/cs2luatypeimpl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/bin/Debug/lualib/cs2luatypeimpl.lua -------------------------------------------------------------------------------- /bin/Debug/lualib/lualib_basic.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/bin/Debug/lualib/lualib_basic.lua -------------------------------------------------------------------------------- /bin/Debug/lualib/lualib_valuetypescript.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/bin/Debug/lualib/lualib_valuetypescript.lua -------------------------------------------------------------------------------- /bin/Debug/lualib/syslib.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/bin/Debug/lualib/syslib.lua -------------------------------------------------------------------------------- /bin/Debug/rewriter.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/bin/Debug/rewriter.dsl -------------------------------------------------------------------------------- /bin/Debug/symbol.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/bin/Debug/symbol.txt -------------------------------------------------------------------------------- /bin/Debug/test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/bin/Debug/test.bat -------------------------------------------------------------------------------- /bin/Debug/test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/bin/Debug/test.cs -------------------------------------------------------------------------------- /bin/Debug/test_delegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/bin/Debug/test_delegate.cs -------------------------------------------------------------------------------- /bin/Debug/test_extension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/bin/Debug/test_extension.cs -------------------------------------------------------------------------------- /bin/Debug/test_generic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/bin/Debug/test_generic.cs -------------------------------------------------------------------------------- /bin/Debug/test_js.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/bin/Debug/test_js.cs -------------------------------------------------------------------------------- /bin/Debug/test_mangling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/bin/Debug/test_mangling.cs -------------------------------------------------------------------------------- /bin/Debug/test_vs2017.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/bin/Debug/test_vs2017.cs -------------------------------------------------------------------------------- /bin/Debug/testjs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/bin/Debug/testjs.bat -------------------------------------------------------------------------------- /copy.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/copy.bat -------------------------------------------------------------------------------- /dep/Cs2DslUtility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/Cs2DslUtility.dll -------------------------------------------------------------------------------- /dep/Dsl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/Dsl.dll -------------------------------------------------------------------------------- /dep/Dsl.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/Dsl.pdb -------------------------------------------------------------------------------- /dep/DslCalculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/DslCalculator.cs -------------------------------------------------------------------------------- /dep/Microsoft.CodeAnalysis.CSharp.Scripting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/Microsoft.CodeAnalysis.CSharp.Scripting.dll -------------------------------------------------------------------------------- /dep/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /dep/Microsoft.CodeAnalysis.Scripting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/Microsoft.CodeAnalysis.Scripting.dll -------------------------------------------------------------------------------- /dep/Microsoft.CodeAnalysis.VisualBasic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/Microsoft.CodeAnalysis.VisualBasic.dll -------------------------------------------------------------------------------- /dep/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /dep/Microsoft.DiaSymReader.Native.amd64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/Microsoft.DiaSymReader.Native.amd64.dll -------------------------------------------------------------------------------- /dep/Microsoft.DiaSymReader.Native.arm64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/Microsoft.DiaSymReader.Native.arm64.dll -------------------------------------------------------------------------------- /dep/Microsoft.DiaSymReader.Native.x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/Microsoft.DiaSymReader.Native.x86.dll -------------------------------------------------------------------------------- /dep/Slua/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/Slua/Editor.meta -------------------------------------------------------------------------------- /dep/Slua/Editor/CustomEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/Slua/Editor/CustomEditor.cs -------------------------------------------------------------------------------- /dep/Slua/Editor/CustomEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/Slua/Editor/CustomEditor.cs.meta -------------------------------------------------------------------------------- /dep/Slua/Editor/CustomExport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/Slua/Editor/CustomExport.cs -------------------------------------------------------------------------------- /dep/Slua/Editor/CustomExport.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/Slua/Editor/CustomExport.cs.meta -------------------------------------------------------------------------------- /dep/Slua/Editor/LuaCodeGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/Slua/Editor/LuaCodeGen.cs -------------------------------------------------------------------------------- /dep/Slua/Editor/LuaCodeGen.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/Slua/Editor/LuaCodeGen.cs.meta -------------------------------------------------------------------------------- /dep/Slua/Editor/LuaConsole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/Slua/Editor/LuaConsole.cs -------------------------------------------------------------------------------- /dep/Slua/Editor/LuaConsole.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/Slua/Editor/LuaConsole.cs.meta -------------------------------------------------------------------------------- /dep/Slua/Editor/MemoryProfilerWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/Slua/Editor/MemoryProfilerWindow.cs -------------------------------------------------------------------------------- /dep/Slua/Editor/MemoryProfilerWindow.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/Slua/Editor/MemoryProfilerWindow.cs.meta -------------------------------------------------------------------------------- /dep/Slua/Editor/ModuleSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/Slua/Editor/ModuleSelector.cs -------------------------------------------------------------------------------- /dep/Slua/Editor/ModuleSelector.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/Slua/Editor/ModuleSelector.cs.meta -------------------------------------------------------------------------------- /dep/Slua/Editor/SluaEditorUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/Slua/Editor/SluaEditorUtility.cs -------------------------------------------------------------------------------- /dep/Slua/Editor/SluaEditorUtility.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/Slua/Editor/SluaEditorUtility.cs.meta -------------------------------------------------------------------------------- /dep/Slua/Meta.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/Slua/Meta.meta -------------------------------------------------------------------------------- /dep/Slua/Meta/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/Slua/Meta/Resources.meta -------------------------------------------------------------------------------- /dep/Slua/Meta/Resources/lua3rdmeta.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/Slua/Meta/Resources/lua3rdmeta.asset -------------------------------------------------------------------------------- /dep/Slua/Meta/Resources/lua3rdmeta.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/Slua/Meta/Resources/lua3rdmeta.asset.meta -------------------------------------------------------------------------------- /dep/Slua/Meta/Resources/luadebug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/Slua/Meta/Resources/luadebug.txt -------------------------------------------------------------------------------- /dep/Slua/Meta/Resources/luadebug.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/Slua/Meta/Resources/luadebug.txt.meta -------------------------------------------------------------------------------- /dep/Slua/Meta/Resources/setting.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/Slua/Meta/Resources/setting.asset -------------------------------------------------------------------------------- /dep/Slua/Meta/Resources/setting.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/Slua/Meta/Resources/setting.asset.meta -------------------------------------------------------------------------------- /dep/SluaManaged/SluaManaged.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/SluaManaged/SluaManaged.sln -------------------------------------------------------------------------------- /dep/SluaManaged/SluaManaged/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/SluaManaged/SluaManaged/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /dep/SluaManaged/SluaManaged/SluaManaged.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/SluaManaged/SluaManaged/SluaManaged.csproj -------------------------------------------------------------------------------- /dep/SluaManaged/SluaManaged/Slua_Managed/ByteArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/SluaManaged/SluaManaged/Slua_Managed/ByteArray.cs -------------------------------------------------------------------------------- /dep/SluaManaged/SluaManaged/Slua_Managed/Coroutine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/SluaManaged/SluaManaged/Slua_Managed/Coroutine.cs -------------------------------------------------------------------------------- /dep/SluaManaged/SluaManaged/Slua_Managed/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/SluaManaged/SluaManaged/Slua_Managed/Helper.cs -------------------------------------------------------------------------------- /dep/SluaManaged/SluaManaged/Slua_Managed/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/SluaManaged/SluaManaged/Slua_Managed/Logger.cs -------------------------------------------------------------------------------- /dep/SluaManaged/SluaManaged/Slua_Managed/Lua3rdDLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/SluaManaged/SluaManaged/Slua_Managed/Lua3rdDLL.cs -------------------------------------------------------------------------------- /dep/SluaManaged/SluaManaged/Slua_Managed/Lua3rdMeta.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/SluaManaged/SluaManaged/Slua_Managed/Lua3rdMeta.cs -------------------------------------------------------------------------------- /dep/SluaManaged/SluaManaged/Slua_Managed/LuaArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/SluaManaged/SluaManaged/Slua_Managed/LuaArray.cs -------------------------------------------------------------------------------- /dep/SluaManaged/SluaManaged/Slua_Managed/LuaByteArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/SluaManaged/SluaManaged/Slua_Managed/LuaByteArray.cs -------------------------------------------------------------------------------- /dep/SluaManaged/SluaManaged/Slua_Managed/LuaDLL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/SluaManaged/SluaManaged/Slua_Managed/LuaDLL.cs -------------------------------------------------------------------------------- /dep/SluaManaged/SluaManaged/Slua_Managed/LuaDLLWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/SluaManaged/SluaManaged/Slua_Managed/LuaDLLWrapper.cs -------------------------------------------------------------------------------- /dep/SluaManaged/SluaManaged/Slua_Managed/LuaObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/SluaManaged/SluaManaged/Slua_Managed/LuaObject.cs -------------------------------------------------------------------------------- /dep/SluaManaged/SluaManaged/Slua_Managed/LuaObject_basetype.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/SluaManaged/SluaManaged/Slua_Managed/LuaObject_basetype.cs -------------------------------------------------------------------------------- /dep/SluaManaged/SluaManaged/Slua_Managed/LuaObject_overload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/SluaManaged/SluaManaged/Slua_Managed/LuaObject_overload.cs -------------------------------------------------------------------------------- /dep/SluaManaged/SluaManaged/Slua_Managed/LuaState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/SluaManaged/SluaManaged/Slua_Managed/LuaState.cs -------------------------------------------------------------------------------- /dep/SluaManaged/SluaManaged/Slua_Managed/LuaSvr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/SluaManaged/SluaManaged/Slua_Managed/LuaSvr.cs -------------------------------------------------------------------------------- /dep/SluaManaged/SluaManaged/Slua_Managed/LuaSvrGameObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/SluaManaged/SluaManaged/Slua_Managed/LuaSvrGameObject.cs -------------------------------------------------------------------------------- /dep/SluaManaged/SluaManaged/Slua_Managed/LuaVarObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/SluaManaged/SluaManaged/Slua_Managed/LuaVarObject.cs -------------------------------------------------------------------------------- /dep/SluaManaged/SluaManaged/Slua_Managed/ObjectCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/SluaManaged/SluaManaged/Slua_Managed/ObjectCache.cs -------------------------------------------------------------------------------- /dep/SluaManaged/SluaManaged/Slua_Managed/SLuaSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/SluaManaged/SluaManaged/Slua_Managed/SLuaSetting.cs -------------------------------------------------------------------------------- /dep/SluaManaged/SluaManaged/Slua_Managed/Timer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/SluaManaged/SluaManaged/Slua_Managed/Timer.cs -------------------------------------------------------------------------------- /dep/SluaManaged/SluaManaged/Slua_Managed/WeakDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/SluaManaged/SluaManaged/Slua_Managed/WeakDictionary.cs -------------------------------------------------------------------------------- /dep/SluaManaged/SluaManaged/bin/Debug/SluaManaged.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/SluaManaged/SluaManaged/bin/Debug/SluaManaged.dll -------------------------------------------------------------------------------- /dep/SluaManaged/SluaManaged/bin/Debug/SluaManaged.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/SluaManaged/SluaManaged/bin/Debug/SluaManaged.dll.mdb -------------------------------------------------------------------------------- /dep/SluaManaged/SluaManaged/bin/Debug/SluaManaged.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/SluaManaged/SluaManaged/bin/Debug/SluaManaged.pdb -------------------------------------------------------------------------------- /dep/SluaManaged/SluaManaged/bin/Debug/UnityEditor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/SluaManaged/SluaManaged/bin/Debug/UnityEditor.dll -------------------------------------------------------------------------------- /dep/SluaManaged/SluaManaged/bin/Debug/UnityEngine.UI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/SluaManaged/SluaManaged/bin/Debug/UnityEngine.UI.dll -------------------------------------------------------------------------------- /dep/SluaManaged/SluaManaged/bin/Debug/UnityEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/SluaManaged/SluaManaged/bin/Debug/UnityEngine.dll -------------------------------------------------------------------------------- /dep/System.Buffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/System.Buffers.dll -------------------------------------------------------------------------------- /dep/System.Collections.Immutable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/System.Collections.Immutable.dll -------------------------------------------------------------------------------- /dep/System.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/System.Memory.dll -------------------------------------------------------------------------------- /dep/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /dep/System.Reflection.Metadata.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/System.Reflection.Metadata.dll -------------------------------------------------------------------------------- /dep/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /dep/System.Text.Encoding.CodePages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/System.Text.Encoding.CodePages.dll -------------------------------------------------------------------------------- /dep/System.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/System.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /dep/debug_with_zerobrane_win_x64_and_mac/CopyToUnityProjectDir/lualibs/ltn12.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/debug_with_zerobrane_win_x64_and_mac/CopyToUnityProjectDir/lualibs/ltn12.lua -------------------------------------------------------------------------------- /dep/debug_with_zerobrane_win_x64_and_mac/CopyToUnityProjectDir/lualibs/mime.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/debug_with_zerobrane_win_x64_and_mac/CopyToUnityProjectDir/lualibs/mime.lua -------------------------------------------------------------------------------- /dep/debug_with_zerobrane_win_x64_and_mac/CopyToUnityProjectDir/lualibs/mobdebug/mobdebug.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/debug_with_zerobrane_win_x64_and_mac/CopyToUnityProjectDir/lualibs/mobdebug/mobdebug.lua -------------------------------------------------------------------------------- /dep/debug_with_zerobrane_win_x64_and_mac/CopyToUnityProjectDir/lualibs/socket.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/debug_with_zerobrane_win_x64_and_mac/CopyToUnityProjectDir/lualibs/socket.lua -------------------------------------------------------------------------------- /dep/debug_with_zerobrane_win_x64_and_mac/CopyToUnityProjectDir/lualibs/socket/ftp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/debug_with_zerobrane_win_x64_and_mac/CopyToUnityProjectDir/lualibs/socket/ftp.lua -------------------------------------------------------------------------------- /dep/debug_with_zerobrane_win_x64_and_mac/CopyToUnityProjectDir/lualibs/socket/headers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/debug_with_zerobrane_win_x64_and_mac/CopyToUnityProjectDir/lualibs/socket/headers.lua -------------------------------------------------------------------------------- /dep/debug_with_zerobrane_win_x64_and_mac/CopyToUnityProjectDir/lualibs/socket/http.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/debug_with_zerobrane_win_x64_and_mac/CopyToUnityProjectDir/lualibs/socket/http.lua -------------------------------------------------------------------------------- /dep/debug_with_zerobrane_win_x64_and_mac/CopyToUnityProjectDir/lualibs/socket/smtp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/debug_with_zerobrane_win_x64_and_mac/CopyToUnityProjectDir/lualibs/socket/smtp.lua -------------------------------------------------------------------------------- /dep/debug_with_zerobrane_win_x64_and_mac/CopyToUnityProjectDir/lualibs/socket/tp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/debug_with_zerobrane_win_x64_and_mac/CopyToUnityProjectDir/lualibs/socket/tp.lua -------------------------------------------------------------------------------- /dep/debug_with_zerobrane_win_x64_and_mac/CopyToUnityProjectDir/lualibs/socket/url.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/debug_with_zerobrane_win_x64_and_mac/CopyToUnityProjectDir/lualibs/socket/url.lua -------------------------------------------------------------------------------- /dep/debug_with_zerobrane_win_x64_and_mac/CopyToUnityProjectDir/lualibs/ssl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/debug_with_zerobrane_win_x64_and_mac/CopyToUnityProjectDir/lualibs/ssl.lua -------------------------------------------------------------------------------- /dep/debug_with_zerobrane_win_x64_and_mac/CopyToUnityProjectDir/lualibs/ssl/https.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/debug_with_zerobrane_win_x64_and_mac/CopyToUnityProjectDir/lualibs/ssl/https.lua -------------------------------------------------------------------------------- /dep/debug_with_zerobrane_win_x64_and_mac/CopyToUnityProjectDir/mime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/debug_with_zerobrane_win_x64_and_mac/CopyToUnityProjectDir/mime.dll -------------------------------------------------------------------------------- /dep/debug_with_zerobrane_win_x64_and_mac/CopyToUnityProjectDir/mime.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/debug_with_zerobrane_win_x64_and_mac/CopyToUnityProjectDir/mime.so -------------------------------------------------------------------------------- /dep/debug_with_zerobrane_win_x64_and_mac/CopyToUnityProjectDir/socket.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/debug_with_zerobrane_win_x64_and_mac/CopyToUnityProjectDir/socket.dll -------------------------------------------------------------------------------- /dep/debug_with_zerobrane_win_x64_and_mac/CopyToUnityProjectDir/socket.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/debug_with_zerobrane_win_x64_and_mac/CopyToUnityProjectDir/socket.so -------------------------------------------------------------------------------- /dep/debug_with_zerobrane_win_x64_and_mac/CopyToUnity_Assets_Slua_Resources/luadebug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/debug_with_zerobrane_win_x64_and_mac/CopyToUnity_Assets_Slua_Resources/luadebug.txt -------------------------------------------------------------------------------- /dep/slua-1.6.2/build/make_win_x64_debug.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/slua-1.6.2/build/make_win_x64_debug.bat -------------------------------------------------------------------------------- /dep/slua-1.6.2/build/make_win_x86_debug.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/slua-1.6.2/build/make_win_x86_debug.bat -------------------------------------------------------------------------------- /dep/slua-1.6.2/build/slua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/slua-1.6.2/build/slua.c -------------------------------------------------------------------------------- /dep/slua-1.6.2/build/snapshot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamanlan/Cs2Dsl/HEAD/dep/slua-1.6.2/build/snapshot.c --------------------------------------------------------------------------------