├── .gitignore ├── LICENSE ├── LuaDecompiler.sln ├── LuaDecompiler ├── FileReader.cs ├── Generator.cs ├── Lua │ ├── Constant.cs │ ├── Function.cs │ ├── Instruction.cs │ └── Local.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── tests │ ├── out.lua │ ├── test-d.luac │ ├── test-r.luac │ └── test.lua └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabbertorres/LuaDecompiler/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabbertorres/LuaDecompiler/HEAD/LICENSE -------------------------------------------------------------------------------- /LuaDecompiler.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabbertorres/LuaDecompiler/HEAD/LuaDecompiler.sln -------------------------------------------------------------------------------- /LuaDecompiler/FileReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabbertorres/LuaDecompiler/HEAD/LuaDecompiler/FileReader.cs -------------------------------------------------------------------------------- /LuaDecompiler/Generator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabbertorres/LuaDecompiler/HEAD/LuaDecompiler/Generator.cs -------------------------------------------------------------------------------- /LuaDecompiler/Lua/Constant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabbertorres/LuaDecompiler/HEAD/LuaDecompiler/Lua/Constant.cs -------------------------------------------------------------------------------- /LuaDecompiler/Lua/Function.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabbertorres/LuaDecompiler/HEAD/LuaDecompiler/Lua/Function.cs -------------------------------------------------------------------------------- /LuaDecompiler/Lua/Instruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabbertorres/LuaDecompiler/HEAD/LuaDecompiler/Lua/Instruction.cs -------------------------------------------------------------------------------- /LuaDecompiler/Lua/Local.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabbertorres/LuaDecompiler/HEAD/LuaDecompiler/Lua/Local.cs -------------------------------------------------------------------------------- /LuaDecompiler/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabbertorres/LuaDecompiler/HEAD/LuaDecompiler/Program.cs -------------------------------------------------------------------------------- /LuaDecompiler/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabbertorres/LuaDecompiler/HEAD/LuaDecompiler/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LuaDecompiler/tests/out.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabbertorres/LuaDecompiler/HEAD/LuaDecompiler/tests/out.lua -------------------------------------------------------------------------------- /LuaDecompiler/tests/test-d.luac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabbertorres/LuaDecompiler/HEAD/LuaDecompiler/tests/test-d.luac -------------------------------------------------------------------------------- /LuaDecompiler/tests/test-r.luac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabbertorres/LuaDecompiler/HEAD/LuaDecompiler/tests/test-r.luac -------------------------------------------------------------------------------- /LuaDecompiler/tests/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabbertorres/LuaDecompiler/HEAD/LuaDecompiler/tests/test.lua -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dabbertorres/LuaDecompiler/HEAD/README.md --------------------------------------------------------------------------------