Copy disabled (too large)
Download .txt
Showing preview only (68,538K chars total). Download the full file to get everything.
Repository: jjensen/luaplus51-all
Branch: master
Commit: cfefcff0d116
Files: 5000
Total size: 141.6 MB
Directory structure:
gitextract_savsuflw/
├── .gitignore
├── .gitmodules
├── AddAutoExp.bat
├── AddAutoExp.lua
├── AutoExpAdditions.txt
├── BootstrapJamPlus-linux64
├── BootstrapJamPlus-macosx64
├── BootstrapJamPlus-win64.bat
├── CreateJamLinuxWorkspace.config
├── CreateJamLinuxWorkspace.sh
├── CreateJamWindowsWorkspace.config
├── CreateJamXcodeWorkspace.config
├── CreateJamXcodeWorkspace.sh
├── CreateVS2017Workspace.bat
├── CreateVS2019Workspace.bat
├── Docs/
│ ├── LuaCopyright
│ ├── LuaManual.html
│ ├── LuaPlus.html
│ ├── LuaPlusBuilds.html
│ └── LuaPlusCallDispatcher.html
├── Jamfile.jam
├── LUAPLUS.jamrules
├── License.txt
├── README.md
├── Samples/
│ ├── ManagedLuaPlusTest/
│ │ ├── AssemblyInfo.cs
│ │ ├── Class1.cs
│ │ ├── ManagedLuaPlusTest.csproj
│ │ ├── ManagedLuaPlusTest.sln
│ │ ├── ManagedLuaPlusTest.slnenv
│ │ └── ManagedLuaPlusTest.snk
│ ├── MinimalTestLib/
│ │ ├── MinimalTestLib.cpp
│ │ ├── MinimalTestLib.jam
│ │ ├── TestANSI.lua
│ │ └── TestUnicode.lua
│ ├── Simple/
│ │ ├── Jamfile.jam
│ │ └── Simple.cpp
│ ├── TestClass/
│ │ ├── TestClass.cpp
│ │ └── TestClass.jam
│ ├── TestScript/
│ │ ├── .gitignore
│ │ ├── CompileMe.lc
│ │ ├── CompileMe.lua
│ │ ├── CreateVS2017Workspace.bat
│ │ ├── Jamfile.jam
│ │ ├── ReadUnicodeFile.lua
│ │ ├── ScriptArrayTest.lua
│ │ ├── ScriptCallbackTest.lua
│ │ ├── ScriptDumpTest.lua
│ │ ├── ScriptSaveTest.lua
│ │ ├── ScriptVectorDump.lua
│ │ ├── SimpleHeap.cpp
│ │ ├── SimpleHeap.h
│ │ ├── TestANSI.lua
│ │ ├── TestScript.cpp
│ │ ├── TestScript.jam
│ │ ├── TestUnicode.lua
│ │ ├── Timer.h
│ │ └── testgc.lua
│ ├── TestSuite/
│ │ ├── .gitignore
│ │ ├── BogusCharacters.lua
│ │ ├── CompileMe.lua
│ │ ├── TestANSI.lua
│ │ ├── TestSuite.cpp
│ │ ├── TestSuite.jam
│ │ ├── TestUnicode.lua
│ │ ├── stdafx.cpp
│ │ └── stdafx.h
│ └── UnitTest++/
│ ├── COPYING
│ ├── Makefile
│ ├── README
│ ├── TestUnitTest++.vsnet2003.vcproj
│ ├── TestUnitTest++.vsnet2005.vcproj
│ ├── TestUnitTestPP_vs6.dsp
│ ├── UnitTest++.jam
│ ├── UnitTest++.vsnet2003.sln
│ ├── UnitTest++.vsnet2003.vcproj
│ ├── UnitTest++.vsnet2005.sln
│ ├── UnitTest++.vsnet2005.vcproj
│ ├── UnitTestPP_vs6.dsp
│ ├── UnitTestPP_vs6.dsw
│ ├── docs/
│ │ └── UnitTest++.html
│ └── src/
│ ├── AssertException.cpp
│ ├── AssertException.h
│ ├── CheckMacros.h
│ ├── Checks.cpp
│ ├── Checks.h
│ ├── Config.h
│ ├── CurrentTest.cpp
│ ├── CurrentTest.h
│ ├── DeferredTestReporter.cpp
│ ├── DeferredTestReporter.h
│ ├── DeferredTestResult.cpp
│ ├── DeferredTestResult.h
│ ├── ExecuteTest.h
│ ├── MemoryOutStream.cpp
│ ├── MemoryOutStream.h
│ ├── Posix/
│ │ ├── SignalTranslator.cpp
│ │ ├── SignalTranslator.h
│ │ ├── TimeHelpers.cpp
│ │ └── TimeHelpers.h
│ ├── ReportAssert.cpp
│ ├── ReportAssert.h
│ ├── Test.cpp
│ ├── Test.h
│ ├── TestDetails.cpp
│ ├── TestDetails.h
│ ├── TestList.cpp
│ ├── TestList.h
│ ├── TestMacros.h
│ ├── TestReporter.cpp
│ ├── TestReporter.h
│ ├── TestReporterStdout.cpp
│ ├── TestReporterStdout.h
│ ├── TestResults.cpp
│ ├── TestResults.h
│ ├── TestRunner.cpp
│ ├── TestRunner.h
│ ├── TestSuite.h
│ ├── TimeConstraint.cpp
│ ├── TimeConstraint.h
│ ├── TimeHelpers.h
│ ├── UnitTest++.h
│ ├── Win32/
│ │ ├── TimeHelpers.cpp
│ │ └── TimeHelpers.h
│ ├── XmlTestReporter.cpp
│ ├── XmlTestReporter.h
│ └── tests/
│ ├── Main.cpp
│ ├── RecordingReporter.h
│ ├── ScopedCurrentTest.h
│ ├── TestAssertHandler.cpp
│ ├── TestCheckMacros.cpp
│ ├── TestChecks.cpp
│ ├── TestCurrentTest.cpp
│ ├── TestDeferredTestReporter.cpp
│ ├── TestMemoryOutStream.cpp
│ ├── TestTest.cpp
│ ├── TestTestList.cpp
│ ├── TestTestMacros.cpp
│ ├── TestTestResults.cpp
│ ├── TestTestRunner.cpp
│ ├── TestTestSuite.cpp
│ ├── TestTimeConstraint.cpp
│ ├── TestTimeConstraintMacro.cpp
│ ├── TestUnitTest++.cpp
│ └── TestXmlTestReporter.cpp
├── Src/
│ ├── Lua51Proxy/
│ │ ├── Lua51Proxy.jam
│ │ └── mkforwardlib-vc.lua
│ ├── LuaPlus/
│ │ ├── Lua.jam
│ │ ├── LuaAutoBlock.h
│ │ ├── LuaC.jam
│ │ ├── LuaCall.h
│ │ ├── LuaCall.inl
│ │ ├── LuaFunction.h
│ │ ├── LuaHelper.h
│ │ ├── LuaHelper_Object.h
│ │ ├── LuaHelper_StackObject.h
│ │ ├── LuaObject.h
│ │ ├── LuaObject.inl
│ │ ├── LuaPlus.cpp
│ │ ├── LuaPlus.h
│ │ ├── LuaPlusAddons.c
│ │ ├── LuaPlusCD.h
│ │ ├── LuaPlusConfig.h
│ │ ├── LuaPlusInternal.h
│ │ ├── LuaPlusSharedLib.jam
│ │ ├── LuaPlusStaticLib.jam
│ │ ├── LuaStackObject.h
│ │ ├── LuaStackObject.inl
│ │ ├── LuaStackTableIterator.h
│ │ ├── LuaStackTableIterator.inl
│ │ ├── LuaState.h
│ │ ├── LuaState.inl
│ │ ├── LuaStateCD.h
│ │ ├── LuaStateOutFile.h
│ │ ├── LuaStateOutString.h
│ │ ├── LuaState_DumpObject.cpp
│ │ ├── LuaTableIterator.h
│ │ ├── lua51/
│ │ │ ├── COPYRIGHT
│ │ │ ├── HISTORY
│ │ │ ├── INSTALL
│ │ │ ├── Makefile
│ │ │ ├── README
│ │ │ ├── doc/
│ │ │ │ ├── contents.html
│ │ │ │ ├── lua.1
│ │ │ │ ├── lua.css
│ │ │ │ ├── lua.html
│ │ │ │ ├── luac.1
│ │ │ │ ├── luac.html
│ │ │ │ ├── manual.css
│ │ │ │ ├── manual.html
│ │ │ │ └── readme.html
│ │ │ ├── etc/
│ │ │ │ ├── Makefile
│ │ │ │ ├── README
│ │ │ │ ├── all.c
│ │ │ │ ├── lua.hpp
│ │ │ │ ├── lua.pc
│ │ │ │ ├── luavs.bat
│ │ │ │ ├── min.c
│ │ │ │ ├── noparser.c
│ │ │ │ └── strict.lua
│ │ │ ├── src/
│ │ │ │ ├── Makefile
│ │ │ │ ├── lapi.c
│ │ │ │ ├── lapi.h
│ │ │ │ ├── lauxlib.c
│ │ │ │ ├── lauxlib.h
│ │ │ │ ├── lbaselib.c
│ │ │ │ ├── lcode.c
│ │ │ │ ├── lcode.h
│ │ │ │ ├── ldblib.c
│ │ │ │ ├── ldebug.c
│ │ │ │ ├── ldebug.h
│ │ │ │ ├── ldo.c
│ │ │ │ ├── ldo.h
│ │ │ │ ├── ldump.c
│ │ │ │ ├── lfunc.c
│ │ │ │ ├── lfunc.h
│ │ │ │ ├── lgc.c
│ │ │ │ ├── lgc.h
│ │ │ │ ├── linit.c
│ │ │ │ ├── liolib.c
│ │ │ │ ├── llex.c
│ │ │ │ ├── llex.h
│ │ │ │ ├── llimits.h
│ │ │ │ ├── lmathlib.c
│ │ │ │ ├── lmem.c
│ │ │ │ ├── lmem.h
│ │ │ │ ├── loadlib.c
│ │ │ │ ├── lobject.c
│ │ │ │ ├── lobject.h
│ │ │ │ ├── lopcodes.c
│ │ │ │ ├── lopcodes.h
│ │ │ │ ├── loslib.c
│ │ │ │ ├── lparser.c
│ │ │ │ ├── lparser.h
│ │ │ │ ├── lstate.c
│ │ │ │ ├── lstate.h
│ │ │ │ ├── lstring.c
│ │ │ │ ├── lstring.h
│ │ │ │ ├── lstrlib.c
│ │ │ │ ├── ltable.c
│ │ │ │ ├── ltable.h
│ │ │ │ ├── ltablib.c
│ │ │ │ ├── ltm.c
│ │ │ │ ├── ltm.h
│ │ │ │ ├── lua.c
│ │ │ │ ├── lua.h
│ │ │ │ ├── luac.c
│ │ │ │ ├── luaconf.h
│ │ │ │ ├── lualib.h
│ │ │ │ ├── lundump.c
│ │ │ │ ├── lundump.h
│ │ │ │ ├── lvm.c
│ │ │ │ ├── lvm.h
│ │ │ │ ├── lzio.c
│ │ │ │ ├── lzio.h
│ │ │ │ └── print.c
│ │ │ └── test/
│ │ │ ├── README
│ │ │ ├── bisect.lua
│ │ │ ├── cf.lua
│ │ │ ├── echo.lua
│ │ │ ├── env.lua
│ │ │ ├── factorial.lua
│ │ │ ├── fib.lua
│ │ │ ├── fibfor.lua
│ │ │ ├── globals.lua
│ │ │ ├── hello.lua
│ │ │ ├── life.lua
│ │ │ ├── luac.lua
│ │ │ ├── printf.lua
│ │ │ ├── readonly.lua
│ │ │ ├── sieve.lua
│ │ │ ├── sort.lua
│ │ │ ├── table.lua
│ │ │ ├── trace-calls.lua
│ │ │ ├── trace-globals.lua
│ │ │ └── xd.lua
│ │ ├── lua51-luaplus/
│ │ │ ├── COPYRIGHT
│ │ │ ├── HISTORY
│ │ │ ├── INSTALL
│ │ │ ├── Makefile
│ │ │ ├── README
│ │ │ ├── doc/
│ │ │ │ ├── contents.html
│ │ │ │ ├── lua.1
│ │ │ │ ├── lua.css
│ │ │ │ ├── lua.html
│ │ │ │ ├── luac.1
│ │ │ │ ├── luac.html
│ │ │ │ ├── manual.css
│ │ │ │ ├── manual.html
│ │ │ │ └── readme.html
│ │ │ ├── etc/
│ │ │ │ ├── Makefile
│ │ │ │ ├── README
│ │ │ │ ├── all.c
│ │ │ │ ├── lua.hpp
│ │ │ │ ├── lua.pc
│ │ │ │ ├── luavs.bat
│ │ │ │ ├── min.c
│ │ │ │ ├── noparser.c
│ │ │ │ └── strict.lua
│ │ │ ├── src/
│ │ │ │ ├── Makefile
│ │ │ │ ├── lapi.c
│ │ │ │ ├── lapi.h
│ │ │ │ ├── lauxlib.c
│ │ │ │ ├── lauxlib.h
│ │ │ │ ├── lbaselib.c
│ │ │ │ ├── lcode.c
│ │ │ │ ├── lcode.h
│ │ │ │ ├── ldblib.c
│ │ │ │ ├── ldebug.c
│ │ │ │ ├── ldebug.h
│ │ │ │ ├── ldo.c
│ │ │ │ ├── ldo.h
│ │ │ │ ├── ldump.c
│ │ │ │ ├── lfunc.c
│ │ │ │ ├── lfunc.h
│ │ │ │ ├── lgc.c
│ │ │ │ ├── lgc.h
│ │ │ │ ├── linit.c
│ │ │ │ ├── liolib.c
│ │ │ │ ├── llex.c
│ │ │ │ ├── llex.h
│ │ │ │ ├── llimits.h
│ │ │ │ ├── lmathlib.c
│ │ │ │ ├── lmem.c
│ │ │ │ ├── lmem.h
│ │ │ │ ├── loadlib.c
│ │ │ │ ├── lobject.c
│ │ │ │ ├── lobject.h
│ │ │ │ ├── lopcodes.c
│ │ │ │ ├── lopcodes.h
│ │ │ │ ├── loslib.c
│ │ │ │ ├── lparser.c
│ │ │ │ ├── lparser.h
│ │ │ │ ├── lstate.c
│ │ │ │ ├── lstate.h
│ │ │ │ ├── lstring.c
│ │ │ │ ├── lstring.h
│ │ │ │ ├── lstrlib.c
│ │ │ │ ├── ltable.c
│ │ │ │ ├── ltable.h
│ │ │ │ ├── ltablib.c
│ │ │ │ ├── ltm.c
│ │ │ │ ├── ltm.h
│ │ │ │ ├── lua.c
│ │ │ │ ├── lua.cpp
│ │ │ │ ├── lua.h
│ │ │ │ ├── luac.c
│ │ │ │ ├── luaconf.h
│ │ │ │ ├── lualib.h
│ │ │ │ ├── lundump.c
│ │ │ │ ├── lundump.h
│ │ │ │ ├── lvm.c
│ │ │ │ ├── lvm.h
│ │ │ │ ├── lzio.c
│ │ │ │ ├── lzio.h
│ │ │ │ └── print.c
│ │ │ └── test/
│ │ │ ├── README
│ │ │ ├── bisect.lua
│ │ │ ├── cf.lua
│ │ │ ├── echo.lua
│ │ │ ├── env.lua
│ │ │ ├── factorial.lua
│ │ │ ├── fib.lua
│ │ │ ├── fibfor.lua
│ │ │ ├── globals.lua
│ │ │ ├── hello.lua
│ │ │ ├── life.lua
│ │ │ ├── luac.lua
│ │ │ ├── printf.lua
│ │ │ ├── readonly.lua
│ │ │ ├── sieve.lua
│ │ │ ├── sort.lua
│ │ │ ├── table.lua
│ │ │ ├── trace-calls.lua
│ │ │ ├── trace-globals.lua
│ │ │ └── xd.lua
│ │ ├── lua52/
│ │ │ ├── Makefile
│ │ │ ├── README
│ │ │ ├── doc/
│ │ │ │ ├── contents.html
│ │ │ │ ├── lua.1
│ │ │ │ ├── lua.css
│ │ │ │ ├── luac.1
│ │ │ │ ├── manual.css
│ │ │ │ ├── manual.html
│ │ │ │ └── readme.html
│ │ │ └── src/
│ │ │ ├── Makefile
│ │ │ ├── lapi.c
│ │ │ ├── lapi.h
│ │ │ ├── lauxlib.c
│ │ │ ├── lauxlib.h
│ │ │ ├── lbaselib.c
│ │ │ ├── lbitlib.c
│ │ │ ├── lcode.c
│ │ │ ├── lcode.h
│ │ │ ├── lcorolib.c
│ │ │ ├── lctype.c
│ │ │ ├── lctype.h
│ │ │ ├── ldblib.c
│ │ │ ├── ldebug.c
│ │ │ ├── ldebug.h
│ │ │ ├── ldo.c
│ │ │ ├── ldo.h
│ │ │ ├── ldump.c
│ │ │ ├── lfunc.c
│ │ │ ├── lfunc.h
│ │ │ ├── lgc.c
│ │ │ ├── lgc.h
│ │ │ ├── linit.c
│ │ │ ├── liolib.c
│ │ │ ├── llex.c
│ │ │ ├── llex.h
│ │ │ ├── llimits.h
│ │ │ ├── lmathlib.c
│ │ │ ├── lmem.c
│ │ │ ├── lmem.h
│ │ │ ├── loadlib.c
│ │ │ ├── lobject.c
│ │ │ ├── lobject.h
│ │ │ ├── lopcodes.c
│ │ │ ├── lopcodes.h
│ │ │ ├── loslib.c
│ │ │ ├── lparser.c
│ │ │ ├── lparser.h
│ │ │ ├── lstate.c
│ │ │ ├── lstate.h
│ │ │ ├── lstring.c
│ │ │ ├── lstring.h
│ │ │ ├── lstrlib.c
│ │ │ ├── ltable.c
│ │ │ ├── ltable.h
│ │ │ ├── ltablib.c
│ │ │ ├── ltm.c
│ │ │ ├── ltm.h
│ │ │ ├── lua.c
│ │ │ ├── lua.h
│ │ │ ├── lua.hpp
│ │ │ ├── luac.c
│ │ │ ├── luaconf.h
│ │ │ ├── lualib.h
│ │ │ ├── lundump.c
│ │ │ ├── lundump.h
│ │ │ ├── lvm.c
│ │ │ ├── lvm.h
│ │ │ ├── lzio.c
│ │ │ └── lzio.h
│ │ ├── lua52-luaplus/
│ │ │ ├── Makefile
│ │ │ ├── README
│ │ │ ├── doc/
│ │ │ │ ├── contents.html
│ │ │ │ ├── lua.1
│ │ │ │ ├── lua.css
│ │ │ │ ├── luac.1
│ │ │ │ ├── manual.css
│ │ │ │ ├── manual.html
│ │ │ │ └── readme.html
│ │ │ └── src/
│ │ │ ├── Makefile
│ │ │ ├── lapi.c
│ │ │ ├── lapi.h
│ │ │ ├── lauxlib.c
│ │ │ ├── lauxlib.h
│ │ │ ├── lbaselib.c
│ │ │ ├── lbitlib.c
│ │ │ ├── lcode.c
│ │ │ ├── lcode.h
│ │ │ ├── lcorolib.c
│ │ │ ├── lctype.c
│ │ │ ├── lctype.h
│ │ │ ├── ldblib.c
│ │ │ ├── ldebug.c
│ │ │ ├── ldebug.h
│ │ │ ├── ldo.c
│ │ │ ├── ldo.h
│ │ │ ├── ldump.c
│ │ │ ├── lfunc.c
│ │ │ ├── lfunc.h
│ │ │ ├── lgc.c
│ │ │ ├── lgc.h
│ │ │ ├── linit.c
│ │ │ ├── liolib.c
│ │ │ ├── llex.c
│ │ │ ├── llex.h
│ │ │ ├── llimits.h
│ │ │ ├── lmathlib.c
│ │ │ ├── lmem.c
│ │ │ ├── lmem.h
│ │ │ ├── loadlib.c
│ │ │ ├── lobject.c
│ │ │ ├── lobject.h
│ │ │ ├── lopcodes.c
│ │ │ ├── lopcodes.h
│ │ │ ├── loslib.c
│ │ │ ├── lparser.c
│ │ │ ├── lparser.h
│ │ │ ├── lstate.c
│ │ │ ├── lstate.h
│ │ │ ├── lstring.c
│ │ │ ├── lstring.h
│ │ │ ├── lstrlib.c
│ │ │ ├── ltable.c
│ │ │ ├── ltable.h
│ │ │ ├── ltablib.c
│ │ │ ├── ltm.c
│ │ │ ├── ltm.h
│ │ │ ├── lua.c
│ │ │ ├── lua.h
│ │ │ ├── lua.hpp
│ │ │ ├── luac.c
│ │ │ ├── luaconf.h
│ │ │ ├── lualib.h
│ │ │ ├── lundump.c
│ │ │ ├── lundump.h
│ │ │ ├── lvm.c
│ │ │ ├── lvm.h
│ │ │ ├── lzio.c
│ │ │ └── lzio.h
│ │ ├── lua53/
│ │ │ ├── Makefile
│ │ │ ├── README
│ │ │ ├── doc/
│ │ │ │ ├── contents.html
│ │ │ │ ├── index.css
│ │ │ │ ├── lua.1
│ │ │ │ ├── lua.css
│ │ │ │ ├── luac.1
│ │ │ │ ├── manual.css
│ │ │ │ ├── manual.html
│ │ │ │ └── readme.html
│ │ │ └── src/
│ │ │ ├── Makefile
│ │ │ ├── lapi.c
│ │ │ ├── lapi.h
│ │ │ ├── lauxlib.c
│ │ │ ├── lauxlib.h
│ │ │ ├── lbaselib.c
│ │ │ ├── lbitlib.c
│ │ │ ├── lcode.c
│ │ │ ├── lcode.h
│ │ │ ├── lcorolib.c
│ │ │ ├── lctype.c
│ │ │ ├── lctype.h
│ │ │ ├── ldblib.c
│ │ │ ├── ldebug.c
│ │ │ ├── ldebug.h
│ │ │ ├── ldo.c
│ │ │ ├── ldo.h
│ │ │ ├── ldump.c
│ │ │ ├── lfunc.c
│ │ │ ├── lfunc.h
│ │ │ ├── lgc.c
│ │ │ ├── lgc.h
│ │ │ ├── linit.c
│ │ │ ├── liolib.c
│ │ │ ├── llex.c
│ │ │ ├── llex.h
│ │ │ ├── llimits.h
│ │ │ ├── lmathlib.c
│ │ │ ├── lmem.c
│ │ │ ├── lmem.h
│ │ │ ├── loadlib.c
│ │ │ ├── lobject.c
│ │ │ ├── lobject.h
│ │ │ ├── lopcodes.c
│ │ │ ├── lopcodes.h
│ │ │ ├── loslib.c
│ │ │ ├── lparser.c
│ │ │ ├── lparser.h
│ │ │ ├── lprefix.h
│ │ │ ├── lstate.c
│ │ │ ├── lstate.h
│ │ │ ├── lstring.c
│ │ │ ├── lstring.h
│ │ │ ├── lstrlib.c
│ │ │ ├── ltable.c
│ │ │ ├── ltable.h
│ │ │ ├── ltablib.c
│ │ │ ├── ltm.c
│ │ │ ├── ltm.h
│ │ │ ├── lua.c
│ │ │ ├── lua.h
│ │ │ ├── lua.hpp
│ │ │ ├── luac.c
│ │ │ ├── luaconf.h
│ │ │ ├── lualib.h
│ │ │ ├── lundump.c
│ │ │ ├── lundump.h
│ │ │ ├── lutf8lib.c
│ │ │ ├── lvm.c
│ │ │ ├── lvm.h
│ │ │ ├── lzio.c
│ │ │ └── lzio.h
│ │ └── lua53-luaplus/
│ │ ├── Makefile
│ │ ├── README
│ │ ├── doc/
│ │ │ ├── contents.html
│ │ │ ├── index.css
│ │ │ ├── lua.1
│ │ │ ├── lua.css
│ │ │ ├── luac.1
│ │ │ ├── manual.css
│ │ │ ├── manual.html
│ │ │ └── readme.html
│ │ └── src/
│ │ ├── Makefile
│ │ ├── lapi.c
│ │ ├── lapi.h
│ │ ├── lauxlib.c
│ │ ├── lauxlib.h
│ │ ├── lbaselib.c
│ │ ├── lbitlib.c
│ │ ├── lcode.c
│ │ ├── lcode.h
│ │ ├── lcorolib.c
│ │ ├── lctype.c
│ │ ├── lctype.h
│ │ ├── ldblib.c
│ │ ├── ldebug.c
│ │ ├── ldebug.h
│ │ ├── ldo.c
│ │ ├── ldo.h
│ │ ├── ldump.c
│ │ ├── lfunc.c
│ │ ├── lfunc.h
│ │ ├── lgc.c
│ │ ├── lgc.h
│ │ ├── linit.c
│ │ ├── liolib.c
│ │ ├── llex.c
│ │ ├── llex.h
│ │ ├── llimits.h
│ │ ├── lmathlib.c
│ │ ├── lmem.c
│ │ ├── lmem.h
│ │ ├── loadlib.c
│ │ ├── lobject.c
│ │ ├── lobject.h
│ │ ├── lopcodes.c
│ │ ├── lopcodes.h
│ │ ├── loslib.c
│ │ ├── lparser.c
│ │ ├── lparser.h
│ │ ├── lprefix.h
│ │ ├── lstate.c
│ │ ├── lstate.h
│ │ ├── lstring.c
│ │ ├── lstring.h
│ │ ├── lstrlib.c
│ │ ├── ltable.c
│ │ ├── ltable.h
│ │ ├── ltablib.c
│ │ ├── ltm.c
│ │ ├── ltm.h
│ │ ├── lua.c
│ │ ├── lua.h
│ │ ├── lua.hpp
│ │ ├── luac.c
│ │ ├── luaconf.h
│ │ ├── lualib.h
│ │ ├── lundump.c
│ │ ├── lundump.h
│ │ ├── lutf8lib.c
│ │ ├── lvm.c
│ │ ├── lvm.h
│ │ ├── lzio.c
│ │ └── lzio.h
│ ├── ManagedLuaPlus/
│ │ ├── AssemblyInfo.cpp
│ │ ├── DllMain.cpp
│ │ ├── LuaPlusClrPure.jam
│ │ ├── ManagedLuaPlus.cpp
│ │ ├── ManagedLuaPlus.h
│ │ ├── ManagedLuaPlus.jam
│ │ ├── ManagedLuaPlus.sln
│ │ ├── ManagedLuaPlus.snk
│ │ └── Stdafx.h
│ ├── ManagedLuaPlus-oldsyntax/
│ │ ├── AssemblyInfo.cpp
│ │ ├── DllMain.cpp
│ │ ├── ManagedLuaPlus.cpp
│ │ ├── ManagedLuaPlus.h
│ │ ├── ManagedLuaPlus.jam
│ │ ├── ManagedLuaPlus.sln
│ │ ├── ManagedLuaPlus.snk
│ │ └── Stdafx.h
│ ├── Modules/
│ │ ├── .gitignore
│ │ ├── LuaMacro/
│ │ │ ├── config.ld
│ │ │ ├── docgen
│ │ │ ├── docgen.bat
│ │ │ ├── luam
│ │ │ ├── luam.lua
│ │ │ ├── macro/
│ │ │ │ ├── Getter.lua
│ │ │ │ ├── TokenList.lua
│ │ │ │ ├── all.lua
│ │ │ │ ├── assert.lua
│ │ │ │ ├── builtin.lua
│ │ │ │ ├── clexer.lua
│ │ │ │ ├── do.lua
│ │ │ │ ├── forall.lua
│ │ │ │ ├── lambda.lua
│ │ │ │ ├── lc.lua
│ │ │ │ ├── lexer.lua
│ │ │ │ ├── lib/
│ │ │ │ │ ├── class.lua
│ │ │ │ │ └── test.lua
│ │ │ │ ├── module.lua
│ │ │ │ ├── try.lua
│ │ │ │ └── with.lua
│ │ │ ├── macro.lua
│ │ │ ├── readme.md
│ │ │ └── tests/
│ │ │ ├── cexport.lua
│ │ │ ├── class1.lc
│ │ │ ├── const.lua
│ │ │ ├── cskin.lua
│ │ │ ├── dll.c
│ │ │ ├── dollar.lua
│ │ │ ├── exit.tmp
│ │ │ ├── forall1.lua
│ │ │ ├── lc.lua
│ │ │ ├── list.lua
│ │ │ ├── mmath.lua
│ │ │ ├── mod.m.lua
│ │ │ ├── proto.lua
│ │ │ ├── qw.lua
│ │ │ ├── rawhash.lua
│ │ │ ├── readme.md
│ │ │ ├── run-tests.lua
│ │ │ ├── str.lc
│ │ │ ├── test-assert.lua
│ │ │ ├── test-block.lua
│ │ │ ├── test-case.lua
│ │ │ ├── test-const.lua
│ │ │ ├── test-cskin.lua
│ │ │ ├── test-do.lua
│ │ │ ├── test-dollar.lua
│ │ │ ├── test-forall.lua
│ │ │ ├── test-forall1.lua
│ │ │ ├── test-include.lua
│ │ │ ├── test-lambda.lua
│ │ │ ├── test-list.lua
│ │ │ ├── test-macro.lua
│ │ │ ├── test-mod.lua
│ │ │ ├── test-pl-list.lua
│ │ │ ├── test-proto.lua
│ │ │ ├── test-qw.lua
│ │ │ ├── test-rawhash.lua
│ │ │ ├── test-require.lua
│ │ │ ├── test-scope.lua
│ │ │ ├── test-test.lua
│ │ │ ├── test-try.lua
│ │ │ ├── test-with.lua
│ │ │ ├── test.inc
│ │ │ ├── tests.bat
│ │ │ └── winapi.lc
│ │ ├── StackTracePlus/
│ │ │ ├── .travis.yml
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── rockspecs/
│ │ │ │ ├── stacktraceplus-0.1.0-1.rockspec
│ │ │ │ ├── stacktraceplus-0.1.1-1.rockspec
│ │ │ │ └── stacktraceplus-sscm-1.rockspec
│ │ │ ├── src/
│ │ │ │ └── StackTracePlus.lua
│ │ │ ├── test/
│ │ │ │ ├── test.lua
│ │ │ │ └── test_questionmark.lua
│ │ │ └── unittest/
│ │ │ ├── run.lua
│ │ │ └── test.lua
│ │ ├── alien/
│ │ │ ├── Makefile
│ │ │ ├── Makefile.win
│ │ │ ├── Makefile.win64
│ │ │ ├── README
│ │ │ ├── doc/
│ │ │ │ ├── .git-darcs-dir
│ │ │ │ ├── alien.md
│ │ │ │ └── index.html
│ │ │ ├── executables
│ │ │ ├── index.html
│ │ │ ├── libffi/
│ │ │ │ ├── ChangeLog
│ │ │ │ ├── ChangeLog.libffi
│ │ │ │ ├── ChangeLog.libgcj
│ │ │ │ ├── ChangeLog.v1
│ │ │ │ ├── LICENSE
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── README
│ │ │ │ ├── acinclude.m4
│ │ │ │ ├── aclocal.m4
│ │ │ │ ├── compile
│ │ │ │ ├── config.guess
│ │ │ │ ├── config.sub
│ │ │ │ ├── configure
│ │ │ │ ├── configure.ac
│ │ │ │ ├── configure.host
│ │ │ │ ├── depcomp
│ │ │ │ ├── doc/
│ │ │ │ │ ├── libffi.info
│ │ │ │ │ ├── libffi.texi
│ │ │ │ │ ├── stamp-vti
│ │ │ │ │ └── version.texi
│ │ │ │ ├── fficonfig.h.in
│ │ │ │ ├── include/
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── Makefile.in
│ │ │ │ │ ├── ffi.h.in
│ │ │ │ │ └── ffi_common.h
│ │ │ │ ├── install-sh
│ │ │ │ ├── libffi.pc.in
│ │ │ │ ├── libtool-version
│ │ │ │ ├── ltmain.sh
│ │ │ │ ├── m4/
│ │ │ │ │ ├── libtool.m4
│ │ │ │ │ ├── ltoptions.m4
│ │ │ │ │ ├── ltsugar.m4
│ │ │ │ │ ├── ltversion.m4
│ │ │ │ │ └── lt~obsolete.m4
│ │ │ │ ├── man/
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── Makefile.in
│ │ │ │ │ ├── ffi.3
│ │ │ │ │ ├── ffi_call.3
│ │ │ │ │ └── ffi_prep_cif.3
│ │ │ │ ├── mdate-sh
│ │ │ │ ├── missing
│ │ │ │ ├── src/
│ │ │ │ │ ├── alpha/
│ │ │ │ │ │ ├── ffi.c
│ │ │ │ │ │ ├── ffitarget.h
│ │ │ │ │ │ └── osf.S
│ │ │ │ │ ├── arm/
│ │ │ │ │ │ ├── ffi.c
│ │ │ │ │ │ ├── ffitarget.h
│ │ │ │ │ │ └── sysv.S
│ │ │ │ │ ├── avr32/
│ │ │ │ │ │ ├── ffi.c
│ │ │ │ │ │ ├── ffitarget.h
│ │ │ │ │ │ └── sysv.S
│ │ │ │ │ ├── closures.c
│ │ │ │ │ ├── cris/
│ │ │ │ │ │ ├── ffi.c
│ │ │ │ │ │ ├── ffitarget.h
│ │ │ │ │ │ └── sysv.S
│ │ │ │ │ ├── debug.c
│ │ │ │ │ ├── dlmalloc.c
│ │ │ │ │ ├── frv/
│ │ │ │ │ │ ├── eabi.S
│ │ │ │ │ │ ├── ffi.c
│ │ │ │ │ │ └── ffitarget.h
│ │ │ │ │ ├── ia64/
│ │ │ │ │ │ ├── ffi.c
│ │ │ │ │ │ ├── ffitarget.h
│ │ │ │ │ │ ├── ia64_flags.h
│ │ │ │ │ │ └── unix.S
│ │ │ │ │ ├── java_raw_api.c
│ │ │ │ │ ├── m32r/
│ │ │ │ │ │ ├── ffi.c
│ │ │ │ │ │ ├── ffitarget.h
│ │ │ │ │ │ └── sysv.S
│ │ │ │ │ ├── m68k/
│ │ │ │ │ │ ├── ffi.c
│ │ │ │ │ │ ├── ffitarget.h
│ │ │ │ │ │ └── sysv.S
│ │ │ │ │ ├── mips/
│ │ │ │ │ │ ├── ffi.c
│ │ │ │ │ │ ├── ffitarget.h
│ │ │ │ │ │ ├── n32.S
│ │ │ │ │ │ └── o32.S
│ │ │ │ │ ├── pa/
│ │ │ │ │ │ ├── ffi.c
│ │ │ │ │ │ ├── ffitarget.h
│ │ │ │ │ │ ├── hpux32.S
│ │ │ │ │ │ └── linux.S
│ │ │ │ │ ├── powerpc/
│ │ │ │ │ │ ├── aix.S
│ │ │ │ │ │ ├── aix_closure.S
│ │ │ │ │ │ ├── asm.h
│ │ │ │ │ │ ├── darwin.S
│ │ │ │ │ │ ├── darwin_closure.S
│ │ │ │ │ │ ├── ffi.c
│ │ │ │ │ │ ├── ffi_darwin.c
│ │ │ │ │ │ ├── ffitarget.h
│ │ │ │ │ │ ├── linux64.S
│ │ │ │ │ │ ├── linux64_closure.S
│ │ │ │ │ │ ├── ppc_closure.S
│ │ │ │ │ │ └── sysv.S
│ │ │ │ │ ├── prep_cif.c
│ │ │ │ │ ├── raw_api.c
│ │ │ │ │ ├── s390/
│ │ │ │ │ │ ├── ffi.c
│ │ │ │ │ │ ├── ffitarget.h
│ │ │ │ │ │ └── sysv.S
│ │ │ │ │ ├── sh/
│ │ │ │ │ │ ├── ffi.c
│ │ │ │ │ │ ├── ffitarget.h
│ │ │ │ │ │ └── sysv.S
│ │ │ │ │ ├── sh64/
│ │ │ │ │ │ ├── ffi.c
│ │ │ │ │ │ ├── ffitarget.h
│ │ │ │ │ │ └── sysv.S
│ │ │ │ │ ├── sparc/
│ │ │ │ │ │ ├── ffi.c
│ │ │ │ │ │ ├── ffitarget.h
│ │ │ │ │ │ ├── v8.S
│ │ │ │ │ │ └── v9.S
│ │ │ │ │ ├── types.c
│ │ │ │ │ └── x86/
│ │ │ │ │ ├── darwin.S
│ │ │ │ │ ├── darwin64.S
│ │ │ │ │ ├── ffi.c
│ │ │ │ │ ├── ffi64.c
│ │ │ │ │ ├── ffitarget.h
│ │ │ │ │ ├── freebsd.S
│ │ │ │ │ ├── sysv.S
│ │ │ │ │ ├── unix64.S
│ │ │ │ │ ├── win32.S
│ │ │ │ │ └── win64.S
│ │ │ │ ├── testsuite/
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── Makefile.in
│ │ │ │ │ ├── config/
│ │ │ │ │ │ └── default.exp
│ │ │ │ │ ├── lib/
│ │ │ │ │ │ ├── libffi-dg.exp
│ │ │ │ │ │ ├── target-libpath.exp
│ │ │ │ │ │ └── wrapper.exp
│ │ │ │ │ ├── libffi.call/
│ │ │ │ │ │ ├── call.exp
│ │ │ │ │ │ ├── closure_fn0.c
│ │ │ │ │ │ ├── closure_fn1.c
│ │ │ │ │ │ ├── closure_fn2.c
│ │ │ │ │ │ ├── closure_fn3.c
│ │ │ │ │ │ ├── closure_fn4.c
│ │ │ │ │ │ ├── closure_fn5.c
│ │ │ │ │ │ ├── closure_fn6.c
│ │ │ │ │ │ ├── closure_loc_fn0.c
│ │ │ │ │ │ ├── closure_stdcall.c
│ │ │ │ │ │ ├── cls_12byte.c
│ │ │ │ │ │ ├── cls_16byte.c
│ │ │ │ │ │ ├── cls_18byte.c
│ │ │ │ │ │ ├── cls_19byte.c
│ │ │ │ │ │ ├── cls_1_1byte.c
│ │ │ │ │ │ ├── cls_20byte.c
│ │ │ │ │ │ ├── cls_20byte1.c
│ │ │ │ │ │ ├── cls_24byte.c
│ │ │ │ │ │ ├── cls_2byte.c
│ │ │ │ │ │ ├── cls_3_1byte.c
│ │ │ │ │ │ ├── cls_3byte1.c
│ │ │ │ │ │ ├── cls_3byte2.c
│ │ │ │ │ │ ├── cls_4_1byte.c
│ │ │ │ │ │ ├── cls_4byte.c
│ │ │ │ │ │ ├── cls_5_1_byte.c
│ │ │ │ │ │ ├── cls_5byte.c
│ │ │ │ │ │ ├── cls_64byte.c
│ │ │ │ │ │ ├── cls_6_1_byte.c
│ │ │ │ │ │ ├── cls_6byte.c
│ │ │ │ │ │ ├── cls_7_1_byte.c
│ │ │ │ │ │ ├── cls_7byte.c
│ │ │ │ │ │ ├── cls_8byte.c
│ │ │ │ │ │ ├── cls_9byte1.c
│ │ │ │ │ │ ├── cls_9byte2.c
│ │ │ │ │ │ ├── cls_align_double.c
│ │ │ │ │ │ ├── cls_align_float.c
│ │ │ │ │ │ ├── cls_align_longdouble.c
│ │ │ │ │ │ ├── cls_align_longdouble_split.c
│ │ │ │ │ │ ├── cls_align_longdouble_split2.c
│ │ │ │ │ │ ├── cls_align_pointer.c
│ │ │ │ │ │ ├── cls_align_sint16.c
│ │ │ │ │ │ ├── cls_align_sint32.c
│ │ │ │ │ │ ├── cls_align_sint64.c
│ │ │ │ │ │ ├── cls_align_uint16.c
│ │ │ │ │ │ ├── cls_align_uint32.c
│ │ │ │ │ │ ├── cls_align_uint64.c
│ │ │ │ │ │ ├── cls_dbls_struct.c
│ │ │ │ │ │ ├── cls_double.c
│ │ │ │ │ │ ├── cls_double_va.c
│ │ │ │ │ │ ├── cls_float.c
│ │ │ │ │ │ ├── cls_longdouble.c
│ │ │ │ │ │ ├── cls_longdouble_va.c
│ │ │ │ │ │ ├── cls_multi_schar.c
│ │ │ │ │ │ ├── cls_multi_sshort.c
│ │ │ │ │ │ ├── cls_multi_sshortchar.c
│ │ │ │ │ │ ├── cls_multi_uchar.c
│ │ │ │ │ │ ├── cls_multi_ushort.c
│ │ │ │ │ │ ├── cls_multi_ushortchar.c
│ │ │ │ │ │ ├── cls_pointer.c
│ │ │ │ │ │ ├── cls_pointer_stack.c
│ │ │ │ │ │ ├── cls_schar.c
│ │ │ │ │ │ ├── cls_sint.c
│ │ │ │ │ │ ├── cls_sshort.c
│ │ │ │ │ │ ├── cls_uchar.c
│ │ │ │ │ │ ├── cls_uint.c
│ │ │ │ │ │ ├── cls_ulonglong.c
│ │ │ │ │ │ ├── cls_ushort.c
│ │ │ │ │ │ ├── err_bad_abi.c
│ │ │ │ │ │ ├── err_bad_typedef.c
│ │ │ │ │ │ ├── ffitest.h
│ │ │ │ │ │ ├── float.c
│ │ │ │ │ │ ├── float1.c
│ │ │ │ │ │ ├── float2.c
│ │ │ │ │ │ ├── float3.c
│ │ │ │ │ │ ├── float4.c
│ │ │ │ │ │ ├── huge_struct.c
│ │ │ │ │ │ ├── many.c
│ │ │ │ │ │ ├── many_win32.c
│ │ │ │ │ │ ├── negint.c
│ │ │ │ │ │ ├── nested_struct.c
│ │ │ │ │ │ ├── nested_struct1.c
│ │ │ │ │ │ ├── nested_struct10.c
│ │ │ │ │ │ ├── nested_struct2.c
│ │ │ │ │ │ ├── nested_struct3.c
│ │ │ │ │ │ ├── nested_struct4.c
│ │ │ │ │ │ ├── nested_struct5.c
│ │ │ │ │ │ ├── nested_struct6.c
│ │ │ │ │ │ ├── nested_struct7.c
│ │ │ │ │ │ ├── nested_struct8.c
│ │ │ │ │ │ ├── nested_struct9.c
│ │ │ │ │ │ ├── problem1.c
│ │ │ │ │ │ ├── promotion.c
│ │ │ │ │ │ ├── pyobjc-tc.c
│ │ │ │ │ │ ├── return_dbl.c
│ │ │ │ │ │ ├── return_dbl1.c
│ │ │ │ │ │ ├── return_dbl2.c
│ │ │ │ │ │ ├── return_fl.c
│ │ │ │ │ │ ├── return_fl1.c
│ │ │ │ │ │ ├── return_fl2.c
│ │ │ │ │ │ ├── return_fl3.c
│ │ │ │ │ │ ├── return_ldl.c
│ │ │ │ │ │ ├── return_ll.c
│ │ │ │ │ │ ├── return_ll1.c
│ │ │ │ │ │ ├── return_sc.c
│ │ │ │ │ │ ├── return_sl.c
│ │ │ │ │ │ ├── return_uc.c
│ │ │ │ │ │ ├── return_ul.c
│ │ │ │ │ │ ├── stret_large.c
│ │ │ │ │ │ ├── stret_large2.c
│ │ │ │ │ │ ├── stret_medium.c
│ │ │ │ │ │ ├── stret_medium2.c
│ │ │ │ │ │ ├── strlen.c
│ │ │ │ │ │ ├── strlen_win32.c
│ │ │ │ │ │ ├── struct1.c
│ │ │ │ │ │ ├── struct2.c
│ │ │ │ │ │ ├── struct3.c
│ │ │ │ │ │ ├── struct4.c
│ │ │ │ │ │ ├── struct5.c
│ │ │ │ │ │ ├── struct6.c
│ │ │ │ │ │ ├── struct7.c
│ │ │ │ │ │ ├── struct8.c
│ │ │ │ │ │ ├── struct9.c
│ │ │ │ │ │ └── testclosure.c
│ │ │ │ │ └── libffi.special/
│ │ │ │ │ ├── ffitestcxx.h
│ │ │ │ │ ├── special.exp
│ │ │ │ │ ├── unwindtest.cc
│ │ │ │ │ └── unwindtest_ffi_call.cc
│ │ │ │ ├── texinfo.tex
│ │ │ │ └── win32/
│ │ │ │ ├── .git-darcs-dir
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README
│ │ │ │ ├── README.ctypes
│ │ │ │ ├── ffi.c
│ │ │ │ ├── ffi.h
│ │ │ │ ├── ffi_common.h
│ │ │ │ ├── fficonfig.h
│ │ │ │ ├── ffitarget.h
│ │ │ │ ├── prep_cif.c
│ │ │ │ ├── types.c
│ │ │ │ ├── win32.c
│ │ │ │ └── win64.asm
│ │ │ ├── rockspec/
│ │ │ │ ├── .git-darcs-dir
│ │ │ │ ├── alien-0.3.1-1.rockspec
│ │ │ │ ├── alien-0.3.2-1.rockspec
│ │ │ │ ├── alien-0.4.0-1.rockspec
│ │ │ │ ├── alien-0.4.1-1.rockspec
│ │ │ │ ├── alien-0.5.0-1.rockspec
│ │ │ │ ├── alien-0.5.1-1.rockspec
│ │ │ │ └── alien-cvs-1.rockspec
│ │ │ ├── samples/
│ │ │ │ ├── .git-darcs-dir
│ │ │ │ ├── gtk.lua
│ │ │ │ ├── libc.lua
│ │ │ │ └── string_array.lua
│ │ │ ├── src/
│ │ │ │ ├── .git-darcs-dir
│ │ │ │ ├── alien/
│ │ │ │ │ ├── .git-darcs-dir
│ │ │ │ │ ├── core.c
│ │ │ │ │ ├── core.def
│ │ │ │ │ ├── struct.c
│ │ │ │ │ └── struct.def
│ │ │ │ ├── alien.lua
│ │ │ │ └── constants
│ │ │ └── tests/
│ │ │ ├── .git-darcs-dir
│ │ │ ├── alientest.c
│ │ │ └── test_alien.lua
│ │ ├── bitop/
│ │ │ ├── Makefile
│ │ │ ├── Makefile.mingw
│ │ │ ├── README
│ │ │ ├── bit.c
│ │ │ ├── bitbench.lua
│ │ │ ├── bittest.lua
│ │ │ ├── doc/
│ │ │ │ ├── api.html
│ │ │ │ ├── bluequad-print.css
│ │ │ │ ├── bluequad.css
│ │ │ │ ├── changes.html
│ │ │ │ ├── contact.html
│ │ │ │ ├── index.html
│ │ │ │ ├── install.html
│ │ │ │ └── semantics.html
│ │ │ ├── installpath.lua
│ │ │ ├── md5test.lua
│ │ │ ├── msvcbuild.bat
│ │ │ ├── msvctest.bat
│ │ │ └── nsievebits.lua
│ │ ├── cgilua/
│ │ │ ├── Makefile
│ │ │ ├── Makefile.win
│ │ │ ├── README
│ │ │ ├── doc/
│ │ │ │ ├── br/
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── libraries.html
│ │ │ │ │ ├── license.html
│ │ │ │ │ ├── manual.html
│ │ │ │ │ ├── reference.html
│ │ │ │ │ └── sapi.html
│ │ │ │ └── us/
│ │ │ │ ├── doc.css
│ │ │ │ ├── index.html
│ │ │ │ ├── libraries.html
│ │ │ │ ├── license.html
│ │ │ │ ├── manual.html
│ │ │ │ ├── reference.html
│ │ │ │ └── sapi.html
│ │ │ ├── examples/
│ │ │ │ ├── app.lua
│ │ │ │ ├── authentication_conf.lua
│ │ │ │ ├── cgilua/
│ │ │ │ │ └── config.lua
│ │ │ │ ├── check.lua
│ │ │ │ ├── css/
│ │ │ │ │ └── doc.css
│ │ │ │ ├── index.lp
│ │ │ │ ├── login.lp
│ │ │ │ └── test.lp
│ │ │ ├── rockspec/
│ │ │ │ ├── cgilua-5.1.2-1.rockspec
│ │ │ │ ├── cgilua-5.1.2-2.rockspec
│ │ │ │ ├── cgilua-5.1.2rc1-1.rockspec
│ │ │ │ ├── cgilua-5.1.3-1.rockspec
│ │ │ │ ├── cgilua-5.1.4-1.rockspec
│ │ │ │ ├── cgilua-5.2-1.rockspec
│ │ │ │ ├── cgilua-5.2-2.rockspec
│ │ │ │ ├── cgilua-cvs-2.rockspec
│ │ │ │ ├── cgilua-cvs-3.rockspec
│ │ │ │ └── cgilua-cvs-4.rockspec
│ │ │ ├── src/
│ │ │ │ ├── cgilua/
│ │ │ │ │ ├── authentication.lua
│ │ │ │ │ ├── cgilua.lua
│ │ │ │ │ ├── cookies.lua
│ │ │ │ │ ├── dispatcher.lua
│ │ │ │ │ ├── loader.lua
│ │ │ │ │ ├── lp.lua
│ │ │ │ │ ├── mime.lua
│ │ │ │ │ ├── post.lua
│ │ │ │ │ ├── readuntil.lua
│ │ │ │ │ ├── serialize.lua
│ │ │ │ │ ├── session.lua
│ │ │ │ │ └── urlcode.lua
│ │ │ │ └── launchers/
│ │ │ │ ├── cgilua.cgi
│ │ │ │ └── cgilua.fcgi
│ │ │ └── tests/
│ │ │ ├── Makefile
│ │ │ ├── download.lua
│ │ │ ├── env.lua
│ │ │ ├── overview.lp
│ │ │ ├── prepara_sql2.lua
│ │ │ ├── tcgi1.lua
│ │ │ ├── test.html
│ │ │ ├── test_conc.lua
│ │ │ ├── test_cookies.lp
│ │ │ ├── test_cookies.lua
│ │ │ ├── test_err.lua
│ │ │ ├── test_fs.lua
│ │ │ ├── test_htk.lua
│ │ │ ├── test_lib.lua
│ │ │ ├── test_main.html
│ │ │ ├── test_main.lp
│ │ │ ├── test_main.lua
│ │ │ ├── test_session.lua
│ │ │ ├── test_sql.lua
│ │ │ ├── test_sql2.lua
│ │ │ ├── test_variables.lp
│ │ │ ├── tfcgi1.lua
│ │ │ └── tmod1.lua
│ │ ├── clipboard/
│ │ │ ├── clipboard.c
│ │ │ └── clipboard.jam
│ │ ├── copas/
│ │ │ ├── .gitignore
│ │ │ ├── .travis.yml
│ │ │ ├── Makefile
│ │ │ ├── Makefile.win
│ │ │ ├── README
│ │ │ ├── README.md
│ │ │ ├── doc/
│ │ │ │ └── us/
│ │ │ │ ├── doc.css
│ │ │ │ ├── index.html
│ │ │ │ ├── license.html
│ │ │ │ ├── manual.html
│ │ │ │ └── reference.html
│ │ │ ├── rockspec/
│ │ │ │ ├── copas-1.1.2-1.rockspec
│ │ │ │ ├── copas-1.1.3-1.rockspec
│ │ │ │ ├── copas-1.1.4-1.rockspec
│ │ │ │ ├── copas-1.1.5-1.rockspec
│ │ │ │ ├── copas-1.1.6-1.rockspec
│ │ │ │ ├── copas-1.2.0-1.rockspec
│ │ │ │ ├── copas-1.2.1-1.rockspec
│ │ │ │ ├── copas-2.0.0-1.rockspec
│ │ │ │ ├── copas-2.0.0-2.rockspec
│ │ │ │ ├── copas-2.0.1-1.rockspec
│ │ │ │ └── copas-cvs-4.rockspec
│ │ │ ├── src/
│ │ │ │ ├── copas/
│ │ │ │ │ ├── ftp.lua
│ │ │ │ │ ├── http.lua
│ │ │ │ │ ├── limit.lua
│ │ │ │ │ └── smtp.lua
│ │ │ │ └── copas.lua
│ │ │ └── tests/
│ │ │ ├── certs/
│ │ │ │ ├── clientA.pem
│ │ │ │ ├── clientAcert.pem
│ │ │ │ ├── clientAkey.pem
│ │ │ │ ├── clientAreq.pem
│ │ │ │ ├── rootA.pem
│ │ │ │ ├── rootAkey.pem
│ │ │ │ ├── rootAreq.pem
│ │ │ │ ├── serverA.pem
│ │ │ │ ├── serverAcert.pem
│ │ │ │ ├── serverAkey.pem
│ │ │ │ └── serverAreq.pem
│ │ │ ├── clientA.pem
│ │ │ ├── clientAcert.pem
│ │ │ ├── clientAkey.pem
│ │ │ ├── clientAreq.pem
│ │ │ ├── connecttwice.lua
│ │ │ ├── cosocket.lua
│ │ │ ├── exit.lua
│ │ │ ├── exittest.lua
│ │ │ ├── httpredirect.lua
│ │ │ ├── largetransfer.lua
│ │ │ ├── limit.lua
│ │ │ ├── request.lua
│ │ │ ├── rootA.pem
│ │ │ ├── rootAkey.pem
│ │ │ ├── rootAreq.pem
│ │ │ ├── serverA.pem
│ │ │ ├── serverAcert.pem
│ │ │ ├── serverAkey.pem
│ │ │ ├── serverAreq.pem
│ │ │ ├── test.lua
│ │ │ ├── testasyncspeed.lua
│ │ │ ├── testexit.lua
│ │ │ ├── testhttp.lua
│ │ │ ├── testhttps.lua
│ │ │ └── testlimit.lua
│ │ ├── cosmo/
│ │ │ ├── Makefile
│ │ │ ├── Makefile.win
│ │ │ ├── README
│ │ │ ├── configure
│ │ │ ├── doc/
│ │ │ │ ├── cosmo.md
│ │ │ │ ├── dummy
│ │ │ │ └── index.html
│ │ │ ├── rockspec/
│ │ │ │ ├── cosmo-10.03.31-1.rockspec
│ │ │ │ ├── cosmo-10.04.06-1.rockspec
│ │ │ │ ├── cosmo-13.01.30-1.rockspec
│ │ │ │ ├── cosmo-14.03.04-1.rockspec
│ │ │ │ ├── cosmo-8.02.18-1.rockspec
│ │ │ │ ├── cosmo-8.04.04-1.rockspec
│ │ │ │ ├── cosmo-8.04.14-1.rockspec
│ │ │ │ ├── cosmo-8.04.14-2.rockspec
│ │ │ │ ├── cosmo-9.09.22-1.rockspec
│ │ │ │ └── cosmo-current-1.rockspec
│ │ │ ├── samples/
│ │ │ │ └── sample.lua
│ │ │ ├── src/
│ │ │ │ ├── cosmo/
│ │ │ │ │ ├── fill.lua
│ │ │ │ │ └── grammar.lua
│ │ │ │ └── cosmo.lua
│ │ │ └── tests/
│ │ │ └── test_cosmo.lua
│ │ ├── coxpcall/
│ │ │ ├── Makefile
│ │ │ ├── Makefile.win
│ │ │ ├── README.md
│ │ │ ├── configure
│ │ │ ├── doc/
│ │ │ │ ├── doc.css
│ │ │ │ ├── index.html
│ │ │ │ └── license.html
│ │ │ ├── rockspec/
│ │ │ │ ├── coxpcall-1.11.0-1.rockspec
│ │ │ │ ├── coxpcall-1.12.0-1.rockspec
│ │ │ │ ├── coxpcall-1.12.0rc1-1.rockspec
│ │ │ │ ├── coxpcall-1.13.0-1.rockspec
│ │ │ │ ├── coxpcall-1.13.0-2.rockspec
│ │ │ │ ├── coxpcall-1.14.0-1.rockspec
│ │ │ │ ├── coxpcall-1.14.0-2.rockspec
│ │ │ │ ├── coxpcall-1.15.0-1.rockspec
│ │ │ │ ├── coxpcall-1.16.0-1.rockspec
│ │ │ │ ├── coxpcall-cvs-1.rockspec
│ │ │ │ ├── coxpcall-cvs-2.rockspec
│ │ │ │ └── coxpcall-scm-1.rockspec
│ │ │ └── src/
│ │ │ └── coxpcall.lua
│ │ ├── date/
│ │ │ ├── .busted
│ │ │ ├── .travis.yml
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── config.ld
│ │ │ ├── date-2.1.1-1.rockspec
│ │ │ ├── date.lua
│ │ │ ├── doc/
│ │ │ │ └── index.html
│ │ │ ├── samples/
│ │ │ │ ├── mkcalendar.lua
│ │ │ │ ├── mkisocal.lua
│ │ │ │ └── tests.lua
│ │ │ └── spec/
│ │ │ └── date_spec.lua
│ │ ├── dotnet/
│ │ │ ├── dotnet.cpp
│ │ │ ├── dotnet.jam
│ │ │ ├── luastdcall.cpp
│ │ │ └── luastdcall.h
│ │ ├── dotnetinterface/
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── CheckType.cs
│ │ │ ├── GenerateEventAssembly.cs
│ │ │ ├── Lua.cs
│ │ │ ├── LuaDLL.cs
│ │ │ ├── LuaException.cs
│ │ │ ├── Metatables.cs
│ │ │ ├── MethodWrapper.cs
│ │ │ ├── ObjectTranslator.cs
│ │ │ ├── ProxyType.cs
│ │ │ ├── README.txt
│ │ │ ├── dotnetinterface.csproj
│ │ │ └── luainterface.snk
│ │ ├── expand/
│ │ │ └── expand.lua
│ │ ├── ezdav/
│ │ │ ├── ezdav.jam
│ │ │ └── src/
│ │ │ ├── buffer.c
│ │ │ ├── buffer.h
│ │ │ ├── davglob.c
│ │ │ ├── davglob.h
│ │ │ ├── ezdav.c
│ │ │ └── ezdavlib/
│ │ │ ├── .gitignore
│ │ │ ├── Jamfile.jam
│ │ │ ├── README.md
│ │ │ ├── changelog.txt
│ │ │ ├── date_decode.c
│ │ │ ├── date_decode.h
│ │ │ ├── davclient/
│ │ │ │ ├── CreateJamVS2010Workspace.bat
│ │ │ │ ├── Jamfile.jam
│ │ │ │ ├── davclient.c
│ │ │ │ ├── tlsf.c
│ │ │ │ ├── tlsf.h
│ │ │ │ └── tlsfbits.h
│ │ │ ├── digcalc.c
│ │ │ ├── digcalc.h
│ │ │ ├── global.h
│ │ │ ├── high_level_webdav_functions.c
│ │ │ ├── high_level_webdav_functions.h
│ │ │ ├── http.c
│ │ │ ├── http.h
│ │ │ ├── http_storage.c
│ │ │ ├── http_storage.h
│ │ │ ├── md5.c
│ │ │ ├── md5.h
│ │ │ ├── strutl.c
│ │ │ ├── strutl.h
│ │ │ ├── webdav.c
│ │ │ ├── webdav.def
│ │ │ ├── webdav.h
│ │ │ ├── xml_tree.c
│ │ │ └── xml_tree.h
│ │ ├── filefind/
│ │ │ ├── doc/
│ │ │ │ └── us/
│ │ │ │ ├── doc.bat
│ │ │ │ ├── doc.css
│ │ │ │ ├── index.html
│ │ │ │ ├── index.md
│ │ │ │ └── makedoc.lua
│ │ │ ├── filefind.jam
│ │ │ ├── readme.md
│ │ │ ├── src/
│ │ │ │ ├── buffer.c
│ │ │ │ ├── buffer.h
│ │ │ │ ├── filefind.c
│ │ │ │ ├── fileglob.c
│ │ │ │ └── fileglob.h
│ │ │ └── tests/
│ │ │ └── test.lua
│ │ ├── getopt/
│ │ │ ├── getopt.jam
│ │ │ ├── src/
│ │ │ │ └── getopt.lua
│ │ │ └── test/
│ │ │ └── testgetopt.lua
│ │ ├── lanes/
│ │ │ ├── ABOUT
│ │ │ ├── BUGS
│ │ │ ├── CHANGES
│ │ │ ├── CMakeLists.txt
│ │ │ ├── COPYRIGHT
│ │ │ ├── Makefile
│ │ │ ├── README
│ │ │ ├── TODO
│ │ │ ├── dist.cmake
│ │ │ ├── dist.info
│ │ │ ├── docs/
│ │ │ │ ├── Lua multithreading choices.graffle
│ │ │ │ ├── comparison.html
│ │ │ │ ├── index.html
│ │ │ │ └── performance.ods
│ │ │ ├── lanes-3.8.3-1.rockspec
│ │ │ ├── lanes-3.9.6-1.rockspec
│ │ │ ├── make-vc.cmd
│ │ │ ├── setup-vc.cmd
│ │ │ ├── src/
│ │ │ │ ├── .gitignore
│ │ │ │ ├── Makefile
│ │ │ │ ├── compat.c
│ │ │ │ ├── compat.h
│ │ │ │ ├── deep.c
│ │ │ │ ├── deep.h
│ │ │ │ ├── keeper.c
│ │ │ │ ├── keeper.h
│ │ │ │ ├── lanes.c
│ │ │ │ ├── lanes.h
│ │ │ │ ├── lanes.lua
│ │ │ │ ├── threading.c
│ │ │ │ ├── threading.h
│ │ │ │ ├── tools.c
│ │ │ │ └── tools.h
│ │ │ └── tests/
│ │ │ ├── appendud.lua
│ │ │ ├── argtable.lua
│ │ │ ├── assert.lua
│ │ │ ├── atexit.lua
│ │ │ ├── atomic.lua
│ │ │ ├── basic.lua
│ │ │ ├── cancel.lua
│ │ │ ├── cyclic.lua
│ │ │ ├── ehynes.lua
│ │ │ ├── errhangtest.lua
│ │ │ ├── error.lua
│ │ │ ├── fibonacci.lua
│ │ │ ├── fifo.lua
│ │ │ ├── finalizer.lua
│ │ │ ├── func_is_string.lua
│ │ │ ├── hangtest.lua
│ │ │ ├── irayo_closure.lua
│ │ │ ├── irayo_recursive.lua
│ │ │ ├── keeper.lua
│ │ │ ├── launchtest.lua
│ │ │ ├── linda_perf.lua
│ │ │ ├── nameof.lua
│ │ │ ├── objects.lua
│ │ │ ├── package.lua
│ │ │ ├── parallel_os_calls.lua
│ │ │ ├── perftest.lua
│ │ │ ├── pingpong.lua
│ │ │ ├── protectproxy.lua
│ │ │ ├── recursive.lua
│ │ │ ├── require.lua
│ │ │ ├── rupval.lua
│ │ │ └── timer.lua
│ │ ├── lbuffer/
│ │ │ ├── .gitignore
│ │ │ ├── Makefile
│ │ │ ├── README.rst
│ │ │ ├── lb_interface.c
│ │ │ ├── lbuffer.c
│ │ │ ├── lbuffer.h
│ │ │ ├── lua_with_lbuffer/
│ │ │ │ ├── linit_modified.c
│ │ │ │ └── luavs_lbuffer.bat
│ │ │ └── test.lua
│ │ ├── lexers/
│ │ │ ├── c.lua
│ │ │ ├── csv.lua
│ │ │ ├── ini.lua
│ │ │ └── lexers.jam
│ │ ├── libexpat/
│ │ │ ├── .gitignore
│ │ │ ├── .travis.sh
│ │ │ ├── .travis.yml
│ │ │ ├── README.md
│ │ │ ├── appveyor.yml
│ │ │ ├── expat/
│ │ │ │ ├── .gitignore
│ │ │ │ ├── AUTHORS
│ │ │ │ ├── CMake.README
│ │ │ │ ├── CMakeLists.txt
│ │ │ │ ├── COPYING
│ │ │ │ ├── Changes
│ │ │ │ ├── ConfigureChecks.cmake
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── README.md
│ │ │ │ ├── buildconf.sh
│ │ │ │ ├── clean_coverage.sh
│ │ │ │ ├── configure.ac
│ │ │ │ ├── conftools/
│ │ │ │ │ ├── .gitignore
│ │ │ │ │ ├── PrintPath
│ │ │ │ │ ├── ac_c_bigendian_cross.m4
│ │ │ │ │ ├── expat.m4
│ │ │ │ │ └── get-version.sh
│ │ │ │ ├── coverage.sh
│ │ │ │ ├── doc/
│ │ │ │ │ ├── .gitignore
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── reference.html
│ │ │ │ │ ├── style.css
│ │ │ │ │ └── xmlwf.xml
│ │ │ │ ├── examples/
│ │ │ │ │ ├── .gitignore
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── elements.c
│ │ │ │ │ ├── elements.vcxproj
│ │ │ │ │ ├── elements.vcxproj.filters
│ │ │ │ │ ├── outline.c
│ │ │ │ │ ├── outline.vcxproj
│ │ │ │ │ └── outline.vcxproj.filters
│ │ │ │ ├── expat.pc.in
│ │ │ │ ├── expat.sln
│ │ │ │ ├── expat.spec
│ │ │ │ ├── expat_config.h.cmake
│ │ │ │ ├── gennmtab/
│ │ │ │ │ ├── .gitignore
│ │ │ │ │ └── gennmtab.c
│ │ │ │ ├── lib/
│ │ │ │ │ ├── .gitignore
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── ascii.h
│ │ │ │ │ ├── asciitab.h
│ │ │ │ │ ├── expat.vcxproj
│ │ │ │ │ ├── expat.vcxproj.filters
│ │ │ │ │ ├── expat_external.h
│ │ │ │ │ ├── expat_static.vcxproj
│ │ │ │ │ ├── expat_static.vcxproj.filters
│ │ │ │ │ ├── expatw.vcxproj
│ │ │ │ │ ├── expatw.vcxproj.filters
│ │ │ │ │ ├── expatw_static.vcxproj
│ │ │ │ │ ├── expatw_static.vcxproj.filters
│ │ │ │ │ ├── iasciitab.h
│ │ │ │ │ ├── internal.h
│ │ │ │ │ ├── latin1tab.h
│ │ │ │ │ ├── libexpat.def
│ │ │ │ │ ├── libexpatw.def
│ │ │ │ │ ├── loadlibrary.c
│ │ │ │ │ ├── nametab.h
│ │ │ │ │ ├── siphash.h
│ │ │ │ │ ├── utf8tab.h
│ │ │ │ │ ├── winconfig.h
│ │ │ │ │ ├── xmlparse.c
│ │ │ │ │ ├── xmlrole.c
│ │ │ │ │ ├── xmlrole.h
│ │ │ │ │ ├── xmltok.c
│ │ │ │ │ ├── xmltok.h
│ │ │ │ │ ├── xmltok_impl.c
│ │ │ │ │ ├── xmltok_impl.h
│ │ │ │ │ └── xmltok_ns.c
│ │ │ │ ├── memory-sanitizer-blacklist.txt
│ │ │ │ ├── qa.sh
│ │ │ │ ├── run.sh.in
│ │ │ │ ├── test-driver-wrapper.sh
│ │ │ │ ├── tests/
│ │ │ │ │ ├── .gitignore
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── README.txt
│ │ │ │ │ ├── benchmark/
│ │ │ │ │ │ ├── .gitignore
│ │ │ │ │ │ ├── Makefile.am
│ │ │ │ │ │ ├── README.txt
│ │ │ │ │ │ ├── benchmark.c
│ │ │ │ │ │ ├── benchmark.sln
│ │ │ │ │ │ └── benchmark.vcxproj
│ │ │ │ │ ├── chardata.c
│ │ │ │ │ ├── chardata.h
│ │ │ │ │ ├── memcheck.c
│ │ │ │ │ ├── memcheck.h
│ │ │ │ │ ├── minicheck.c
│ │ │ │ │ ├── minicheck.h
│ │ │ │ │ ├── runtests.c
│ │ │ │ │ ├── runtests.sln
│ │ │ │ │ ├── runtests.vcxproj
│ │ │ │ │ ├── runtests.vcxproj.filters
│ │ │ │ │ ├── runtestspp.cpp
│ │ │ │ │ ├── structdata.c
│ │ │ │ │ ├── structdata.h
│ │ │ │ │ ├── udiffer.py
│ │ │ │ │ ├── xmltest.log.expected
│ │ │ │ │ └── xmltest.sh
│ │ │ │ └── win32/
│ │ │ │ ├── .gitignore
│ │ │ │ ├── MANIFEST.txt
│ │ │ │ ├── README.txt
│ │ │ │ └── expat.iss
│ │ │ └── testdata/
│ │ │ ├── README.txt
│ │ │ └── largefiles/
│ │ │ ├── README.txt
│ │ │ ├── nes96.xml
│ │ │ ├── ns_att_test.xml
│ │ │ ├── recset.xml
│ │ │ └── wordnet_glossary-20010201.rdf
│ │ ├── loop/
│ │ │ ├── LICENSE
│ │ │ ├── RELEASE
│ │ │ ├── doc/
│ │ │ │ ├── contact.html
│ │ │ │ ├── index.html
│ │ │ │ ├── latests.html
│ │ │ │ ├── layout1.css
│ │ │ │ ├── layout2.css
│ │ │ │ ├── layout3.css
│ │ │ │ ├── library/
│ │ │ │ │ ├── collection/
│ │ │ │ │ │ ├── MapWithArrayOfKeys.html
│ │ │ │ │ │ ├── ObjectCache.html
│ │ │ │ │ │ ├── OrderedSet.html
│ │ │ │ │ │ ├── PriorityQueue.html
│ │ │ │ │ │ ├── UnorderedArray.html
│ │ │ │ │ │ └── UnorderedArraySet.html
│ │ │ │ │ ├── compiler/
│ │ │ │ │ │ ├── Arguments.html
│ │ │ │ │ │ ├── Conditional.html
│ │ │ │ │ │ └── Expression.html
│ │ │ │ │ ├── debug/
│ │ │ │ │ │ ├── Inspector.html
│ │ │ │ │ │ ├── Matcher.html
│ │ │ │ │ │ ├── Verbose.html
│ │ │ │ │ │ └── Viewer.html
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── object/
│ │ │ │ │ │ ├── Exception.html
│ │ │ │ │ │ ├── Publisher.html
│ │ │ │ │ │ └── Wrapper.html
│ │ │ │ │ ├── overview.html
│ │ │ │ │ ├── serial/
│ │ │ │ │ │ ├── FileStream.html
│ │ │ │ │ │ ├── Serializer.html
│ │ │ │ │ │ ├── SocketStream.html
│ │ │ │ │ │ └── StringStream.html
│ │ │ │ │ └── thread/
│ │ │ │ │ ├── CoSocket.html
│ │ │ │ │ ├── IOScheduler.html
│ │ │ │ │ ├── Scheduler.html
│ │ │ │ │ ├── SocketScheduler.html
│ │ │ │ │ └── Timer.html
│ │ │ │ ├── loop.css
│ │ │ │ ├── manual/
│ │ │ │ │ ├── basics.html
│ │ │ │ │ ├── classops.html
│ │ │ │ │ ├── components.html
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── intro.html
│ │ │ │ │ └── models.html
│ │ │ │ ├── news.html
│ │ │ │ └── release/
│ │ │ │ ├── changes.html
│ │ │ │ ├── index.html
│ │ │ │ ├── preload.html
│ │ │ │ └── previous.html
│ │ │ └── lua/
│ │ │ ├── loop/
│ │ │ │ ├── base.lua
│ │ │ │ ├── cached.lua
│ │ │ │ ├── collection/
│ │ │ │ │ ├── MapWithArrayOfKeys.lua
│ │ │ │ │ ├── ObjectCache.lua
│ │ │ │ │ ├── OrderedSet.lua
│ │ │ │ │ ├── PriorityQueue.lua
│ │ │ │ │ ├── UnorderedArray.lua
│ │ │ │ │ └── UnorderedArraySet.lua
│ │ │ │ ├── compiler/
│ │ │ │ │ ├── Arguments.lua
│ │ │ │ │ ├── Conditional.lua
│ │ │ │ │ └── Expression.lua
│ │ │ │ ├── component/
│ │ │ │ │ ├── base.lua
│ │ │ │ │ ├── contained.lua
│ │ │ │ │ ├── dynamic.lua
│ │ │ │ │ ├── intercepted.lua
│ │ │ │ │ └── wrapped.lua
│ │ │ │ ├── debug/
│ │ │ │ │ ├── Inspector.lua
│ │ │ │ │ ├── Matcher.lua
│ │ │ │ │ ├── Verbose.lua
│ │ │ │ │ └── Viewer.lua
│ │ │ │ ├── multiple.lua
│ │ │ │ ├── object/
│ │ │ │ │ ├── Exception.lua
│ │ │ │ │ ├── Publisher.lua
│ │ │ │ │ └── Wrapper.lua
│ │ │ │ ├── scoped.lua
│ │ │ │ ├── serial/
│ │ │ │ │ ├── FileStream.lua
│ │ │ │ │ ├── Serializer.lua
│ │ │ │ │ ├── SocketStream.lua
│ │ │ │ │ └── StringStream.lua
│ │ │ │ ├── simple.lua
│ │ │ │ ├── table.lua
│ │ │ │ └── thread/
│ │ │ │ ├── CoSocket.lua
│ │ │ │ ├── IOScheduler.lua
│ │ │ │ ├── Scheduler.lua
│ │ │ │ ├── SocketScheduler.lua
│ │ │ │ └── Timer.lua
│ │ │ ├── precompiler.lua
│ │ │ └── preloader.lua
│ │ ├── lpeg/
│ │ │ ├── HISTORY
│ │ │ ├── lpcap.c
│ │ │ ├── lpcap.h
│ │ │ ├── lpcode.c
│ │ │ ├── lpcode.h
│ │ │ ├── lpeg.html
│ │ │ ├── lpprint.c
│ │ │ ├── lpprint.h
│ │ │ ├── lptree.c
│ │ │ ├── lptree.h
│ │ │ ├── lptypes.h
│ │ │ ├── lpvm.c
│ │ │ ├── lpvm.h
│ │ │ ├── makefile
│ │ │ ├── re.html
│ │ │ ├── re.lua
│ │ │ └── test.lua
│ │ ├── lqt/
│ │ │ ├── BUILD
│ │ │ ├── CMakeLists.txt
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── TODO
│ │ │ ├── common/
│ │ │ │ ├── lqt_common.cpp
│ │ │ │ ├── lqt_common.hpp
│ │ │ │ ├── lqt_qt.cpp
│ │ │ │ └── lqt_qt.hpp
│ │ │ ├── cpptoxml/
│ │ │ │ ├── CMakeLists.txt
│ │ │ │ ├── Jamfile.jam
│ │ │ │ ├── README
│ │ │ │ ├── cpptoxml.pro
│ │ │ │ ├── gpl-2.0.txt
│ │ │ │ ├── main.cpp
│ │ │ │ └── parser/
│ │ │ │ ├── ast.cpp
│ │ │ │ ├── ast.h
│ │ │ │ ├── binder.cpp
│ │ │ │ ├── binder.h
│ │ │ │ ├── class_compiler.cpp
│ │ │ │ ├── class_compiler.h
│ │ │ │ ├── codemodel.cpp
│ │ │ │ ├── codemodel.h
│ │ │ │ ├── codemodel_finder.cpp
│ │ │ │ ├── codemodel_finder.h
│ │ │ │ ├── codemodel_fwd.h
│ │ │ │ ├── codemodel_pointer.h
│ │ │ │ ├── compiler_utils.cpp
│ │ │ │ ├── compiler_utils.h
│ │ │ │ ├── control.cpp
│ │ │ │ ├── control.h
│ │ │ │ ├── declarator_compiler.cpp
│ │ │ │ ├── declarator_compiler.h
│ │ │ │ ├── default_visitor.cpp
│ │ │ │ ├── default_visitor.h
│ │ │ │ ├── dumptree.cpp
│ │ │ │ ├── dumptree.h
│ │ │ │ ├── include/
│ │ │ │ │ └── stdarg.h
│ │ │ │ ├── lexer.cpp
│ │ │ │ ├── lexer.h
│ │ │ │ ├── list.cpp
│ │ │ │ ├── list.h
│ │ │ │ ├── name_compiler.cpp
│ │ │ │ ├── name_compiler.h
│ │ │ │ ├── parser.cpp
│ │ │ │ ├── parser.h
│ │ │ │ ├── r++.macros
│ │ │ │ ├── rpp/
│ │ │ │ │ ├── builtin-macros.cpp
│ │ │ │ │ ├── pp-cctype.h
│ │ │ │ │ ├── pp-configuration
│ │ │ │ │ ├── pp-engine-bits.h
│ │ │ │ │ ├── pp-engine.h
│ │ │ │ │ ├── pp-environment.h
│ │ │ │ │ ├── pp-fwd.h
│ │ │ │ │ ├── pp-internal.h
│ │ │ │ │ ├── pp-iterator.h
│ │ │ │ │ ├── pp-macro-expander.h
│ │ │ │ │ ├── pp-macro.h
│ │ │ │ │ ├── pp-main.cpp
│ │ │ │ │ ├── pp-qt-configuration
│ │ │ │ │ ├── pp-qt-configuration-win
│ │ │ │ │ ├── pp-scanner.h
│ │ │ │ │ ├── pp-string.h
│ │ │ │ │ ├── pp-symbol.h
│ │ │ │ │ ├── pp.h
│ │ │ │ │ ├── preprocessor.cpp
│ │ │ │ │ ├── preprocessor.h
│ │ │ │ │ └── rpp.pri
│ │ │ │ ├── rpp-allocator.h
│ │ │ │ ├── rxx.pri
│ │ │ │ ├── rxx.pro
│ │ │ │ ├── rxx_allocator.h
│ │ │ │ ├── smallobject.cpp
│ │ │ │ ├── smallobject.h
│ │ │ │ ├── symbol.h
│ │ │ │ ├── tokens.cpp
│ │ │ │ ├── tokens.h
│ │ │ │ ├── type_compiler.cpp
│ │ │ │ ├── type_compiler.h
│ │ │ │ ├── visitor.cpp
│ │ │ │ └── visitor.h
│ │ │ ├── doc/
│ │ │ │ ├── USAGE.md
│ │ │ │ └── no-cmake-build.txt
│ │ │ ├── generator/
│ │ │ │ ├── class_types.lua
│ │ │ │ ├── classes.lua
│ │ │ │ ├── enums.lua
│ │ │ │ ├── generator.lua
│ │ │ │ ├── operators.lua
│ │ │ │ ├── properties.lua
│ │ │ │ ├── qt_internal.lua
│ │ │ │ ├── qtemplates.lua
│ │ │ │ ├── qtypes.lua
│ │ │ │ ├── signalslot.lua
│ │ │ │ ├── templates.lua
│ │ │ │ ├── types.lua
│ │ │ │ ├── virtuals.lua
│ │ │ │ └── xml.lua
│ │ │ └── test/
│ │ │ ├── file_test.lua
│ │ │ ├── mm.lua
│ │ │ ├── noqt/
│ │ │ │ ├── n.lua
│ │ │ │ ├── n1
│ │ │ │ ├── n2
│ │ │ │ ├── n3
│ │ │ │ └── noqt
│ │ │ ├── sql_test.lua
│ │ │ ├── t1.lua
│ │ │ ├── t2.lua
│ │ │ ├── t3.lua
│ │ │ ├── t4.lua
│ │ │ ├── t5.lua
│ │ │ ├── t6.lua
│ │ │ ├── t7.lua
│ │ │ ├── virt_test.lua
│ │ │ └── webview.lua
│ │ ├── lrexlib/
│ │ │ ├── .gitignore
│ │ │ ├── ChangeLog.old
│ │ │ ├── LICENSE
│ │ │ ├── Makefile
│ │ │ ├── NEWS
│ │ │ ├── README.rst
│ │ │ ├── doc/
│ │ │ │ ├── .gitignore
│ │ │ │ ├── Makefile
│ │ │ │ ├── SciTE.properties
│ │ │ │ ├── html4css1.css
│ │ │ │ ├── license.html
│ │ │ │ ├── lrexlib.css
│ │ │ │ └── manual.txt
│ │ │ ├── luarocks-config.lua
│ │ │ ├── mkrockspecs.lua
│ │ │ ├── rockspecs.lua
│ │ │ ├── src/
│ │ │ │ ├── algo.h
│ │ │ │ ├── common.c
│ │ │ │ ├── common.h
│ │ │ │ ├── gnu/
│ │ │ │ │ └── lgnu.c
│ │ │ │ ├── oniguruma/
│ │ │ │ │ ├── lonig.c
│ │ │ │ │ └── lonig_f.c
│ │ │ │ ├── pcre/
│ │ │ │ │ ├── lpcre.c
│ │ │ │ │ └── lpcre_f.c
│ │ │ │ ├── posix/
│ │ │ │ │ └── lposix.c
│ │ │ │ └── tre/
│ │ │ │ ├── ltre.c
│ │ │ │ └── ltre_w.c
│ │ │ ├── test/
│ │ │ │ ├── README
│ │ │ │ ├── common_sets.lua
│ │ │ │ ├── emacs_sets.lua
│ │ │ │ ├── gnu_sets.lua
│ │ │ │ ├── luatest.lua
│ │ │ │ ├── oniguruma_sets.lua
│ │ │ │ ├── pat2pcre.lua
│ │ │ │ ├── pcre_sets.lua
│ │ │ │ ├── pcre_sets2.lua
│ │ │ │ ├── posix_sets.lua
│ │ │ │ ├── runtest.lua
│ │ │ │ ├── scite.properties
│ │ │ │ ├── spencer_sets.lua
│ │ │ │ └── tre_sets.lua
│ │ │ └── windows/
│ │ │ └── mingw/
│ │ │ ├── Makefile
│ │ │ ├── _mingw.mak
│ │ │ ├── docs.mak
│ │ │ ├── rex_gnu.mak
│ │ │ ├── rex_onig.mak
│ │ │ ├── rex_pcre.mak
│ │ │ ├── rex_spencer.mak
│ │ │ └── rex_tre.mak
│ │ ├── lsqlite3/
│ │ │ ├── HISTORY
│ │ │ ├── Makefile
│ │ │ ├── doc/
│ │ │ │ └── lsqlite3.wiki
│ │ │ ├── examples/
│ │ │ │ ├── aggregate.lua
│ │ │ │ ├── function.lua
│ │ │ │ ├── hooks_advanced.lua
│ │ │ │ ├── order.lua
│ │ │ │ ├── simple.lua
│ │ │ │ ├── smart.lua
│ │ │ │ ├── statement.lua
│ │ │ │ ├── tracing.lua
│ │ │ │ └── update_hook.lua
│ │ │ ├── extras/
│ │ │ │ ├── Makefile
│ │ │ │ └── installpath.lua
│ │ │ ├── lsqlite3-0.9.1-1.rockspec
│ │ │ ├── lsqlite3.c
│ │ │ └── test/
│ │ │ ├── test.lua
│ │ │ └── tests-sqlite3.lua
│ │ ├── lua-cityhash/
│ │ │ ├── City.cpp
│ │ │ ├── City.h
│ │ │ ├── Platform.h
│ │ │ ├── lcityhash.cpp
│ │ │ ├── lua-cityhash.jam
│ │ │ └── pstdint.h
│ │ ├── lua-cjson/
│ │ │ ├── CMakeLists.txt
│ │ │ ├── LICENSE
│ │ │ ├── Makefile
│ │ │ ├── NEWS
│ │ │ ├── THANKS
│ │ │ ├── dtoa.c
│ │ │ ├── dtoa_config.h
│ │ │ ├── fpconv.c
│ │ │ ├── fpconv.h
│ │ │ ├── g_fmt.c
│ │ │ ├── lua/
│ │ │ │ ├── cjson/
│ │ │ │ │ └── util.lua
│ │ │ │ ├── json2lua.lua
│ │ │ │ └── lua2json.lua
│ │ │ ├── lua-cjson-2.0.0-1.rockspec
│ │ │ ├── lua-cjson.spec
│ │ │ ├── lua_cjson.c
│ │ │ ├── manual.html
│ │ │ ├── manual.txt
│ │ │ ├── performance.html
│ │ │ ├── performance.txt
│ │ │ ├── rfc4627.txt
│ │ │ ├── runtests.sh
│ │ │ ├── strbuf.c
│ │ │ ├── strbuf.h
│ │ │ └── tests/
│ │ │ ├── README
│ │ │ ├── bench.lua
│ │ │ ├── example1.json
│ │ │ ├── example2.json
│ │ │ ├── example3.json
│ │ │ ├── example4.json
│ │ │ ├── example5.json
│ │ │ ├── genutf8.pl
│ │ │ ├── numbers.json
│ │ │ ├── rfc-example1.json
│ │ │ ├── rfc-example2.json
│ │ │ ├── test.lua
│ │ │ └── types.json
│ │ ├── lua-curl/
│ │ │ ├── .appveyor/
│ │ │ │ ├── install.bat
│ │ │ │ ├── install_curl.bat
│ │ │ │ └── pack_artifact.bat
│ │ │ ├── .config
│ │ │ ├── .gitignore
│ │ │ ├── .travis/
│ │ │ │ ├── platform.sh
│ │ │ │ └── setup_uv.sh
│ │ │ ├── .travis.yml
│ │ │ ├── LICENSE
│ │ │ ├── Makefile
│ │ │ ├── README.md
│ │ │ ├── appveyor.yml
│ │ │ ├── doc/
│ │ │ │ ├── config.ld
│ │ │ │ ├── curl.ldoc
│ │ │ │ └── lcurl.ldoc
│ │ │ ├── examples/
│ │ │ │ ├── cURLv2/
│ │ │ │ │ ├── browser.lua
│ │ │ │ │ ├── file.lua
│ │ │ │ │ ├── multi.lua
│ │ │ │ │ ├── post_stream.lua
│ │ │ │ │ └── rss.lua
│ │ │ │ ├── cURLv3/
│ │ │ │ │ ├── file.lua
│ │ │ │ │ ├── multi.lua
│ │ │ │ │ ├── multi2.lua
│ │ │ │ │ ├── multi3.lua
│ │ │ │ │ ├── pop3.lua
│ │ │ │ │ ├── post_form.lua
│ │ │ │ │ ├── post_json.lua
│ │ │ │ │ ├── post_mime.lua
│ │ │ │ │ ├── rss.lua
│ │ │ │ │ └── uvwget.lua
│ │ │ │ └── lcurl/
│ │ │ │ ├── crul_info.lua
│ │ │ │ ├── curl_debug.lua
│ │ │ │ ├── curl_info.lua
│ │ │ │ ├── easy.obj.lua
│ │ │ │ ├── file.lua
│ │ │ │ ├── fnmatch.lua
│ │ │ │ ├── ftpupload.lua
│ │ │ │ ├── multi.lua
│ │ │ │ ├── multi_iterator.lua
│ │ │ │ ├── pause.lua
│ │ │ │ ├── post.lua
│ │ │ │ ├── post_stream.lua
│ │ │ │ ├── share.lua
│ │ │ │ └── smtp-mime.lua
│ │ │ ├── lakeconfig.lua
│ │ │ ├── lakefile
│ │ │ ├── rockspecs/
│ │ │ │ ├── lua-curl-0.3.0-1.rockspec
│ │ │ │ ├── lua-curl-0.3.1-1.rockspec
│ │ │ │ ├── lua-curl-0.3.10-1.rockspec
│ │ │ │ ├── lua-curl-0.3.11-1.rockspec
│ │ │ │ ├── lua-curl-0.3.2-1.rockspec
│ │ │ │ ├── lua-curl-0.3.3-1.rockspec
│ │ │ │ ├── lua-curl-0.3.4-1.rockspec
│ │ │ │ ├── lua-curl-0.3.5-1.rockspec
│ │ │ │ ├── lua-curl-0.3.6-1.rockspec
│ │ │ │ ├── lua-curl-0.3.7-1.rockspec
│ │ │ │ ├── lua-curl-0.3.8-1.rockspec
│ │ │ │ ├── lua-curl-0.3.8-2.rockspec
│ │ │ │ ├── lua-curl-0.3.9-1.rockspec
│ │ │ │ └── lua-curl-scm-0.rockspec
│ │ │ ├── src/
│ │ │ │ ├── l52util.c
│ │ │ │ ├── l52util.h
│ │ │ │ ├── lceasy.c
│ │ │ │ ├── lceasy.h
│ │ │ │ ├── lcerr_easy.h
│ │ │ │ ├── lcerr_form.h
│ │ │ │ ├── lcerr_multi.h
│ │ │ │ ├── lcerr_share.h
│ │ │ │ ├── lcerr_url.h
│ │ │ │ ├── lcerror.c
│ │ │ │ ├── lcerror.h
│ │ │ │ ├── lcflags.h
│ │ │ │ ├── lchttppost.c
│ │ │ │ ├── lchttppost.h
│ │ │ │ ├── lcinfoeasy.h
│ │ │ │ ├── lcmime.c
│ │ │ │ ├── lcmime.h
│ │ │ │ ├── lcmulti.c
│ │ │ │ ├── lcmulti.h
│ │ │ │ ├── lcopteasy.h
│ │ │ │ ├── lcoptmulti.h
│ │ │ │ ├── lcoptshare.h
│ │ │ │ ├── lcopturl.h
│ │ │ │ ├── lcshare.c
│ │ │ │ ├── lcshare.h
│ │ │ │ ├── lcurl.c
│ │ │ │ ├── lcurl.h
│ │ │ │ ├── lcurlapi.c
│ │ │ │ ├── lcurlapi.h
│ │ │ │ ├── lcutils.c
│ │ │ │ ├── lcutils.h
│ │ │ │ └── lua/
│ │ │ │ ├── cURL/
│ │ │ │ │ ├── impl/
│ │ │ │ │ │ └── cURL.lua
│ │ │ │ │ ├── safe.lua
│ │ │ │ │ └── utils.lua
│ │ │ │ └── cURL.lua
│ │ │ └── test/
│ │ │ ├── .luacov
│ │ │ ├── lunit/
│ │ │ │ └── console.lua
│ │ │ ├── run.lua
│ │ │ ├── server.lua
│ │ │ ├── test_curl.lua
│ │ │ ├── test_easy.lua
│ │ │ ├── test_form.lua
│ │ │ ├── test_mime.lua
│ │ │ ├── test_multi_callback.lua
│ │ │ ├── test_multi_nested_callback.lua
│ │ │ ├── test_pause02.c.lua
│ │ │ ├── test_safe.lua
│ │ │ ├── test_urlapi.lua
│ │ │ └── utils.lua
│ │ ├── lua-ex/
│ │ │ ├── .cvsignore
│ │ │ ├── COPYRIGHT
│ │ │ ├── Changelog
│ │ │ ├── INSTALL
│ │ │ ├── JUST
│ │ │ ├── Makefile
│ │ │ ├── TODO
│ │ │ ├── conf.in
│ │ │ ├── doc/
│ │ │ │ └── us/
│ │ │ │ ├── doc.bat
│ │ │ │ ├── doc.css
│ │ │ │ ├── index.html
│ │ │ │ ├── index.md
│ │ │ │ └── makedoc.lua
│ │ │ ├── ex.lua
│ │ │ ├── lua-ex.jam
│ │ │ ├── posix/
│ │ │ │ ├── Makefile
│ │ │ │ ├── ex.c
│ │ │ │ ├── posix_spawn.c
│ │ │ │ ├── posix_spawn.h
│ │ │ │ ├── spawn.c
│ │ │ │ └── spawn.h
│ │ │ ├── readme.md
│ │ │ ├── shared/
│ │ │ │ ├── path.c
│ │ │ │ └── path.h
│ │ │ ├── tests/
│ │ │ │ ├── pathtests.lua
│ │ │ │ ├── rt1.lua
│ │ │ │ ├── rt2.lua
│ │ │ │ ├── rt3.lua
│ │ │ │ ├── rt4.lua
│ │ │ │ ├── rt5.lua
│ │ │ │ ├── rt6.lua
│ │ │ │ └── rt7.lua
│ │ │ └── w32api/
│ │ │ ├── Makefile
│ │ │ ├── dirent.c
│ │ │ ├── dirent.h
│ │ │ ├── ex.c
│ │ │ ├── pusherror.c
│ │ │ ├── pusherror.h
│ │ │ ├── spawn.c
│ │ │ └── spawn.h
│ │ ├── lua-memoryfile/
│ │ │ ├── .gitignore
│ │ │ ├── COPYRIGHT
│ │ │ ├── Changes
│ │ │ ├── MANIFEST
│ │ │ ├── Makefile
│ │ │ ├── README
│ │ │ ├── debian/
│ │ │ │ ├── .gitignore
│ │ │ │ ├── Makefile.Debian.conf
│ │ │ │ ├── changelog
│ │ │ │ ├── compat
│ │ │ │ ├── control
│ │ │ │ ├── copyright
│ │ │ │ ├── liblua5.1-memoryfile-dev.manpages
│ │ │ │ └── rules
│ │ │ ├── doc/
│ │ │ │ ├── .gitignore
│ │ │ │ └── lua-memoryfile.pod
│ │ │ ├── lunit-console.lua
│ │ │ ├── lunit.lua
│ │ │ ├── memoryfile-test.lua
│ │ │ ├── memoryfile.c
│ │ │ ├── memoryfile.h
│ │ │ └── test/
│ │ │ ├── io.lua
│ │ │ └── pristine.lua
│ │ ├── lua-murmurhash3/
│ │ │ ├── MurmurHash3.cpp
│ │ │ ├── MurmurHash3.h
│ │ │ ├── PMurHash.c
│ │ │ ├── PMurHash.h
│ │ │ ├── lmurmurhash3.c
│ │ │ └── lua-murmurhash3.jam
│ │ ├── lua-pb/
│ │ │ ├── .gitignore
│ │ │ ├── API.md
│ │ │ ├── README.md
│ │ │ ├── bench/
│ │ │ │ ├── bench.lua
│ │ │ │ ├── bench_ast.lua
│ │ │ │ └── bench_media.lua
│ │ │ ├── example_person.lua
│ │ │ ├── lua-pb-scm-0.rockspec
│ │ │ ├── pb/
│ │ │ │ ├── handlers.lua
│ │ │ │ ├── proto/
│ │ │ │ │ ├── grammar.lua
│ │ │ │ │ ├── parser.lua
│ │ │ │ │ ├── scanner.lua
│ │ │ │ │ └── util.lua
│ │ │ │ ├── standard/
│ │ │ │ │ ├── buffer.lua
│ │ │ │ │ ├── dump.lua
│ │ │ │ │ ├── message.lua
│ │ │ │ │ ├── pack.lua
│ │ │ │ │ ├── repeated.lua
│ │ │ │ │ ├── unknown.lua
│ │ │ │ │ └── unpack.lua
│ │ │ │ ├── standard.lua
│ │ │ │ └── utils.lua
│ │ │ ├── pb.lua
│ │ │ ├── person.proto
│ │ │ ├── protos/
│ │ │ │ ├── extend.proto
│ │ │ │ ├── foo.proto
│ │ │ │ ├── media.proto
│ │ │ │ ├── nested.proto
│ │ │ │ ├── nested2.proto
│ │ │ │ ├── speed.proto
│ │ │ │ └── test.proto
│ │ │ ├── tests/
│ │ │ │ ├── check_proto.lua
│ │ │ │ ├── decode.lua
│ │ │ │ ├── decode_raw.lua
│ │ │ │ ├── dump_ast.lua
│ │ │ │ ├── dump_names.lua
│ │ │ │ ├── dump_tokens.lua
│ │ │ │ ├── raw_decode_encode.lua
│ │ │ │ ├── test_media.lua
│ │ │ │ ├── test_require.lua
│ │ │ │ ├── test_varint.lua
│ │ │ │ └── test_zigzag.lua
│ │ │ └── utils.lua
│ │ ├── lua-plist/
│ │ │ ├── lua-plist.jam
│ │ │ └── src/
│ │ │ └── plist.lua
│ │ ├── lua-prettydump/
│ │ │ ├── doc/
│ │ │ │ └── us/
│ │ │ │ ├── doc.bat
│ │ │ │ ├── doc.css
│ │ │ │ ├── index.html
│ │ │ │ ├── index.md
│ │ │ │ └── makedoc.lua
│ │ │ ├── lua-prettydump.jam
│ │ │ ├── readme.md
│ │ │ └── src/
│ │ │ ├── LuaStateOutFile.h
│ │ │ ├── LuaStateOutString.h
│ │ │ └── LuaState_DumpObject.cpp
│ │ ├── lua-rapidjson/
│ │ │ ├── .busted
│ │ │ ├── .editorconfig
│ │ │ ├── .gitignore
│ │ │ ├── .luacheckrc
│ │ │ ├── .travis.yml
│ │ │ ├── API.md
│ │ │ ├── CMakeLists.txt
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── appveyor.yml
│ │ │ ├── cmake/
│ │ │ │ └── Modules/
│ │ │ │ └── FindLua.cmake
│ │ │ ├── performance/
│ │ │ │ ├── booleans.json
│ │ │ │ ├── floats.json
│ │ │ │ ├── guids.json
│ │ │ │ ├── integers.json
│ │ │ │ ├── mixed.json
│ │ │ │ ├── nulls.json
│ │ │ │ ├── paragraphs.json
│ │ │ │ └── run.lua
│ │ │ ├── rapidjson/
│ │ │ │ ├── .gitignore
│ │ │ │ ├── CHANGELOG.md
│ │ │ │ ├── include/
│ │ │ │ │ └── rapidjson/
│ │ │ │ │ ├── allocators.h
│ │ │ │ │ ├── cursorstreamwrapper.h
│ │ │ │ │ ├── document.h
│ │ │ │ │ ├── encodedstream.h
│ │ │ │ │ ├── encodings.h
│ │ │ │ │ ├── error/
│ │ │ │ │ │ ├── en.h
│ │ │ │ │ │ └── error.h
│ │ │ │ │ ├── filereadstream.h
│ │ │ │ │ ├── filewritestream.h
│ │ │ │ │ ├── fwd.h
│ │ │ │ │ ├── internal/
│ │ │ │ │ │ ├── biginteger.h
│ │ │ │ │ │ ├── diyfp.h
│ │ │ │ │ │ ├── dtoa.h
│ │ │ │ │ │ ├── ieee754.h
│ │ │ │ │ │ ├── itoa.h
│ │ │ │ │ │ ├── meta.h
│ │ │ │ │ │ ├── pow10.h
│ │ │ │ │ │ ├── regex.h
│ │ │ │ │ │ ├── stack.h
│ │ │ │ │ │ ├── strfunc.h
│ │ │ │ │ │ ├── strtod.h
│ │ │ │ │ │ └── swap.h
│ │ │ │ │ ├── istreamwrapper.h
│ │ │ │ │ ├── memorybuffer.h
│ │ │ │ │ ├── memorystream.h
│ │ │ │ │ ├── msinttypes/
│ │ │ │ │ │ ├── inttypes.h
│ │ │ │ │ │ └── stdint.h
│ │ │ │ │ ├── ostreamwrapper.h
│ │ │ │ │ ├── pointer.h
│ │ │ │ │ ├── prettywriter.h
│ │ │ │ │ ├── rapidjson.h
│ │ │ │ │ ├── reader.h
│ │ │ │ │ ├── schema.h
│ │ │ │ │ ├── stream.h
│ │ │ │ │ ├── stringbuffer.h
│ │ │ │ │ └── writer.h
│ │ │ │ ├── license.txt
│ │ │ │ ├── readme.md
│ │ │ │ └── readme.zh-cn.md
│ │ │ ├── rapidjson-0.6.1-1.rockspec
│ │ │ ├── spec/
│ │ │ │ ├── Document_spec.lua
│ │ │ │ ├── Schema_spec.lua
│ │ │ │ ├── empty-array.json
│ │ │ │ ├── empty-file.json
│ │ │ │ ├── empty-object.json
│ │ │ │ ├── json_array_spec.lua
│ │ │ │ ├── json_decode_spec.lua
│ │ │ │ ├── json_dump_spec.lua
│ │ │ │ ├── json_encode_spec.lua
│ │ │ │ ├── json_load_spec.lua
│ │ │ │ ├── json_null_spec.lua
│ │ │ │ └── json_object_spec.lua
│ │ │ └── src/
│ │ │ ├── Document.cpp
│ │ │ ├── Schema.cpp
│ │ │ ├── StringStream.hpp
│ │ │ ├── Userdata.hpp
│ │ │ ├── file.hpp
│ │ │ ├── luax.hpp
│ │ │ ├── rapidjson.cpp
│ │ │ ├── values.cpp
│ │ │ └── values.hpp
│ │ ├── lua-websockets/
│ │ │ ├── .gitignore
│ │ │ ├── .luacov
│ │ │ ├── .travis.yml
│ │ │ ├── API.md
│ │ │ ├── COPYRIGHT
│ │ │ ├── README.md
│ │ │ ├── examples/
│ │ │ │ ├── echo-server-copas.lua
│ │ │ │ └── echo-server-ev.lua
│ │ │ ├── lua-websockets.rockspec
│ │ │ ├── ludent.sh
│ │ │ ├── minify.sh
│ │ │ ├── perf/
│ │ │ │ └── encode_perf.lua
│ │ │ ├── publish
│ │ │ ├── rockspecs/
│ │ │ │ └── lua-websockets-scm-1.rockspec
│ │ │ ├── spec/
│ │ │ │ ├── client_ev_spec.lua
│ │ │ │ ├── client_spec.lua
│ │ │ │ ├── ev_common_spec.lua
│ │ │ │ ├── frame_spec.lua
│ │ │ │ ├── handshake_spec.lua
│ │ │ │ ├── server_copas_spec.lua
│ │ │ │ ├── server_ev_spec.lua
│ │ │ │ └── tools_spec.lua
│ │ │ ├── squishy
│ │ │ ├── src/
│ │ │ │ ├── websocket/
│ │ │ │ │ ├── bit.lua
│ │ │ │ │ ├── client.lua
│ │ │ │ │ ├── client_copas.lua
│ │ │ │ │ ├── client_ev.lua
│ │ │ │ │ ├── ev_common.lua
│ │ │ │ │ ├── frame.lua
│ │ │ │ │ ├── handshake.lua
│ │ │ │ │ ├── server.lua
│ │ │ │ │ ├── server_copas.lua
│ │ │ │ │ ├── server_ev.lua
│ │ │ │ │ ├── sync.lua
│ │ │ │ │ └── tools.lua
│ │ │ │ └── websocket.lua
│ │ │ ├── test-server/
│ │ │ │ ├── index.html
│ │ │ │ ├── test-server-copas.lua
│ │ │ │ ├── test-server-ev.lua
│ │ │ │ └── test-ws.js
│ │ │ └── test.sh
│ │ ├── lua-xmlrpc/
│ │ │ ├── .gitignore
│ │ │ ├── Makefile
│ │ │ ├── README
│ │ │ ├── doc/
│ │ │ │ ├── examples.html
│ │ │ │ ├── index.html
│ │ │ │ ├── license.html
│ │ │ │ └── manual.html
│ │ │ ├── examples/
│ │ │ │ ├── client.lua
│ │ │ │ └── server_xavante.lua
│ │ │ ├── src/
│ │ │ │ ├── http.lua
│ │ │ │ ├── init.lua
│ │ │ │ └── server.lua
│ │ │ └── tests/
│ │ │ ├── apitest.lua
│ │ │ └── httptest.lua
│ │ ├── luacom/
│ │ │ ├── .travis.yml
│ │ │ ├── CMakeLists.txt
│ │ │ ├── COPYRIGHT
│ │ │ ├── INSTALL
│ │ │ ├── Makefile
│ │ │ ├── Makefile.win
│ │ │ ├── README
│ │ │ ├── announce.txt
│ │ │ ├── bkp_lc
│ │ │ ├── cmake/
│ │ │ │ ├── FindLua.cmake
│ │ │ │ ├── dist.cmake
│ │ │ │ └── lua.cmake
│ │ │ ├── demo/
│ │ │ │ ├── MSWINSCK.IDL
│ │ │ │ ├── ado/
│ │ │ │ │ ├── README
│ │ │ │ │ ├── adolua.lua
│ │ │ │ │ ├── adotest.lua
│ │ │ │ │ └── test.mdb
│ │ │ │ ├── comm/
│ │ │ │ │ ├── box.lua
│ │ │ │ │ ├── plasma.lua
│ │ │ │ │ └── tst_plasma.lua
│ │ │ │ ├── control/
│ │ │ │ │ ├── README
│ │ │ │ │ ├── client.vbp
│ │ │ │ │ ├── client.vbw
│ │ │ │ │ ├── control.lua
│ │ │ │ │ ├── form.frm
│ │ │ │ │ ├── testcontrol.odl
│ │ │ │ │ └── testcontrol.tlb
│ │ │ │ ├── date/
│ │ │ │ │ ├── test.tlb
│ │ │ │ │ └── testdate.lua
│ │ │ │ ├── enums/
│ │ │ │ │ └── testenums.lua
│ │ │ │ ├── odl/
│ │ │ │ │ ├── README
│ │ │ │ │ ├── idltest.lua
│ │ │ │ │ └── register.lua
│ │ │ │ ├── opcdata/
│ │ │ │ │ └── opc.lua
│ │ │ │ ├── ppt/
│ │ │ │ │ ├── filesearch.lua
│ │ │ │ │ └── msppt9.IDL
│ │ │ │ ├── safearrays/
│ │ │ │ │ ├── ComponentCpp/
│ │ │ │ │ │ ├── StdAfx.cpp
│ │ │ │ │ │ ├── StdAfx.h
│ │ │ │ │ │ ├── Test.cpp
│ │ │ │ │ │ ├── Test.h
│ │ │ │ │ │ ├── Test.rgs
│ │ │ │ │ │ ├── TestSafeArray.cpp
│ │ │ │ │ │ ├── TestSafeArray.def
│ │ │ │ │ │ ├── TestSafeArray.dsp
│ │ │ │ │ │ ├── TestSafeArray.dsw
│ │ │ │ │ │ ├── TestSafeArray.h
│ │ │ │ │ │ ├── TestSafeArray.idl
│ │ │ │ │ │ ├── TestSafeArray.rc
│ │ │ │ │ │ ├── dlldata.c
│ │ │ │ │ │ ├── dlldatax.c
│ │ │ │ │ │ ├── dlldatax.h
│ │ │ │ │ │ └── resource.h
│ │ │ │ │ ├── ComponentVB/
│ │ │ │ │ │ ├── PruebaSafeArrayVB.vbp
│ │ │ │ │ │ └── Test.cls
│ │ │ │ │ ├── TestVB/
│ │ │ │ │ │ ├── Form1.frm
│ │ │ │ │ │ └── Project1.vbp
│ │ │ │ │ └── safearrays.lua
│ │ │ │ ├── server/
│ │ │ │ │ ├── README
│ │ │ │ │ ├── inproc.lua
│ │ │ │ │ ├── inproc_use.lua
│ │ │ │ │ ├── inproc_use.vbs
│ │ │ │ │ ├── testlua.odl
│ │ │ │ │ └── testlua.tlb
│ │ │ │ ├── speech/
│ │ │ │ │ ├── dragon.idl
│ │ │ │ │ └── tst.lua
│ │ │ │ └── wmi/
│ │ │ │ ├── README
│ │ │ │ ├── test_wmi.lua
│ │ │ │ └── wmi_obj.lua
│ │ │ ├── dist.info
│ │ │ ├── doc/
│ │ │ │ ├── Makefile
│ │ │ │ └── luacom.tex
│ │ │ ├── gera_distr
│ │ │ ├── include/
│ │ │ │ └── luacom.h
│ │ │ ├── luacom-1.4-1.rockspec
│ │ │ ├── luacom-scm-2.rockspec
│ │ │ ├── mak/
│ │ │ │ ├── bin2c.lua
│ │ │ │ ├── dependences.mak
│ │ │ │ └── luac.lua
│ │ │ ├── mak.tecmake/
│ │ │ │ ├── lcmake.bat
│ │ │ │ ├── lcmaked.bat
│ │ │ │ ├── lctest.bat
│ │ │ │ ├── lctestd.bat
│ │ │ │ ├── luacom.inc
│ │ │ │ ├── luacom_console.mak
│ │ │ │ └── luacom_lib.mak
│ │ │ ├── mak.vc6/
│ │ │ │ └── luacom.dsp
│ │ │ ├── mak.vs2005/
│ │ │ │ ├── luacom.dll.vcproj
│ │ │ │ ├── luacom.rules
│ │ │ │ ├── luacom.sln
│ │ │ │ └── luacom.vsprops
│ │ │ ├── src/
│ │ │ │ ├── bin/
│ │ │ │ │ └── luacom_console.cpp
│ │ │ │ ├── dll/
│ │ │ │ │ ├── luacom_dll.cpp
│ │ │ │ │ ├── luacom_dll.def
│ │ │ │ │ └── luacom_dll.h
│ │ │ │ ├── library/
│ │ │ │ │ ├── LuaAux.cpp
│ │ │ │ │ ├── LuaAux.h
│ │ │ │ │ ├── LuaCompat.cpp
│ │ │ │ │ ├── LuaCompat.h
│ │ │ │ │ ├── luabeans.cpp
│ │ │ │ │ ├── luabeans.h
│ │ │ │ │ ├── luacom.cpp
│ │ │ │ │ ├── luacom5.lua
│ │ │ │ │ ├── luacom_internal.h
│ │ │ │ │ ├── tCOMUtil.cpp
│ │ │ │ │ ├── tCOMUtil.h
│ │ │ │ │ ├── tLuaCOM.cpp
│ │ │ │ │ ├── tLuaCOM.h
│ │ │ │ │ ├── tLuaCOMClassFactory.cpp
│ │ │ │ │ ├── tLuaCOMClassFactory.h
│ │ │ │ │ ├── tLuaCOMConnPoints.cpp
│ │ │ │ │ ├── tLuaCOMConnPoints.h
│ │ │ │ │ ├── tLuaCOMEnumerator.cpp
│ │ │ │ │ ├── tLuaCOMEnumerator.h
│ │ │ │ │ ├── tLuaCOMException.cpp
│ │ │ │ │ ├── tLuaCOMException.h
│ │ │ │ │ ├── tLuaCOMTypeHandler.cpp
│ │ │ │ │ ├── tLuaCOMTypeHandler.h
│ │ │ │ │ ├── tLuaControl.cpp
│ │ │ │ │ ├── tLuaControl.h
│ │ │ │ │ ├── tLuaDispatch.cpp
│ │ │ │ │ ├── tLuaDispatch.h
│ │ │ │ │ ├── tLuaObjList.cpp
│ │ │ │ │ ├── tLuaObjList.h
│ │ │ │ │ ├── tLuaObject.cpp
│ │ │ │ │ ├── tLuaObject.h
│ │ │ │ │ ├── tLuaTLB.cpp
│ │ │ │ │ ├── tLuaTLB.h
│ │ │ │ │ ├── tLuaVector.cpp
│ │ │ │ │ ├── tLuaVector.h
│ │ │ │ │ ├── tStringBuffer.cpp
│ │ │ │ │ ├── tStringBuffer.h
│ │ │ │ │ ├── tUtil.cpp
│ │ │ │ │ ├── tUtil.h
│ │ │ │ │ └── t_luacom.lua
│ │ │ │ └── test/
│ │ │ │ ├── luacom_tests5.lua
│ │ │ │ ├── test.idl
│ │ │ │ └── test.tlb
│ │ │ ├── todo.txt
│ │ │ └── www/
│ │ │ └── index.html
│ │ ├── luadbi/
│ │ │ ├── COPYING
│ │ │ ├── DBI.lua
│ │ │ ├── INSTALL
│ │ │ ├── Makefile
│ │ │ ├── README
│ │ │ ├── dbd/
│ │ │ │ ├── common.c
│ │ │ │ ├── common.h
│ │ │ │ ├── db2/
│ │ │ │ │ ├── connection.c
│ │ │ │ │ ├── dbd_db2.h
│ │ │ │ │ ├── main.c
│ │ │ │ │ └── statement.c
│ │ │ │ ├── mysql/
│ │ │ │ │ ├── connection.c
│ │ │ │ │ ├── dbd_mysql.h
│ │ │ │ │ ├── main.c
│ │ │ │ │ └── statement.c
│ │ │ │ ├── oracle/
│ │ │ │ │ ├── connection.c
│ │ │ │ │ ├── dbd_oracle.h
│ │ │ │ │ ├── main.c
│ │ │ │ │ └── statement.c
│ │ │ │ ├── postgresql/
│ │ │ │ │ ├── connection.c
│ │ │ │ │ ├── dbd_postgresql.h
│ │ │ │ │ ├── main.c
│ │ │ │ │ └── statement.c
│ │ │ │ └── sqlite3/
│ │ │ │ ├── connection.c
│ │ │ │ ├── dbd_sqlite3.h
│ │ │ │ ├── main.c
│ │ │ │ └── statement.c
│ │ │ └── vc++/
│ │ │ ├── dbddb2/
│ │ │ │ └── dbddb2.vcproj
│ │ │ ├── dbdmysql/
│ │ │ │ └── dbdmysql.vcproj
│ │ │ ├── dbdoracle/
│ │ │ │ └── dbdoracle.vcproj
│ │ │ ├── dbdpostgresql/
│ │ │ │ └── dbdpostgresql.vcproj
│ │ │ ├── dbdsqlite3/
│ │ │ │ └── dbdsqlite3.vcproj
│ │ │ └── luadbi.sln
│ │ ├── luaexpat/
│ │ │ ├── .hgtags
│ │ │ ├── README
│ │ │ ├── config
│ │ │ ├── doc/
│ │ │ │ └── us/
│ │ │ │ ├── examples.html
│ │ │ │ ├── index.html
│ │ │ │ ├── license.html
│ │ │ │ ├── lom.html
│ │ │ │ └── manual.html
│ │ │ ├── makefile
│ │ │ ├── makefile.win
│ │ │ ├── src/
│ │ │ │ ├── lxp/
│ │ │ │ │ └── lom.lua
│ │ │ │ ├── lxp.def
│ │ │ │ ├── lxplib.c
│ │ │ │ └── lxplib.h
│ │ │ ├── tests/
│ │ │ │ ├── test-lom.lua
│ │ │ │ └── test.lua
│ │ │ └── vc6/
│ │ │ ├── README
│ │ │ ├── luaexpat.dsw
│ │ │ ├── luaexpat_dll.dsp
│ │ │ ├── luaexpat_static.dsp
│ │ │ └── lxp.def
│ │ ├── luaffi/
│ │ │ ├── .gitignore
│ │ │ ├── Makefile
│ │ │ ├── README.md
│ │ │ ├── call.c
│ │ │ ├── call_arm.dasc
│ │ │ ├── call_x86.dasc
│ │ │ ├── ctype.c
│ │ │ ├── dynasm/
│ │ │ │ ├── dasm_arm.h
│ │ │ │ ├── dasm_arm.lua
│ │ │ │ ├── dasm_ppc.h
│ │ │ │ ├── dasm_ppc.lua
│ │ │ │ ├── dasm_proto.h
│ │ │ │ ├── dasm_x64.lua
│ │ │ │ ├── dasm_x86.h
│ │ │ │ ├── dasm_x86.lua
│ │ │ │ └── dynasm.lua
│ │ │ ├── ffi.c
│ │ │ ├── ffi.h
│ │ │ ├── generate_call_h.bat
│ │ │ ├── msvc/
│ │ │ │ ├── inttypes.h
│ │ │ │ ├── stdbool.h
│ │ │ │ └── stdint.h
│ │ │ ├── msvcbuild.bat
│ │ │ ├── parser.c
│ │ │ ├── pretty.lua
│ │ │ ├── test.c
│ │ │ ├── test.lua
│ │ │ └── test_includes.sh
│ │ ├── luafilesystem/
│ │ │ ├── Makefile
│ │ │ ├── Makefile.win
│ │ │ ├── README
│ │ │ ├── config
│ │ │ ├── config.win
│ │ │ ├── doc/
│ │ │ │ └── us/
│ │ │ │ ├── examples.html
│ │ │ │ ├── index.html
│ │ │ │ ├── license.html
│ │ │ │ └── manual.html
│ │ │ ├── rockspecs/
│ │ │ │ ├── luafilesystem-1.3.0-1.rockspec
│ │ │ │ ├── luafilesystem-1.4.0-1.rockspec
│ │ │ │ ├── luafilesystem-1.4.0-2.rockspec
│ │ │ │ ├── luafilesystem-1.4.1-1.rockspec
│ │ │ │ ├── luafilesystem-1.4.1rc1-1.rockspec
│ │ │ │ ├── luafilesystem-1.4.2-1.rockspec
│ │ │ │ ├── luafilesystem-1.5.0-1.rockspec
│ │ │ │ ├── luafilesystem-1.6.0-1.rockspec
│ │ │ │ ├── luafilesystem-1.6.1-1.rockspec
│ │ │ │ ├── luafilesystem-1.6.2-1.rockspec
│ │ │ │ ├── luafilesystem-cvs-1.rockspec
│ │ │ │ └── luafilesystem-cvs-2.rockspec
│ │ │ ├── src/
│ │ │ │ ├── .gitignore
│ │ │ │ ├── lfs.c
│ │ │ │ ├── lfs.def
│ │ │ │ └── lfs.h
│ │ │ ├── tests/
│ │ │ │ └── test.lua
│ │ │ └── vc6/
│ │ │ ├── lfs.def
│ │ │ ├── luafilesystem.dsw
│ │ │ └── luafilesystem_dll.dsp
│ │ ├── luainterface/
│ │ │ ├── COPYRIGHT
│ │ │ ├── LuaInterface.sln
│ │ │ ├── README.txt
│ │ │ ├── doc/
│ │ │ │ └── LuaRunner.txt
│ │ │ ├── samples/
│ │ │ │ ├── CLRPackage.lua
│ │ │ │ ├── README.txt
│ │ │ │ ├── form.lua
│ │ │ │ ├── form_alt.lua
│ │ │ │ ├── socket.lua
│ │ │ │ ├── socket_alt.lua
│ │ │ │ ├── testluaform.lua
│ │ │ │ └── testluaform_alt.lua
│ │ │ └── src/
│ │ │ ├── LuaInterface/
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── CheckType.cs
│ │ │ │ ├── GenerateEventAssembly.cs
│ │ │ │ ├── Lua.cs
│ │ │ │ ├── LuaDLL.cs
│ │ │ │ ├── LuaException.cs
│ │ │ │ ├── LuaInterface.csproj
│ │ │ │ ├── Metatables.cs
│ │ │ │ ├── MethodWrapper.cs
│ │ │ │ ├── ObjectTranslator.cs
│ │ │ │ ├── ProxyType.cs
│ │ │ │ ├── README.txt
│ │ │ │ └── luainterface.snk
│ │ │ ├── LuaInterfaceLoader/
│ │ │ │ ├── LuaInterfaceLoader.cpp
│ │ │ │ └── LuaInterfaceLoader.vcproj
│ │ │ ├── LuaRunner/
│ │ │ │ ├── LuaNetRunner.cs
│ │ │ │ ├── LuaRunner.csproj
│ │ │ │ └── Properties/
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── TestLuaInterface/
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Entity.cs
│ │ │ │ ├── TestLua.cs
│ │ │ │ └── TestLuaInterface.csproj
│ │ │ └── stub/
│ │ │ ├── luastdcall-unix.h
│ │ │ ├── luastdcall-windows.h
│ │ │ ├── luastdcall.c
│ │ │ └── luastdcall.h
│ │ ├── luajson/
│ │ │ ├── .travis/
│ │ │ │ ├── LICENSE
│ │ │ │ ├── platform.sh
│ │ │ │ ├── setenv_lua.sh
│ │ │ │ └── setup_lua.sh
│ │ │ ├── .travis.yml
│ │ │ ├── LICENSE
│ │ │ ├── Makefile
│ │ │ ├── README
│ │ │ ├── ReleaseNotes.txt
│ │ │ ├── dist/
│ │ │ │ └── Makefile
│ │ │ ├── docs/
│ │ │ │ ├── LuaJSON.txt
│ │ │ │ ├── ReleaseNotes-0.10.txt
│ │ │ │ ├── ReleaseNotes-0.9.1.txt
│ │ │ │ ├── ReleaseNotes-0.9.txt
│ │ │ │ ├── ReleaseNotes-1.0.1.txt
│ │ │ │ ├── ReleaseNotes-1.0.2.txt
│ │ │ │ ├── ReleaseNotes-1.0.3.txt
│ │ │ │ ├── ReleaseNotes-1.0.txt
│ │ │ │ ├── ReleaseNotes-1.1.1.txt
│ │ │ │ ├── ReleaseNotes-1.1.2.txt
│ │ │ │ ├── ReleaseNotes-1.1.txt
│ │ │ │ ├── ReleaseNotes-1.2.1.txt
│ │ │ │ ├── ReleaseNotes-1.2.2.txt
│ │ │ │ ├── ReleaseNotes-1.2.txt
│ │ │ │ ├── ReleaseNotes-1.3.1.txt
│ │ │ │ ├── ReleaseNotes-1.3.2.txt
│ │ │ │ ├── ReleaseNotes-1.3.3.txt
│ │ │ │ └── ReleaseNotes-1.3.txt
│ │ │ ├── lua/
│ │ │ │ ├── json/
│ │ │ │ │ ├── decode/
│ │ │ │ │ │ ├── composite.lua
│ │ │ │ │ │ ├── number.lua
│ │ │ │ │ │ ├── others.lua
│ │ │ │ │ │ ├── state.lua
│ │ │ │ │ │ ├── strings.lua
│ │ │ │ │ │ └── util.lua
│ │ │ │ │ ├── decode.lua
│ │ │ │ │ ├── encode/
│ │ │ │ │ │ ├── array.lua
│ │ │ │ │ │ ├── calls.lua
│ │ │ │ │ │ ├── number.lua
│ │ │ │ │ │ ├── object.lua
│ │ │ │ │ │ ├── others.lua
│ │ │ │ │ │ ├── output.lua
│ │ │ │ │ │ ├── output_utility.lua
│ │ │ │ │ │ └── strings.lua
│ │ │ │ │ ├── encode.lua
│ │ │ │ │ └── util.lua
│ │ │ │ └── json.lua
│ │ │ ├── rockspecs/
│ │ │ │ ├── luajson-0.10-1.rockspec
│ │ │ │ ├── luajson-0.10-2.rockspec
│ │ │ │ ├── luajson-0.9.1-1.rockspec
│ │ │ │ ├── luajson-1.0-1.rockspec
│ │ │ │ ├── luajson-1.0.1-1.rockspec
│ │ │ │ ├── luajson-1.0.3-1.rockspec
│ │ │ │ ├── luajson-1.1-1.rockspec
│ │ │ │ ├── luajson-1.1.2-1.rockspec
│ │ │ │ ├── luajson-1.2-1.rockspec
│ │ │ │ ├── luajson-1.2.1-1.rockspec
│ │ │ │ ├── luajson-1.2.2-1.rockspec
│ │ │ │ ├── luajson-1.3-1.rockspec
│ │ │ │ ├── luajson-1.3.1-1.rockspec
│ │ │ │ ├── luajson-1.3.2-1.rockspec
│ │ │ │ ├── luajson-1.3.2-2.rockspec
│ │ │ │ ├── luajson-1.3.3-1.rockspec
│ │ │ │ └── luajson-scm-4.rockspec
│ │ │ ├── tests/
│ │ │ │ ├── data.txt
│ │ │ │ ├── dataTest.lua
│ │ │ │ ├── dataTest.php
│ │ │ │ ├── hook_require.lua
│ │ │ │ ├── lunit-calls.lua
│ │ │ │ ├── lunit-depth.lua
│ │ │ │ ├── lunit-encoderfunc.lua
│ │ │ │ ├── lunit-encoding.lua
│ │ │ │ ├── lunit-nothrow-decode.lua
│ │ │ │ ├── lunit-numbers.lua
│ │ │ │ ├── lunit-simple-decode.lua
│ │ │ │ ├── lunit-strings.lua
│ │ │ │ ├── lunit-tests.lua
│ │ │ │ ├── regressionTest.lua
│ │ │ │ ├── test/
│ │ │ │ │ ├── fail_all/
│ │ │ │ │ │ ├── colonInArray.json
│ │ │ │ │ │ ├── commaAfterValue.json
│ │ │ │ │ │ ├── doubleColon.json
│ │ │ │ │ │ ├── extraArrayClose.json
│ │ │ │ │ │ ├── extraValueAfterClose.json
│ │ │ │ │ │ ├── functionExpression.json
│ │ │ │ │ │ ├── hexNumber.json
│ │ │ │ │ │ ├── lineBreakInString-escaped.json
│ │ │ │ │ │ ├── mathExpression.json
│ │ │ │ │ │ ├── missingArrayValue.json
│ │ │ │ │ │ ├── missingColon.json
│ │ │ │ │ │ ├── missingColon2.json
│ │ │ │ │ │ ├── octalEscape.json
│ │ │ │ │ │ ├── octalNumber.json
│ │ │ │ │ │ ├── tabInString-escaped.json
│ │ │ │ │ │ ├── trailingDoubleComma.json
│ │ │ │ │ │ ├── unclosed_array.json
│ │ │ │ │ │ └── unknownLiteral.json
│ │ │ │ │ ├── fail_strict/
│ │ │ │ │ │ ├── hexEscape.json
│ │ │ │ │ │ ├── lineBreakInString.json
│ │ │ │ │ │ ├── mustBeArrayOrObject.json
│ │ │ │ │ │ ├── singleQuoteEscape.json
│ │ │ │ │ │ ├── singleQuotes.json
│ │ │ │ │ │ ├── tabInString.json
│ │ │ │ │ │ ├── trailingArrayComma.json
│ │ │ │ │ │ ├── trailingObjectComma.json
│ │ │ │ │ │ ├── unquotedKey.json
│ │ │ │ │ │ └── whitespace_before_value.json
│ │ │ │ │ ├── fail_strict_encode/
│ │ │ │ │ │ ├── bool.json
│ │ │ │ │ │ ├── inf.json
│ │ │ │ │ │ ├── nan.json
│ │ │ │ │ │ ├── null.json
│ │ │ │ │ │ ├── number.json
│ │ │ │ │ │ ├── string.json
│ │ │ │ │ │ └── undefined.json
│ │ │ │ │ ├── pass/
│ │ │ │ │ │ ├── extremeNesting.json
│ │ │ │ │ │ ├── pass1.json
│ │ │ │ │ │ ├── pass3.json
│ │ │ │ │ │ ├── stringWithEscapedAndUnescapedSlash.json
│ │ │ │ │ │ ├── whitespace_before_array.json
│ │ │ │ │ │ └── whitespace_before_object.json
│ │ │ │ │ └── roundtrip/
│ │ │ │ │ ├── deepArray.json
│ │ │ │ │ ├── emptyArray.json
│ │ │ │ │ ├── emptyObject.json
│ │ │ │ │ └── simpleArrayInObject.json
│ │ │ │ ├── test.lua
│ │ │ │ ├── testutil.lua
│ │ │ │ ├── timetrials.lua
│ │ │ │ └── utf8_processor.lua
│ │ │ └── util/
│ │ │ ├── createRock.lua
│ │ │ ├── prepareNextRelease.lua
│ │ │ └── processShortlog.lua
│ │ ├── lualdap/
│ │ │ ├── Makefile
│ │ │ ├── Makefile.win
│ │ │ ├── README
│ │ │ ├── config
│ │ │ ├── config.win
│ │ │ ├── doc/
│ │ │ │ └── us/
│ │ │ │ ├── index.html
│ │ │ │ ├── license.html
│ │ │ │ └── manual.html
│ │ │ ├── src/
│ │ │ │ ├── lualdap.c
│ │ │ │ ├── lualdap.def
│ │ │ │ └── open2winldap.h
│ │ │ ├── tests/
│ │ │ │ └── test.lua
│ │ │ └── vc6/
│ │ │ ├── lualdap.def
│ │ │ ├── lualdap.dsw
│ │ │ ├── lualdap.rc
│ │ │ ├── lualdap_dll.dsp
│ │ │ └── resource.h
│ │ ├── lualogging/
│ │ │ ├── COPYRIGHT
│ │ │ ├── Makefile
│ │ │ ├── Makefile.win
│ │ │ ├── README
│ │ │ ├── doc/
│ │ │ │ ├── br/
│ │ │ │ │ ├── console.tpl
│ │ │ │ │ ├── email.tpl
│ │ │ │ │ ├── file.tpl
│ │ │ │ │ ├── footer.tpl
│ │ │ │ │ ├── header.tpl
│ │ │ │ │ ├── index.tpl
│ │ │ │ │ ├── license.tpl
│ │ │ │ │ ├── manual.tpl
│ │ │ │ │ ├── menu.lua
│ │ │ │ │ ├── socket.tpl
│ │ │ │ │ └── sql.tpl
│ │ │ │ ├── build.lua
│ │ │ │ ├── html/
│ │ │ │ │ ├── br/
│ │ │ │ │ │ ├── console.html
│ │ │ │ │ │ ├── email.html
│ │ │ │ │ │ ├── file.html
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ ├── license.html
│ │ │ │ │ │ ├── manual.html
│ │ │ │ │ │ ├── socket.html
│ │ │ │ │ │ └── sql.html
│ │ │ │ │ ├── console.html
│ │ │ │ │ ├── email.html
│ │ │ │ │ ├── file.html
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── license.html
│ │ │ │ │ ├── manual.html
│ │ │ │ │ ├── rolling_file.html
│ │ │ │ │ ├── socket.html
│ │ │ │ │ └── sql.html
│ │ │ │ └── us/
│ │ │ │ ├── console.tpl
│ │ │ │ ├── email.tpl
│ │ │ │ ├── file.tpl
│ │ │ │ ├── footer.tpl
│ │ │ │ ├── header.tpl
│ │ │ │ ├── index.tpl
│ │ │ │ ├── license.tpl
│ │ │ │ ├── manual.tpl
│ │ │ │ ├── menu.lua
│ │ │ │ ├── rolling_file.tpl
│ │ │ │ ├── socket.tpl
│ │ │ │ └── sql.tpl
│ │ │ ├── lualogging-1.2.0-1.rockspec
│ │ │ ├── lualogging-1.3.0-1.rockspec
│ │ │ ├── lualogging-scm-0.rockspec
│ │ │ ├── src/
│ │ │ │ ├── logging/
│ │ │ │ │ ├── console.lua
│ │ │ │ │ ├── email.lua
│ │ │ │ │ ├── file.lua
│ │ │ │ │ ├── rolling_file.lua
│ │ │ │ │ ├── socket.lua
│ │ │ │ │ └── sql.lua
│ │ │ │ └── logging.lua
│ │ │ └── tests/
│ │ │ ├── run_tests.sh
│ │ │ ├── test.lua
│ │ │ ├── testConsole.lua
│ │ │ ├── testFile.lua
│ │ │ ├── testMail.lua
│ │ │ ├── testRollingFile.lua
│ │ │ ├── testSQL.lua
│ │ │ └── testSocket.lua
│ │ ├── luasec/
│ │ │ ├── .gitignore
│ │ │ ├── CHANGELOG
│ │ │ ├── INSTALL
│ │ │ ├── LICENSE
│ │ │ ├── Makefile
│ │ │ ├── README.md
│ │ │ ├── luasec-0.9-1.rockspec
│ │ │ ├── luasec.sln
│ │ │ ├── luasec.vcxproj
│ │ │ ├── samples/
│ │ │ │ ├── README
│ │ │ │ ├── alpn/
│ │ │ │ │ ├── client.lua
│ │ │ │ │ └── server.lua
│ │ │ │ ├── certs/
│ │ │ │ │ ├── all.bat
│ │ │ │ │ ├── all.sh
│ │ │ │ │ ├── clientA.bat
│ │ │ │ │ ├── clientA.cnf
│ │ │ │ │ ├── clientA.sh
│ │ │ │ │ ├── clientB.bat
│ │ │ │ │ ├── clientB.cnf
│ │ │ │ │ ├── clientB.sh
│ │ │ │ │ ├── rootA.bat
│ │ │ │ │ ├── rootA.cnf
│ │ │ │ │ ├── rootA.sh
│ │ │ │ │ ├── rootB.bat
│ │ │ │ │ ├── rootB.cnf
│ │ │ │ │ ├── rootB.sh
│ │ │ │ │ ├── serverA.bat
│ │ │ │ │ ├── serverA.cnf
│ │ │ │ │ ├── serverA.sh
│ │ │ │ │ ├── serverB.bat
│ │ │ │ │ ├── serverB.cnf
│ │ │ │ │ └── serverB.sh
│ │ │ │ ├── chain/
│ │ │ │ │ ├── client.lua
│ │ │ │ │ ├── server.lua
│ │ │ │ │ └── util.lua
│ │ │ │ ├── curve-negotiation/
│ │ │ │ │ ├── client.lua
│ │ │ │ │ └── server.lua
│ │ │ │ ├── dane/
│ │ │ │ │ └── client.lua
│ │ │ │ ├── dhparam/
│ │ │ │ │ ├── client.lua
│ │ │ │ │ ├── params.sh
│ │ │ │ │ └── server.lua
│ │ │ │ ├── digest/
│ │ │ │ │ ├── client.lua
│ │ │ │ │ └── server.lua
│ │ │ │ ├── ecdh/
│ │ │ │ │ ├── client.lua
│ │ │ │ │ └── server.lua
│ │ │ │ ├── info/
│ │ │ │ │ ├── client.lua
│ │ │ │ │ └── server.lua
│ │ │ │ ├── key/
│ │ │ │ │ ├── genkey.sh
│ │ │ │ │ └── loadkey.lua
│ │ │ │ ├── loop/
│ │ │ │ │ ├── client.lua
│ │ │ │ │ └── server.lua
│ │ │ │ ├── loop-gc/
│ │ │ │ │ ├── client.lua
│ │ │ │ │ └── server.lua
│ │ │ │ ├── luaossl/
│ │ │ │ │ ├── client.lua
│ │ │ │ │ └── server.lua
│ │ │ │ ├── multicert/
│ │ │ │ │ ├── client-ecdsa.lua
│ │ │ │ │ ├── client-rsa.lua
│ │ │ │ │ ├── gencerts.sh
│ │ │ │ │ └── server.lua
│ │ │ │ ├── oneshot/
│ │ │ │ │ ├── client.lua
│ │ │ │ │ └── server.lua
│ │ │ │ ├── sni/
│ │ │ │ │ ├── client.lua
│ │ │ │ │ └── server.lua
│ │ │ │ ├── verification/
│ │ │ │ │ ├── fail-string/
│ │ │ │ │ │ ├── client.lua
│ │ │ │ │ │ └── server.lua
│ │ │ │ │ ├── fail-table/
│ │ │ │ │ │ ├── client.lua
│ │ │ │ │ │ └── server.lua
│ │ │ │ │ └── success/
│ │ │ │ │ ├── client.lua
│ │ │ │ │ └── server.lua
│ │ │ │ ├── verify/
│ │ │ │ │ ├── client.lua
│ │ │ │ │ └── server.lua
│ │ │ │ ├── want/
│ │ │ │ │ ├── client.lua
│ │ │ │ │ └── server.lua
│ │ │ │ ├── wantread/
│ │ │ │ │ ├── client.lua
│ │ │ │ │ └── server.lua
│ │ │ │ └── wantwrite/
│ │ │ │ ├── client.lua
│ │ │ │ └── server.lua
│ │ │ └── src/
│ │ │ ├── Makefile
│ │ │ ├── compat.h
│ │ │ ├── config.c
│ │ │ ├── context.c
│ │ │ ├── context.h
│ │ │ ├── ec.c
│ │ │ ├── ec.h
│ │ │ ├── https.lua
│ │ │ ├── luasocket/
│ │ │ │ ├── LICENSE
│ │ │ │ ├── Makefile
│ │ │ │ ├── buffer.c
│ │ │ │ ├── buffer.h
│ │ │ │ ├── io.c
│ │ │ │ ├── io.h
│ │ │ │ ├── socket.h
│ │ │ │ ├── timeout.c
│ │ │ │ ├── timeout.h
│ │ │ │ ├── usocket.c
│ │ │ │ ├── usocket.h
│ │ │ │ ├── wsocket.c
│ │ │ │ └── wsocket.h
│ │ │ ├── options.c
│ │ │ ├── options.h
│ │ │ ├── options.lua
│ │ │ ├── ssl.c
│ │ │ ├── ssl.h
│ │ │ ├── ssl.lua
│ │ │ ├── x509.c
│ │ │ └── x509.h
│ │ ├── luasql/
│ │ │ ├── Makefile
│ │ │ ├── Makefile.win
│ │ │ ├── Makefile.win.ado
│ │ │ ├── Makefile.win.firebird
│ │ │ ├── Makefile.win.mysql
│ │ │ ├── Makefile.win.odbc
│ │ │ ├── Makefile.win.sqlite3
│ │ │ ├── README
│ │ │ ├── config
│ │ │ ├── doc/
│ │ │ │ ├── br/
│ │ │ │ │ ├── examples.html
│ │ │ │ │ ├── history.html
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── license.html
│ │ │ │ │ └── manual.html
│ │ │ │ └── us/
│ │ │ │ ├── examples.html
│ │ │ │ ├── history.html
│ │ │ │ ├── index.html
│ │ │ │ ├── license.html
│ │ │ │ └── manual.html
│ │ │ ├── rockspec/
│ │ │ │ ├── luasql-mysql-2.2.0rc1-1.rockspec
│ │ │ │ ├── luasql-mysql-2.2.0rc1-2.rockspec
│ │ │ │ ├── luasql-mysql-2.3.0-1.rockspec
│ │ │ │ ├── luasql-mysql-cvs-1.rockspec
│ │ │ │ ├── luasql-oci8-2.3.0-1.rockspec
│ │ │ │ ├── luasql-odbc-2.3.0-1.rockspec
│ │ │ │ ├── luasql-odbc-cvs-1.rockspec
│ │ │ │ ├── luasql-postgres-2.3.0-1.rockspec
│ │ │ │ ├── luasql-postgres-cvs-2.rockspec
│ │ │ │ ├── luasql-sqlite-2.2.0rc1-1.rockspec
│ │ │ │ ├── luasql-sqlite-2.3.0-1.rockspec
│ │ │ │ ├── luasql-sqlite-cvs-1.rockspec
│ │ │ │ ├── luasql-sqlite3-2.2.0-1.rockspec
│ │ │ │ ├── luasql-sqlite3-2.2.0rc1-1.rockspec
│ │ │ │ ├── luasql-sqlite3-2.3.0-1.rockspec
│ │ │ │ └── luasql-sqlite3-cvs-1.rockspec
│ │ │ ├── src/
│ │ │ │ ├── ado/
│ │ │ │ │ └── ado.lua
│ │ │ │ ├── firebird.def
│ │ │ │ ├── jdbc/
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── Makefile.win
│ │ │ │ │ ├── build.xml
│ │ │ │ │ └── src/
│ │ │ │ │ ├── java/
│ │ │ │ │ │ └── org/
│ │ │ │ │ │ └── keplerproject/
│ │ │ │ │ │ └── luasql/
│ │ │ │ │ │ └── jdbc/
│ │ │ │ │ │ └── LuaSQLCursor.java
│ │ │ │ │ └── lua/
│ │ │ │ │ └── jdbc.lua
│ │ │ │ ├── ls_firebird.c
│ │ │ │ ├── ls_mysql.c
│ │ │ │ ├── ls_oci8.c
│ │ │ │ ├── ls_odbc.c
│ │ │ │ ├── ls_postgres.c
│ │ │ │ ├── ls_sqlite.c
│ │ │ │ ├── ls_sqlite3.c
│ │ │ │ ├── luasql.c
│ │ │ │ ├── luasql.h
│ │ │ │ ├── mysql.def
│ │ │ │ ├── oci8.def
│ │ │ │ ├── odbc.def
│ │ │ │ ├── postgres.def
│ │ │ │ ├── sqlite.def
│ │ │ │ └── sqlite3.def
│ │ │ ├── tests/
│ │ │ │ ├── ado.lua
│ │ │ │ ├── example.lua
│ │ │ │ ├── firebird.lua
│ │ │ │ ├── mysql.lua
│ │ │ │ ├── oci8.lua
│ │ │ │ ├── odbc.lua
│ │ │ │ ├── performance.lua
│ │ │ │ ├── postgres.lua
│ │ │ │ ├── sqlite.lua
│ │ │ │ ├── sqlite3.lua
│ │ │ │ └── test.lua
│ │ │ └── vc6/
│ │ │ ├── def.tmpl
│ │ │ ├── luasql.dsw
│ │ │ ├── luasqlmysql40_dll.dsp
│ │ │ ├── luasqlmysql41_dll.dsp
│ │ │ ├── luasqlmysql50_dll.dsp
│ │ │ ├── luasqloci8_dll.dsp
│ │ │ ├── luasqlodbc_dll.dsp
│ │ │ ├── luasqlpostgres_dll.dsp
│ │ │ ├── luasqlsqlite_dll.dsp
│ │ │ ├── mysql.def
│ │ │ ├── mysql40.rc
│ │ │ ├── mysql41.rc
│ │ │ ├── mysql50.rc
│ │ │ ├── oci8.def
│ │ │ ├── odbc.def
│ │ │ ├── postgres.def
│ │ │ ├── postgres.rc
│ │ │ ├── resource.h
│ │ │ └── sqlite.def
│ │ ├── luathread/
│ │ │ ├── LICENSE
│ │ │ ├── README
│ │ │ ├── auxiliar.c
│ │ │ ├── auxiliar.h
│ │ │ ├── compat-5.1r2/
│ │ │ │ ├── compat-5.1.c
│ │ │ │ ├── compat-5.1.h
│ │ │ │ └── compat-5.1.lua
│ │ │ ├── examples/
│ │ │ │ ├── prodcons-simple.lua
│ │ │ │ ├── prodcons.lua
│ │ │ │ ├── recursive.lua
│ │ │ │ ├── simple-nolock.lua
│ │ │ │ └── simple.lua
│ │ │ ├── luathread.c
│ │ │ ├── luathread.h
│ │ │ ├── manual/
│ │ │ │ ├── examples.html
│ │ │ │ ├── home.html
│ │ │ │ ├── installation.html
│ │ │ │ └── reference.html
│ │ │ ├── pt.c
│ │ │ ├── pt.h
│ │ │ ├── srm.c
│ │ │ └── srm.h
│ │ ├── luatraverse/
│ │ │ ├── examples/
│ │ │ │ └── luastate.lua
│ │ │ └── luatraverse.lua
│ │ ├── lzlib/
│ │ │ ├── CHANGES
│ │ │ ├── Makefile
│ │ │ ├── README
│ │ │ ├── README.lgzip
│ │ │ ├── gzip.lua
│ │ │ ├── lzlib.c
│ │ │ ├── rockspec/
│ │ │ │ ├── INSTALL
│ │ │ │ └── lzlib-git-1.rockspec
│ │ │ ├── test_gzip.lua
│ │ │ ├── test_prologue.lua
│ │ │ ├── test_zlib2.lua
│ │ │ ├── test_zlib3.lua
│ │ │ ├── test_zlib_dict.lua
│ │ │ └── zlib.def
│ │ ├── markdown/
│ │ │ ├── README.md
│ │ │ ├── markdown-tests.lua
│ │ │ └── markdown.lua
│ │ ├── mcpp/
│ │ │ ├── mcpp/
│ │ │ │ ├── ChangeLog
│ │ │ │ ├── INSTALL
│ │ │ │ ├── INSTALL-jp
│ │ │ │ ├── LICENSE
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── NEWS
│ │ │ │ ├── README
│ │ │ │ ├── aclocal.m4
│ │ │ │ ├── config/
│ │ │ │ │ ├── compile
│ │ │ │ │ ├── config.guess
│ │ │ │ │ ├── config.sub
│ │ │ │ │ ├── cygwin_root
│ │ │ │ │ ├── depcomp
│ │ │ │ │ ├── install-sh
│ │ │ │ │ ├── ltmain.sh
│ │ │ │ │ ├── mb_big5
│ │ │ │ │ ├── mb_jis
│ │ │ │ │ ├── mb_sjis
│ │ │ │ │ ├── mingw_root
│ │ │ │ │ └── missing
│ │ │ │ ├── configure
│ │ │ │ ├── configure.ac
│ │ │ │ ├── doc/
│ │ │ │ │ ├── LICENSE
│ │ │ │ │ ├── cpp-test.html
│ │ │ │ │ ├── cpp_test.sum
│ │ │ │ │ ├── mcpp-manual.html
│ │ │ │ │ └── mcpp-porting.html
│ │ │ │ ├── doc-jp/
│ │ │ │ │ ├── LICENSE
│ │ │ │ │ ├── cpp-test.html
│ │ │ │ │ ├── mcpp-manual.html
│ │ │ │ │ └── mcpp-porting.html
│ │ │ │ ├── mcpp-gcc.1
│ │ │ │ ├── mcpp.1
│ │ │ │ ├── noconfig/
│ │ │ │ │ ├── bc55.dif
│ │ │ │ │ ├── bc59.dif
│ │ │ │ │ ├── borlandc.mak
│ │ │ │ │ ├── cyg1310.dif
│ │ │ │ │ ├── cyg1518.dif
│ │ │ │ │ ├── cygwin.mak
│ │ │ │ │ ├── freebsd.mak
│ │ │ │ │ ├── lcc0308.dif
│ │ │ │ │ ├── lcc0603.dif
│ │ │ │ │ ├── lcc_w32.mak
│ │ │ │ │ ├── linux.mak
│ │ │ │ │ ├── linux_gcc2953.dif
│ │ │ │ │ ├── linux_gcc32.dif
│ │ │ │ │ ├── linux_gcc336.dif
│ │ │ │ │ ├── linux_gcc343.dif
│ │ │ │ │ ├── linux_gcc412.dif
│ │ │ │ │ ├── mac_gcc401_i686.dif
│ │ │ │ │ ├── mac_gcc401_powerpc.dif
│ │ │ │ │ ├── mac_osx.mak
│ │ │ │ │ ├── mingw.mak
│ │ │ │ │ ├── mingw345.dif
│ │ │ │ │ ├── vc2002.dif
│ │ │ │ │ ├── vc2003.dif
│ │ │ │ │ ├── vc2005.dif
│ │ │ │ │ ├── vc2008.dif
│ │ │ │ │ ├── vc6.dif
│ │ │ │ │ └── visualc.mak
│ │ │ │ ├── src/
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── Makefile.in
│ │ │ │ │ ├── cc1.c
│ │ │ │ │ ├── config.h.in
│ │ │ │ │ ├── configed.H
│ │ │ │ │ ├── directive.c
│ │ │ │ │ ├── eval.c
│ │ │ │ │ ├── expand.c
│ │ │ │ │ ├── internal.H
│ │ │ │ │ ├── main.c
│ │ │ │ │ ├── main_libmcpp.c
│ │ │ │ │ ├── mbchar.c
│ │ │ │ │ ├── mcpp_lib.def
│ │ │ │ │ ├── mcpp_lib.h
│ │ │ │ │ ├── mcpp_out.h
│ │ │ │ │ ├── noconfig.H
│ │ │ │ │ ├── preproc.c
│ │ │ │ │ ├── set_mcpp.sh
│ │ │ │ │ ├── support.c
│ │ │ │ │ ├── system.H
│ │ │ │ │ ├── system.c
│ │ │ │ │ ├── testmain.c
│ │ │ │ │ └── unset_mcpp.sh
│ │ │ │ └── tool/
│ │ │ │ ├── LICENSE
│ │ │ │ ├── app_once.bat
│ │ │ │ ├── clock_of.c
│ │ │ │ ├── cpp_test.c
│ │ │ │ ├── ins_once.c
│ │ │ │ ├── once.txt
│ │ │ │ ├── rm_once.c
│ │ │ │ └── total.c
│ │ │ ├── mcpp.c
│ │ │ └── mcpp.jam
│ │ ├── md5/
│ │ │ ├── Makefile
│ │ │ ├── README
│ │ │ ├── ldigest.c
│ │ │ ├── lmd5.c
│ │ │ ├── lmd5.h
│ │ │ ├── md5.h
│ │ │ ├── md5c.c
│ │ │ ├── md5global.h
│ │ │ └── test.lua
│ │ ├── mk/
│ │ │ ├── README.markdown
│ │ │ ├── doc/
│ │ │ │ └── index.html
│ │ │ ├── ext/
│ │ │ │ ├── date/
│ │ │ │ │ └── smoothness/
│ │ │ │ │ └── jquery-ui-1.7.2.custom.css
│ │ │ │ ├── forms/
│ │ │ │ │ └── form_support.js
│ │ │ │ ├── richtext/
│ │ │ │ │ ├── jquery.wysiwyg.css
│ │ │ │ │ └── jquery.wysiwyg.js
│ │ │ │ └── tag/
│ │ │ │ └── jquery.autocomplete.css
│ │ │ ├── rockspecs/
│ │ │ │ └── mk-scm-1.rockspec
│ │ │ ├── samples/
│ │ │ │ ├── auth.lua
│ │ │ │ ├── forms.lua
│ │ │ │ ├── hello.lua
│ │ │ │ ├── sample_form.tmpl
│ │ │ │ ├── sample_nolabels.tmpl
│ │ │ │ └── songs.lua
│ │ │ ├── src/
│ │ │ │ ├── mk/
│ │ │ │ │ ├── auth.lua
│ │ │ │ │ ├── blocks.lua
│ │ │ │ │ ├── cache.lua
│ │ │ │ │ ├── forms.lua
│ │ │ │ │ ├── routes.lua
│ │ │ │ │ ├── template.lua
│ │ │ │ │ ├── themes.lua
│ │ │ │ │ └── util.lua
│ │ │ │ └── mk.lua
│ │ │ └── test/
│ │ │ ├── test_auth.lua
│ │ │ ├── test_cache.lua
│ │ │ └── test_routes.lua
│ │ ├── orbit/
│ │ │ ├── Makefile
│ │ │ ├── Makefile.win
│ │ │ ├── README
│ │ │ ├── configure
│ │ │ ├── doc/
│ │ │ │ ├── br/
│ │ │ │ │ ├── blog_config.lua
│ │ │ │ │ ├── example.html
│ │ │ │ │ ├── example.md
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── index.md
│ │ │ │ │ ├── license.html
│ │ │ │ │ ├── license.md
│ │ │ │ │ ├── makedoc.lua
│ │ │ │ │ ├── pages.html
│ │ │ │ │ ├── pages.md
│ │ │ │ │ ├── reference.html
│ │ │ │ │ └── reference.md
│ │ │ │ └── us/
│ │ │ │ ├── blog_config.lua
│ │ │ │ ├── example.html
│ │ │ │ ├── example.md
│ │ │ │ ├── index.html
│ │ │ │ ├── index.md
│ │ │ │ ├── license.html
│ │ │ │ ├── license.md
│ │ │ │ ├── makedoc.lua
│ │ │ │ ├── pages.html
│ │ │ │ ├── pages.md
│ │ │ │ ├── reference.html
│ │ │ │ └── reference.md
│ │ │ ├── rockspec/
│ │ │ │ ├── orbit-2.0-1.rockspec
│ │ │ │ ├── orbit-2.0.1-1.rockspec
│ │ │ │ ├── orbit-2.0.2-1.rockspec
│ │ │ │ ├── orbit-2.0rc1-1.rockspec
│ │ │ │ ├── orbit-2.1.0-1.rockspec
│ │ │ │ ├── orbit-2.2.0-1.rockspec
│ │ │ │ ├── orbit-cvs-1.rockspec
│ │ │ │ ├── orbit-cvs-2.rockspec
│ │ │ │ └── orbit-schema-1.rockspec
│ │ │ ├── samples/
│ │ │ │ ├── README
│ │ │ │ ├── blog/
│ │ │ │ │ ├── .htaccess
│ │ │ │ │ ├── blog.dump.sqlite3
│ │ │ │ │ ├── blog.lua
│ │ │ │ │ ├── blog.ws
│ │ │ │ │ ├── blog_config.lua
│ │ │ │ │ ├── blog_doc.txt
│ │ │ │ │ ├── blog_schema.mysql
│ │ │ │ │ ├── blog_schema.sql
│ │ │ │ │ ├── dump.lua
│ │ │ │ │ ├── header.xcf
│ │ │ │ │ ├── populate_mysql.lua
│ │ │ │ │ ├── random_text.lua
│ │ │ │ │ └── style.css
│ │ │ │ ├── doc/
│ │ │ │ │ └── nothing
│ │ │ │ ├── hello/
│ │ │ │ │ └── hello.lua
│ │ │ │ ├── op.ws
│ │ │ │ ├── pages/
│ │ │ │ │ ├── bar.op
│ │ │ │ │ ├── css/
│ │ │ │ │ │ └── doc.css
│ │ │ │ │ ├── foo.op
│ │ │ │ │ ├── index.op
│ │ │ │ │ └── test.op
│ │ │ │ ├── songs/
│ │ │ │ │ └── songs.lua
│ │ │ │ ├── sproutcore/
│ │ │ │ │ ├── static/
│ │ │ │ │ │ ├── sproutcore/
│ │ │ │ │ │ │ ├── bootstrap/
│ │ │ │ │ │ │ │ └── en/
│ │ │ │ │ │ │ │ └── fd3ef3775313919c9d16dc2f2129aae8549dcbfa/
│ │ │ │ │ │ │ │ ├── javascript.js
│ │ │ │ │ │ │ │ └── setup_body_class_names.js
│ │ │ │ │ │ │ ├── datastore/
│ │ │ │ │ │ │ │ └── en/
│ │ │ │ │ │ │ │ └── 59bda761d63639cc5f5a4342ee678fada0d577cc/
│ │ │ │ │ │ │ │ ├── javascript-packed.js
│ │ │ │ │ │ │ │ ├── javascript.js
│ │ │ │ │ │ │ │ └── stylesheet-packed.css
│ │ │ │ │ │ │ ├── desktop/
│ │ │ │ │ │ │ │ └── en/
│ │ │ │ │ │ │ │ └── 1425eba6eeb45c8823b8dc7cdfcea8aeffe59a66/
│ │ │ │ │ │ │ │ ├── javascript-packed.js
│ │ │ │ │ │ │ │ ├── javascript.js
│ │ │ │ │ │ │ │ ├── stylesheet-packed.css
│ │ │ │ │ │ │ │ └── stylesheet.css
│ │ │ │ │ │ │ ├── empty_theme/
│ │ │ │ │ │ │ │ └── en/
│ │ │ │ │ │ │ │ └── 21c3b7b16d7ef39d60d2651975590828812f3ad9/
│ │ │ │ │ │ │ │ ├── javascript-packed.js
│ │ │ │ │ │ │ │ └── stylesheet-packed.css
│ │ │ │ │ │ │ ├── en/
│ │ │ │ │ │ │ │ └── 160fa25cc6d7adb0a0a201d11668361e03d8e9cc/
│ │ │ │ │ │ │ │ ├── javascript-packed.js
│ │ │ │ │ │ │ │ ├── javascript.js
│ │ │ │ │ │ │ │ └── stylesheet-packed.css
│ │ │ │ │ │ │ ├── foundation/
│ │ │ │ │ │ │ │ └── en/
│ │ │ │ │ │ │ │ └── bcfdf5ca1125ccb312799938d8f09a81676f5db0/
│ │ │ │ │ │ │ │ ├── javascript-packed.js
│ │ │ │ │ │ │ │ ├── javascript.js
│ │ │ │ │ │ │ │ ├── stylesheet-packed.css
│ │ │ │ │ │ │ │ └── stylesheet.css
│ │ │ │ │ │ │ ├── runtime/
│ │ │ │ │ │ │ │ └── en/
│ │ │ │ │ │ │ │ └── d9e5073e5a6d48c7c3c4e53ef7bf433a6f6ac61b/
│ │ │ │ │ │ │ │ ├── javascript-packed.js
│ │ │ │ │ │ │ │ ├── javascript.js
│ │ │ │ │ │ │ │ └── stylesheet-packed.css
│ │ │ │ │ │ │ └── standard_theme/
│ │ │ │ │ │ │ └── en/
│ │ │ │ │ │ │ └── 52366532814d7f12ca549445e2e2a07c4b5f73d6/
│ │ │ │ │ │ │ ├── javascript-packed.js
│ │ │ │ │ │ │ ├── stylesheet-packed.css
│ │ │ │ │ │ │ └── stylesheet.css
│ │ │ │ │ │ └── todos/
│ │ │ │ │ │ └── en/
│ │ │ │ │ │ └── ee972277c11ed2d7cf0765e9c5b9738575b9248d/
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── javascript.js
│ │ │ │ │ ├── todo.lua
│ │ │ │ │ └── todo.sql
│ │ │ │ ├── todo/
│ │ │ │ │ ├── items.op
│ │ │ │ │ ├── todo.lua
│ │ │ │ │ ├── todo.op
│ │ │ │ │ └── todo.sql
│ │ │ │ └── toycms/
│ │ │ │ ├── config.lua
│ │ │ │ ├── ext/
│ │ │ │ │ ├── date/
│ │ │ │ │ │ └── smoothness/
│ │ │ │ │ │ └── jquery-ui-1.7.2.custom.css
│ │ │ │ │ ├── forms/
│ │ │ │ │ │ └── form_support.js
│ │ │ │ │ ├── richtext/
│ │ │ │ │ │ ├── jquery.wysiwyg.css
│ │ │ │ │ │ └── jquery.wysiwyg.js
│ │ │ │ │ └── tag/
│ │ │ │ │ └── jquery.autocomplete.css
│ │ │ │ ├── plugins/
│ │ │ │ │ ├── nodes.lua
│ │ │ │ │ └── poll.lua
│ │ │ │ ├── themes/
│ │ │ │ │ ├── default/
│ │ │ │ │ │ ├── config.lua
│ │ │ │ │ │ ├── css/
│ │ │ │ │ │ │ └── default.css
│ │ │ │ │ │ ├── layout.html
│ │ │ │ │ │ └── pages/
│ │ │ │ │ │ ├── home.html
│ │ │ │ │ │ ├── poll.html
│ │ │ │ │ │ └── post.html
│ │ │ │ │ └── wordpress/
│ │ │ │ │ ├── blocks/
│ │ │ │ │ │ ├── about.html
│ │ │ │ │ │ ├── archives.html
│ │ │ │ │ │ ├── banner.html
│ │ │ │ │ │ ├── copyright.html
│ │ │ │ │ │ ├── ga.html
│ │ │ │ │ │ ├── links.html
│ │ │ │ │ │ ├── poll.html
│ │ │ │ │ │ ├── poll_result.html
│ │ │ │ │ │ ├── post.html
│ │ │ │ │ │ ├── powered_by.html
│ │ │ │ │ │ ├── recent_links.html
│ │ │ │ │ │ ├── show_latest.html
│ │ │ │ │ │ └── syndicate.html
│ │ │ │ │ ├── config.lua
│ │ │ │ │ ├── css/
│ │ │ │ │ │ ├── base_styles.css
│ │ │ │ │ │ ├── style.css
│ │ │ │ │ │ └── theme_styles.css
│ │ │ │ │ ├── layout.html
│ │ │ │ │ └── pages/
│ │ │ │ │ ├── form-edit-node.html
│ │ │ │ │ ├── form-new-node.html
│ │ │ │ │ ├── home.html
│ │ │ │ │ ├── poll.html
│ │ │ │ │ └── post.html
│ │ │ │ ├── toycms.lua
│ │ │ │ └── toycms.sql
│ │ │ ├── src/
│ │ │ │ ├── launchers/
│ │ │ │ │ ├── op.cgi
│ │ │ │ │ ├── op.fcgi
│ │ │ │ │ └── orbit
│ │ │ │ ├── orbit/
│ │ │ │ │ ├── model.lua
│ │ │ │ │ ├── ophandler.lua
│ │ │ │ │ ├── pages.lua
│ │ │ │ │ └── schema.lua
│ │ │ │ └── orbit.lua
│ │ │ └── test/
│ │ │ ├── test_schema.lua
│ │ │ └── test_sql.lua
│ │ ├── ospath/
│ │ │ ├── COPYRIGHT
│ │ │ ├── doc/
│ │ │ │ └── us/
│ │ │ │ ├── doc.bat
│ │ │ │ ├── doc.css
│ │ │ │ ├── index.html
│ │ │ │ ├── index.md
│ │ │ │ └── makedoc.lua
│ │ │ ├── ospath.jam
│ │ │ ├── readme.md
│ │ │ ├── src/
│ │ │ │ ├── ospath.c
│ │ │ │ ├── ospath.lua
│ │ │ │ ├── pusherror.c
│ │ │ │ └── pusherror.h
│ │ │ └── tests/
│ │ │ ├── ospathtests.lua
│ │ │ └── rt4.lua
│ │ ├── osprocess/
│ │ │ ├── COPYRIGHT
│ │ │ ├── doc/
│ │ │ │ └── us/
│ │ │ │ ├── doc.bat
│ │ │ │ ├── doc.css
│ │ │ │ ├── index.html
│ │ │ │ ├── index.md
│ │ │ │ └── makedoc.lua
│ │ │ ├── osprocess.jam
│ │ │ ├── osprocess.lua
│ │ │ ├── posix/
│ │ │ │ ├── ex.c
│ │ │ │ ├── posix_spawn.c
│ │ │ │ ├── posix_spawn.h
│ │ │ │ ├── spawn.c
│ │ │ │ └── spawn.h
│ │ │ ├── readme.md
│ │ │ ├── tests/
│ │ │ │ ├── rt1.lua
│ │ │ │ ├── rt2.lua
│ │ │ │ ├── rt5.lua
│ │ │ │ └── rt7.lua
│ │ │ └── w32api/
│ │ │ ├── ex.c
│ │ │ ├── pusherror.c
│ │ │ ├── pusherror.h
│ │ │ ├── spawn.c
│ │ │ └── spawn.h
│ │ ├── p4/
│ │ │ ├── .gitignore
│ │ │ ├── doc/
│ │ │ │ └── us/
│ │ │ │ ├── doc.bat
│ │ │ │ ├── doc.css
│ │ │ │ ├── index.html
│ │ │ │ ├── index.md
│ │ │ │ ├── license.html
│ │ │ │ ├── license.md
│ │ │ │ └── makedoc.lua
│ │ │ ├── getp4api_macosx.sh
│ │ │ ├── getp4api_vs2008.bat
│ │ │ ├── getp4api_vs2010.bat
│ │ │ ├── p4.jam
│ │ │ ├── readme.md
│ │ │ ├── src/
│ │ │ │ ├── clientuserlua.cpp
│ │ │ │ ├── clientuserlua.h
│ │ │ │ ├── luamessage.cpp
│ │ │ │ ├── luamessage.h
│ │ │ │ ├── p4.cpp
│ │ │ │ ├── p4.lua
│ │ │ │ ├── p4clientapi.cpp
│ │ │ │ ├── p4clientapi.h
│ │ │ │ ├── p4lua.def
│ │ │ │ ├── p4luadebug.h
│ │ │ │ ├── p4mapmaker.cpp
│ │ │ │ ├── p4mapmaker.h
│ │ │ │ ├── p4mergedata.cpp
│ │ │ │ ├── p4mergedata.h
│ │ │ │ ├── p4result.cpp
│ │ │ │ ├── p4result.h
│ │ │ │ ├── specmgr.cpp
│ │ │ │ ├── specmgr.h
│ │ │ │ └── undefdups.h
│ │ │ └── test/
│ │ │ ├── api_level.lua
│ │ │ ├── changepassword.lua
│ │ │ ├── charset.lua
│ │ │ ├── createws_sync.lua
│ │ │ ├── cwd.lua
│ │ │ ├── delete_all_labels.lua
│ │ │ ├── delete_client_365.lua
│ │ │ ├── errors.lua
│ │ │ ├── exception_level.lua
│ │ │ ├── filelog.lua
│ │ │ ├── info.lua
│ │ │ ├── input.lua
│ │ │ ├── keepalive1.lua
│ │ │ ├── keepalive2.lua
│ │ │ ├── login.lua
│ │ │ ├── modify_client1.lua
│ │ │ ├── modify_client2.lua
│ │ │ ├── output.lua
│ │ │ ├── password.lua
│ │ │ ├── prog.lua
│ │ │ ├── resolve.lua
│ │ │ ├── submit1.lua
│ │ │ ├── submit2.lua
│ │ │ └── warnings.lua
│ │ ├── pack/
│ │ │ ├── Makefile
│ │ │ ├── README
│ │ │ ├── lpack.c
│ │ │ └── test.lua
│ │ ├── penlight/
│ │ │ ├── CHANGES.md
│ │ │ ├── CONTRIBUTING.md
│ │ │ ├── LICENSE.md
│ │ │ ├── README.md
│ │ │ ├── doc/
│ │ │ │ ├── config.ld
│ │ │ │ └── manual/
│ │ │ │ ├── 01-introduction.md
│ │ │ │ ├── 02-arrays.md
│ │ │ │ ├── 03-strings.md
│ │ │ │ ├── 04-paths.md
│ │ │ │ ├── 05-dates.md
│ │ │ │ ├── 06-data.md
│ │ │ │ ├── 07-functional.md
│ │ │ │ ├── 08-additional.md
│ │ │ │ └── 09-discussion.md
│ │ │ ├── examples/
│ │ │ │ ├── seesubst.lua
│ │ │ │ ├── sipscan.lua
│ │ │ │ ├── symbols.lua
│ │ │ │ ├── test-cmp.lua
│ │ │ │ ├── test-listcallbacks.lua
│ │ │ │ ├── test-pretty.lua
│ │ │ │ ├── test-symbols.lua
│ │ │ │ ├── testapp.lua
│ │ │ │ ├── testclone.lua
│ │ │ │ ├── testconfig.lua
│ │ │ │ ├── testglobal.lua
│ │ │ │ ├── testinputfields.lua
│ │ │ │ ├── testinputfields2.lua
│ │ │ │ ├── testxml.lua
│ │ │ │ └── which.lua
│ │ │ ├── lua/
│ │ │ │ └── pl/
│ │ │ │ ├── Date.lua
│ │ │ │ ├── Map.lua
│ │ │ │ ├── MultiMap.lua
│ │ │ │ ├── OrderedMap.lua
│ │ │ │ ├── Set.lua
│ │ │ │ ├── app.lua
│ │ │ │ ├── array2d.lua
│ │ │ │ ├── class.lua
│ │ │ │ ├── compat.lua
│ │ │ │ ├── comprehension.lua
│ │ │ │ ├── config.lua
│ │ │ │ ├── data.lua
│ │ │ │ ├── dir.lua
│ │ │ │ ├── file.lua
│ │ │ │ ├── func.lua
│ │ │ │ ├── import_into.lua
│ │ │ │ ├── init.lua
│ │ │ │ ├── input.lua
│ │ │ │ ├── lapp.lua
│ │ │ │ ├── lexer.lua
│ │ │ │ ├── list.lua
│ │ │ │ ├── luabalanced.lua
│ │ │ │ ├── operator.lua
│ │ │ │ ├── path.lua
│ │ │ │ ├── permute.lua
│ │ │ │ ├── pretty.lua
│ │ │ │ ├── seq.lua
│ │ │ │ ├── sip.lua
│ │ │ │ ├── strict.lua
│ │ │ │ ├── stringio.lua
│ │ │ │ ├── stringx.lua
│ │ │ │ ├── tablex.lua
│ │ │ │ ├── template.lua
│ │ │ │ ├── test.lua
│ │ │ │ ├── text.lua
│ │ │ │ ├── types.lua
│ │ │ │ ├── utils.lua
│ │ │ │ └── xml.lua
│ │ │ ├── penlight-1.1.0-3.rockspec
│ │ │ ├── run.lua
│ │ │ └── tests/
│ │ │ ├── lua/
│ │ │ │ ├── animal.lua
│ │ │ │ ├── bar.lua
│ │ │ │ ├── foo/
│ │ │ │ │ └── args.lua
│ │ │ │ ├── mod52.lua
│ │ │ │ └── mymod.lua
│ │ │ ├── test-animal.lua
│ │ │ ├── test-args.lua
│ │ │ ├── test-array.lua
│ │ │ ├── test-class.lua
│ │ │ ├── test-compare-no-order.lua
│ │ │ ├── test-comprehension.lua
│ │ │ ├── test-config.lua
│ │ │ ├── test-data.lua
│ │ │ ├── test-date.lua
│ │ │ ├── test-dir.lua
│ │ │ ├── test-fenv.lua
│ │ │ ├── test-func.lua
│ │ │ ├── test-import_into.lua
│ │ │ ├── test-job-query.lua
│ │ │ ├── test-klass.lua
│ │ │ ├── test-lapp.lua
│ │ │ ├── test-lexer.lua
│ │ │ ├── test-list.lua
│ │ │ ├── test-map.lua
│ │ │ ├── test-move.lua
│ │ │ ├── test-path.lua
│ │ │ ├── test-pretty-number.lua
│ │ │ ├── test-pretty.lua
│ │ │ ├── test-pylib.lua
│ │ │ ├── test-relpath.lua
│ │ │ ├── test-seq.lua
│ │ │ ├── test-set.lua
│ │ │ ├── test-sip.lua
│ │ │ ├── test-strict.lua
│ │ │ ├── test-stringio.lua
│ │ │ ├── test-stringx.lua
│ │ │ ├── test-substitute.lua
│ │ │ ├── test-super.lua
│ │ │ ├── test-tablex.lua
│ │ │ ├── test-text.lua
│ │ │ ├── test-tzone.lua
│ │ │ ├── test-vector.lua
│ │ │ ├── test-xml.lua
│ │ │ └── tests.run
│ │ ├── python/
│ │ │ ├── CMakeLists.txt
│ │ │ ├── LICENSE
│ │ │ ├── MANIFEST.in
│ │ │ ├── Makefile
│ │ │ ├── PKG-INFO
│ │ │ ├── README.md
│ │ │ ├── setup.cfg
│ │ │ ├── setup.py
│ │ │ ├── src/
│ │ │ │ ├── CMakeLists.txt
│ │ │ │ ├── luainpython.c
│ │ │ │ ├── luainpython.h
│ │ │ │ ├── pythoninlua.c
│ │ │ │ └── pythoninlua.h
│ │ │ └── test.py
│ │ ├── python-marshal/
│ │ │ ├── marshal.lua
│ │ │ └── python-marshal.jam
│ │ ├── random/
│ │ │ ├── Makefile
│ │ │ ├── README
│ │ │ ├── lrandom.c
│ │ │ ├── random.c
│ │ │ └── test.lua
│ │ ├── replace/
│ │ │ ├── replace.c
│ │ │ └── replace.jam
│ │ ├── rings/
│ │ │ ├── Makefile
│ │ │ ├── Makefile.win
│ │ │ ├── README
│ │ │ ├── config
│ │ │ ├── config.win
│ │ │ ├── configure
│ │ │ ├── doc/
│ │ │ │ └── us/
│ │ │ │ ├── index.html
│ │ │ │ ├── license.html
│ │ │ │ └── manual.html
│ │ │ ├── rockspecs/
│ │ │ │ ├── rings-1.2.0-1.rockspec
│ │ │ │ ├── rings-1.2.0-2.rockspec
│ │ │ │ ├── rings-1.2.1-1.rockspec
│ │ │ │ ├── rings-1.2.1rc1-1.rockspec
│ │ │ │ ├── rings-1.2.2-1.rockspec
│ │ │ │ ├── rings-1.2.2-2.rockspec
│ │ │ │ ├── rings-1.2.3-1.rockspec
│ │ │ │ ├── rings-1.3.0-1.rockspec
│ │ │ │ ├── rings-cvs-2.rockspec
│ │ │ │ ├── rings-cvs-3.rockspec
│ │ │ │ └── rings-cvs-4.rockspec
│ │ │ ├── src/
│ │ │ │ ├── rings.c
│ │ │ │ ├── rings.def
│ │ │ │ └── stable.lua
│ │ │ ├── tests/
│ │ │ │ ├── sample.lua
│ │ │ │ ├── sample_state.lua
│ │ │ │ └── test.lua
│ │ │ └── vc6/
│ │ │ ├── rings.def
│ │ │ ├── rings.dsw
│ │ │ └── rings_dll.dsp
│ │ ├── slnunicode/
│ │ │ ├── CHANGES
│ │ │ ├── Makefile
│ │ │ ├── slnudata.c
│ │ │ ├── slnunico.c
│ │ │ └── unitest
│ │ ├── socket/
│ │ │ ├── .gitignore
│ │ │ ├── .travis.yml
│ │ │ ├── FIX
│ │ │ ├── LICENSE
│ │ │ ├── Lua51.props
│ │ │ ├── Lua52.props
│ │ │ ├── NEW
│ │ │ ├── README
│ │ │ ├── TODO
│ │ │ ├── WISH
│ │ │ ├── doc/
│ │ │ │ ├── dns.html
│ │ │ │ ├── ftp.html
│ │ │ │ ├── http.html
│ │ │ │ ├── index.html
│ │ │ │ ├── installation.html
│ │ │ │ ├── introduction.html
│ │ │ │ ├── ltn12.html
│ │ │ │ ├── lua05.ppt
│ │ │ │ ├── mime.html
│ │ │ │ ├── reference.css
│ │ │ │ ├── reference.html
│ │ │ │ ├── smtp.html
│ │ │ │ ├── socket.html
│ │ │ │ ├── tcp.html
│ │ │ │ ├── udp.html
│ │ │ │ └── url.html
│ │ │ ├── etc/
│ │ │ │ ├── README
│ │ │ │ ├── b64.lua
│ │ │ │ ├── check-links.lua
│ │ │ │ ├── check-memory.lua
│ │ │ │ ├── cookie.lua
│ │ │ │ ├── dict.lua
│ │ │ │ ├── dispatch.lua
│ │ │ │ ├── eol.lua
│ │ │ │ ├── forward.lua
│ │ │ │ ├── get.lua
│ │ │ │ ├── links
│ │ │ │ ├── lp.lua
│ │ │ │ ├── qp.lua
│ │ │ │ └── tftp.lua
│ │ │ ├── gem/
│ │ │ │ ├── ex1.lua
│ │ │ │ ├── ex10.lua
│ │ │ │ ├── ex11.lua
│ │ │ │ ├── ex12.lua
│ │ │ │ ├── ex2.lua
│ │ │ │ ├── ex3.lua
│ │ │ │ ├── ex4.lua
│ │ │ │ ├── ex5.lua
│ │ │ │ ├── ex6.lua
│ │ │ │ ├── ex7.lua
│ │ │ │ ├── ex8.lua
│ │ │ │ ├── ex9.lua
│ │ │ │ ├── gem.c
│ │ │ │ ├── gt.b64
│ │ │ │ ├── ltn012.tex
│ │ │ │ ├── makefile
│ │ │ │ ├── myps2pdf
│ │ │ │ ├── t1.lua
│ │ │ │ ├── t1lf.txt
│ │ │ │ ├── t2.lua
│ │ │ │ ├── t2.txt
│ │ │ │ ├── t2gt.qp
│ │ │ │ ├── t3.lua
│ │ │ │ ├── t4.lua
│ │ │ │ ├── t5.lua
│ │ │ │ └── test.lua
│ │ │ ├── linux.cmd
│ │ │ ├── logo.ps
│ │ │ ├── ltn012.wiki
│ │ │ ├── ltn013.wiki
│ │ │ ├── luasocket-scm-0.rockspec
│ │ │ ├── luasocket.sln
│ │ │ ├── macosx.cmd
│ │ │ ├── makefile
│ │ │ ├── makefile.dist
│ │ │ ├── mime.vcxproj
│ │ │ ├── mime.vcxproj.filters
│ │ │ ├── mingw.cmd
│ │ │ ├── samples/
│ │ │ │ ├── README
│ │ │ │ ├── cddb.lua
│ │ │ │ ├── daytimeclnt.lua
│ │ │ │ ├── echoclnt.lua
│ │ │ │ ├── echosrvr.lua
│ │ │ │ ├── listener.lua
│ │ │ │ ├── lpr.lua
│ │ │ │ ├── mclisten.lua
│ │ │ │ ├── mcsend.lua
│ │ │ │ ├── talker.lua
│ │ │ │ └── tinyirc.lua
│ │ │ ├── socket.vcxproj
│ │ │ ├── socket.vcxproj.filters
│ │ │ ├── src/
│ │ │ │ ├── auxiliar.c
│ │ │ │ ├── auxiliar.h
│ │ │ │ ├── buffer.c
│ │ │ │ ├── buffer.h
│ │ │ │ ├── except.c
│ │ │ │ ├── except.h
│ │ │ │ ├── ftp.lua
│ │ │ │ ├── headers.lua
│ │ │ │ ├── http.lua
│ │ │ │ ├── inet.c
│ │ │ │ ├── inet.h
│ │ │ │ ├── io.c
│ │ │ │ ├── io.h
│ │ │ │ ├── ltn12.lua
│ │ │ │ ├── luasocket.c
│ │ │ │ ├── luasocket.h
│ │ │ │ ├── makefile
│ │ │ │ ├── mbox.lua
│ │ │ │ ├── mime.c
│ │ │ │ ├── mime.h
│ │ │ │ ├── mime.lua
│ │ │ │ ├── options.c
│ │ │ │ ├── options.h
│ │ │ │ ├── select.c
│ │ │ │ ├── select.h
│ │ │ │ ├── serial.c
│ │ │ │ ├── smtp.lua
│ │ │ │ ├── socket.h
│ │ │ │ ├── socket.lua
│ │ │ │ ├── tcp.c
│ │ │ │ ├── tcp.h
│ │ │ │ ├── timeout.c
│ │ │ │ ├── timeout.h
│ │ │ │ ├── tp.lua
│ │ │ │ ├── udp.c
│ │ │ │ ├── udp.h
│ │ │ │ ├── unix.c
│ │ │ │ ├── unix.h
│ │ │ │ ├── url.lua
│ │ │ │ ├── usocket.c
│ │ │ │ ├── usocket.h
│ │ │ │ ├── wsocket.c
│ │ │ │ └── wsocket.h
│ │ │ ├── test/
│ │ │ │ ├── README
│ │ │ │ ├── auth/
│ │ │ │ │ ├── .htpasswd
│ │ │ │ │ └── index.html
│ │ │ │ ├── cgi/
│ │ │ │ │ ├── cat
│ │ │ │ │ ├── cat-index-html
│ │ │ │ │ ├── env
│ │ │ │ │ ├── query-string
│ │ │ │ │ ├── redirect-loop
│ │ │ │ │ └── request-uri
│ │ │ │ ├── dicttest.lua
│ │ │ │ ├── excepttest.lua
│ │ │ │ ├── find-connect-limit
│ │ │ │ ├── ftptest.lua
│ │ │ │ ├── hello.lua
│ │ │ │ ├── httptest.lua
│ │ │ │ ├── index.html
│ │ │ │ ├── ltn12test.lua
│ │ │ │ ├── mimetest.lua
│ │ │ │ ├── smtptest.lua
│ │ │ │ ├── stufftest.lua
│ │ │ │ ├── tcp-getoptions
│ │ │ │ ├── test_bind.lua
│ │ │ │ ├── test_getaddrinfo.lua
│ │ │ │ ├── test_socket_error.lua
│ │ │ │ ├── testclnt.lua
│ │ │ │ ├── testmesg.lua
│ │ │ │ ├── testsrvr.lua
│ │ │ │ ├── testsupport.lua
│ │ │ │ ├── tftptest.lua
│ │ │ │ ├── udp-zero-length-send
│ │ │ │ ├── udp-zero-length-send-recv
│ │ │ │ ├── udpconnectclnt.lua
│ │ │ │ ├── udpconnectsrvr.lua
│ │ │ │ ├── unixclnt.lua
│ │ │ │ ├── unixsrvr.lua
│ │ │ │ ├── upload.html
│ │ │ │ ├── urltest.lua
│ │ │ │ ├── utestclnt.lua
│ │ │ │ └── utestsrvr.lua
│ │ │ └── win32.cmd
│ │ ├── sqlite3/
│ │ │ ├── ChangeLog
│ │ │ ├── LICENSE
│ │ │ ├── Makefile.in
│ │ │ ├── README
│ │ │ ├── configure
│ │ │ ├── configure.ac
│ │ │ ├── documentation.html
│ │ │ ├── examples/
│ │ │ │ ├── aggregate.lua
│ │ │ │ ├── function.lua
│ │ │ │ ├── order.lua
│ │ │ │ ├── path.lua
│ │ │ │ ├── simple.lua
│ │ │ │ ├── smart.lua
│ │ │ │ ├── statement.lua
│ │ │ │ └── tracing.lua
│ │ │ ├── libluasqlite3-loader.lua.in
│ │ │ ├── libluasqlite3.c
│ │ │ ├── luasql-sqlite3.lua
│ │ │ ├── lunit.lua
│ │ │ ├── sqlite/
│ │ │ │ ├── sqlite3.c
│ │ │ │ ├── sqlite3.h
│ │ │ │ └── sqlite3ext.h
│ │ │ ├── sqlite3.lua
│ │ │ ├── tests-luasql.lua
│ │ │ ├── tests-sqlite3.lua
│ │ │ └── tests.lua
│ │ ├── struct/
│ │ │ ├── makefile
│ │ │ ├── struct.c
│ │ │ ├── struct.html
│ │ │ └── teststruct.lua
│ │ ├── uuid/
│ │ │ ├── Makefile
│ │ │ ├── Makefile.win32
│ │ │ ├── README
│ │ │ ├── README.win32
│ │ │ ├── luuid.c
│ │ │ ├── test.lua
│ │ │ ├── wuuid.c
│ │ │ └── wuuid.h
│ │ ├── windows/
│ │ │ ├── KeystrokeEngine.cpp
│ │ │ ├── KeystrokeEngine.h
│ │ │ ├── WindowEngine.cpp
│ │ │ ├── WindowEngine.h
│ │ │ ├── windows.cpp
│ │ │ └── windows.jam
│ │ ├── windows-reg/
│ │ │ ├── src/
│ │ │ │ ├── hkey.c
│ │ │ │ ├── pusherror.c
│ │ │ │ ├── pusherror.h
│ │ │ │ └── reg.lua
│ │ │ └── windows-reg.jam
│ │ ├── wsapi/
│ │ │ ├── Makefile
│ │ │ ├── Makefile.win
│ │ │ ├── README
│ │ │ ├── configure
│ │ │ ├── doc/
│ │ │ │ └── us/
│ │ │ │ ├── doc.css
│ │ │ │ ├── index.html
│ │ │ │ ├── index.md
│ │ │ │ ├── libraries.html
│ │ │ │ ├── libraries.md
│ │ │ │ ├── license.html
│ │ │ │ ├── license.md
│ │ │ │ ├── makedoc.lua
│ │ │ │ ├── manual.html
│ │ │ │ └── manual.md
│ │ │ ├── rockspec/
│ │ │ │ ├── wsapi-1.0-1.rockspec
│ │ │ │ ├── wsapi-1.0-2.rockspec
│ │ │ │ ├── wsapi-1.0rc1-1.rockspec
│ │ │ │ ├── wsapi-1.1-1.rockspec
│ │ │ │ ├── wsapi-1.1-2.rockspec
│ │ │ │ ├── wsapi-1.2-1.rockspec
│ │ │ │ ├── wsapi-1.2-2.rockspec
│ │ │ │ ├── wsapi-1.3-1.rockspec
│ │ │ │ ├── wsapi-1.3.1-1.rockspec
│ │ │ │ ├── wsapi-1.3.2-1.rockspec
│ │ │ │ ├── wsapi-1.3.3-1.rockspec
│ │ │ │ ├── wsapi-1.3.4-1.rockspec
│ │ │ │ ├── wsapi-1.4-1.rockspec
│ │ │ │ ├── wsapi-1.5-1.rockspec
│ │ │ │ ├── wsapi-1.6-1.rockspec
│ │ │ │ ├── wsapi-1.6.1-1.rockspec
│ │ │ │ ├── wsapi-cvs-1.rockspec
│ │ │ │ ├── wsapi-cvs-2.rockspec
│ │ │ │ ├── wsapi-cvs-3.rockspec
│ │ │ │ ├── wsapi-cvs-4.rockspec
│ │ │ │ ├── wsapi-fcgi-1.0-1.rockspec
│ │ │ │ ├── wsapi-fcgi-1.0-2.rockspec
│ │ │ │ ├── wsapi-fcgi-1.0rc1-1.rockspec
│ │ │ │ ├── wsapi-fcgi-1.1-1.rockspec
│ │ │ │ ├── wsapi-fcgi-1.1-2.rockspec
│ │ │ │ ├── wsapi-fcgi-1.1-3.rockspec
│ │ │ │ ├── wsapi-fcgi-1.2-1.rockspec
│ │ │ │ ├── wsapi-fcgi-1.3-1.rockspec
│ │ │ │ ├── wsapi-fcgi-1.3.1-1.rockspec
│ │ │ │ ├── wsapi-fcgi-1.3.2-1.rockspec
│ │ │ │ ├── wsapi-fcgi-1.3.3-1.rockspec
│ │ │ │ ├── wsapi-fcgi-1.3.4-1.rockspec
│ │ │ │ ├── wsapi-fcgi-1.4-1.rockspec
│ │ │ │ ├── wsapi-fcgi-1.5-1.rockspec
│ │ │ │ ├── wsapi-fcgi-1.6-1.rockspec
│ │ │ │ ├── wsapi-fcgi-1.6.1-1.rockspec
│ │ │ │ ├── wsapi-fcgi-cvs-1.rockspec
│ │ │ │ ├── wsapi-fcgi-cvs-2.rockspec
│ │ │ │ ├── wsapi-xavante-1.2-1.rockspec
│ │ │ │ ├── wsapi-xavante-1.3-1.rockspec
│ │ │ │ ├── wsapi-xavante-1.3.1-1.rockspec
│ │ │ │ ├── wsapi-xavante-1.3.2-1.rockspec
│ │ │ │ ├── wsapi-xavante-1.3.3-1.rockspec
│ │ │ │ ├── wsapi-xavante-1.3.4-1.rockspec
│ │ │ │ ├── wsapi-xavante-1.4-1.rockspec
│ │ │ │ ├── wsapi-xavante-1.5-1.rockspec
│ │ │ │ ├── wsapi-xavante-1.6-1.rockspec
│ │ │ │ ├── wsapi-xavante-1.6.1-1.rockspec
│ │ │ │ └── wsapi-xavante-cvs-1.rockspec
│ │ │ ├── samples/
│ │ │ │ ├── cgi-example.lua
│ │ │ │ ├── fastcgi-example.lua
│ │ │ │ ├── hello.lua
│ │ │ │ ├── hello_config.lua
│ │ │ │ └── xavante-example.lua
│ │ │ ├── src/
│ │ │ │ ├── fastcgi/
│ │ │ │ │ ├── lfcgi.c
│ │ │ │ │ ├── lfcgi.def
│ │ │ │ │ └── lfcgi.h
│ │ │ │ ├── launcher/
│ │ │ │ │ ├── launcher.c
│ │ │ │ │ ├── make_rc.lua
│ │ │ │ │ ├── wsapi
│ │ │ │ │ ├── wsapi.c
│ │ │ │ │ ├── wsapi.cgi
│ │ │ │ │ └── wsapi.fcgi
│ │ │ │ ├── wsapi/
│ │ │ │ │ ├── cgi.lua
│ │ │ │ │ ├── common.lua
│ │ │ │ │ ├── fastcgi.lua
│ │ │ │ │ ├── mock.lua
│ │ │ │ │ ├── request.lua
│ │ │ │ │ ├── response.lua
│ │ │ │ │ ├── ringer.lua
│ │ │ │ │ ├── sapi.lua
│ │ │ │ │ ├── util.lua
│ │ │ │ │ └── xavante.lua
│ │ │ │ └── wsapi.lua
│ │ │ ├── tests/
│ │ │ │ ├── mock_test.lua
│ │ │ │ └── test_request.lua
│ │ │ ├── wsapi-install
│ │ │ └── wsapi-install-1.6
│ │ ├── wxLua/
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Makefile.wx-config
│ │ │ ├── apps/
│ │ │ │ ├── CMakeLists.txt
│ │ │ │ ├── wxlua/
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── editor.h
│ │ │ │ │ ├── wxlua.cpp
│ │ │ │ │ ├── wxlua.h
│ │ │ │ │ └── wxlua.rc
│ │ │ │ ├── wxluacan/
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── cancom.cpp
│ │ │ │ │ ├── cancom.h
│ │ │ │ │ ├── canlua.cpp
│ │ │ │ │ ├── canlua.h
│ │ │ │ │ ├── cansim.cpp
│ │ │ │ │ ├── cansim.h
│ │ │ │ │ ├── cansim.rc
│ │ │ │ │ ├── scripts/
│ │ │ │ │ │ └── incircles.lua
│ │ │ │ │ ├── wxluacan.i
│ │ │ │ │ ├── wxluacan_bind.cpp
│ │ │ │ │ ├── wxluacan_bind.h
│ │ │ │ │ └── wxluacan_rules.lua
│ │ │ │ ├── wxluaedit/
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── readme.txt
│ │ │ │ │ ├── wxledit.cpp
│ │ │ │ │ ├── wxledit.h
│ │ │ │ │ ├── wxluaedit.cpp
│ │ │ │ │ └── wxluaedit.rc
│ │ │ │ └── wxluafreeze/
│ │ │ │ ├── CMakeLists.txt
│ │ │ │ ├── Makefile
│ │ │ │ ├── readme.txt
│ │ │ │ ├── wxluafreeze.cpp
│ │ │ │ ├── wxluafreeze.lua
│ │ │ │ └── wxluafreeze.rc
│ │ │ ├── art/
│ │ │ │ ├── copy.xpm
│ │ │ │ ├── cursors/
│ │ │ │ │ ├── copy_cur.cur
│ │ │ │ │ ├── drag_cur.cur
│ │ │ │ │ ├── edit_cur.cur
│ │ │ │ │ └── move_cur.cur
│ │ │ │ ├── cut.xpm
│ │ │ │ ├── help.xpm
│ │ │ │ ├── new.xpm
│ │ │ │ ├── open.xpm
│ │ │ │ ├── paste.xpm
│ │ │ │ ├── play.xpm
│ │ │ │ ├── readme.txt
│ │ │ │ ├── save.xpm
│ │ │ │ ├── saveall.xpm
│ │ │ │ ├── stop.xpm
│ │ │ │ ├── wxlua.r
│ │ │ │ ├── wxlua.xpm
│ │ │ │ ├── wxlualogo.icns
│ │ │ │ └── wxlualogo.xpm
│ │ │ ├── bin/
│ │ │ │ ├── copydlls.bat
│ │ │ │ └── readme.txt
│ │ │ ├── bindings/
│ │ │ │ ├── CMakeLists.txt
│ │ │ │ ├── Makefile
│ │ │ │ ├── genidocs.lua
│ │ │ │ ├── genidocs_rules.lua
│ │ │ │ ├── genwxbind.bat
│ │ │ │ ├── genwxbind.lua
│ │ │ │ ├── parse_doxygen_xml.lua
│ │ │ │ ├── readme.txt
│ │ │ │ ├── wxlua/
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── override.hpp
│ │ │ │ │ ├── wxlua.i
│ │ │ │ │ └── wxlua_rules.lua
│ │ │ │ ├── wxlua_debugger/
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── override.hpp
│ │ │ │ │ ├── wxluadebugger.i
│ │ │ │ │ └── wxluadebugger_rules.lua
│ │ │ │ └── wxwidgets/
│ │ │ │ ├── wx_datatypes.lua
│ │ │ │ ├── wxadv_adv.i
│ │ │ │ ├── wxadv_grid.i
│ │ │ │ ├── wxadv_override.hpp
│ │ │ │ ├── wxadv_rules.lua
│ │ │ │ ├── wxaui_aui.i
│ │ │ │ ├── wxaui_rules.lua
│ │ │ │ ├── wxbase_base.i
│ │ │ │ ├── wxbase_config.i
│ │ │ │ ├── wxbase_data.i
│ │ │ │ ├── wxbase_datetime.i
│ │ │ │ ├── wxbase_file.i
│ │ │ │ ├── wxbase_override.hpp
│ │ │ │ ├── wxbase_rules.lua
│ │ │ │ ├── wxclassref.txt
│ │ │ │ ├── wxcore_appframe.i
│ │ │ │ ├── wxcore_clipdrag.i
│ │ │ │ ├── wxcore_controls.i
│ │ │ │ ├── wxcore_core.i
│ │ │ │ ├── wxcore_defsutils.i
│ │ │ │ ├── wxcore_dialogs.i
│ │ │ │ ├── wxcore_event.i
│ │ │ │ ├── wxcore_gdi.i
│ │ │ │ ├── wxcore_geometry.i
│ │ │ │ ├── wxcore_help.i
│ │ │ │ ├── wxcore_image.i
│ │ │ │ ├── wxcore_mdi.i
│ │ │ │ ├── wxcore_menutool.i
│ │ │ │ ├── wxcore_override.hpp
│ │ │ │ ├── wxcore_picker.i
│ │ │ │ ├── wxcore_print.i
│ │ │ │ ├── wxcore_rules.lua
│ │ │ │ ├── wxcore_sizer.i
│ │ │ │ ├── wxcore_windows.i
│ │ │ │ ├── wxdatatypes_rules.lua
│ │ │ │ ├── wxgl_gl.i
│ │ │ │ ├── wxgl_rules.lua
│ │ │ │ ├── wxhtml_html.i
│ │ │ │ ├── wxhtml_override.hpp
│ │ │ │ ├── wxhtml_rules.lua
│ │ │ │ ├── wxmedia_media.i
│ │ │ │ ├── wxmedia_rules.lua
│ │ │ │ ├── wxnet_net.i
│ │ │ │ ├── wxnet_override.hpp
│ │ │ │ ├── wxnet_rules.lua
│ │ │ │ ├── wxpropgrid_propgrid.i
│ │ │ │ ├── wxpropgrid_rules.lua
│ │ │ │ ├── wxrichtext_richtext.i
│ │ │ │ ├── wxrichtext_rules.lua
│ │ │ │ ├── wxstc_override.hpp
│ │ │ │ ├── wxstc_rules.lua
│ │ │ │ ├── wxstc_stc.i
│ │ │ │ ├── wxwebview_rules.lua
│ │ │ │ ├── wxwebview_webview.i
│ │ │ │ ├── wxxml_override.hpp
│ │ │ │ ├── wxxml_rules.lua
│ │ │ │ ├── wxxml_xml.i
│ │ │ │ ├── wxxrc_rules.lua
│ │ │ │ └── wxxrc_xrc.i
│ │ │ ├── distrib/
│ │ │ │ ├── announce.txt
│ │ │ │ ├── autopackage/
│ │ │ │ │ ├── default.apspec.in
│ │ │ │ │ ├── makeautopackage
│ │ │ │ │ ├── wxlua.desktop
│ │ │ │ │ └── wxlua.xml
│ │ │ │ ├── innosetup/
│ │ │ │ │ ├── Readme.txt
│ │ │ │ │ ├── modifypath.iss
│ │ │ │ │ └── wxlua.iss
│ │ │ │ └── macbundle/
│ │ │ │ ├── Info.plist.in
│ │ │ │ ├── copydylibs.command
│ │ │ │ ├── wxLua.icns
│ │ │ │ ├── wxLuaFile.icns
│ │ │ │ └── wxLuaFolder.icns
│ │ │ ├── docs/
│ │ │ │ ├── FAQ.html
│ │ │ │ ├── FAQ.txt
│ │ │ │ ├── Makefile
│ │ │ │ ├── binding.html
│ │ │ │ ├── binding.txt
│ │ │ │ ├── changelog.txt
│ │ │ │ ├── dirs.txt
│ │ │ │ ├── doxygen/
│ │ │ │ │ └── readme.txt
│ │ │ │ ├── doxygen.cfg
│ │ │ │ ├── install.html
│ │ │ │ ├── install.txt
│ │ │ │ ├── licence.txt
│ │ │ │ ├── readme.txt
│ │ │ │ ├── wxlua.css
│ │ │ │ ├── wxlua.html
│ │ │ │ ├── wxlua.txt
│ │ │ │ └── wxluaref.html
│ │ │ ├── lib/
│ │ │ │ └── readme.txt
│ │ │ ├── modules/
│ │ │ │ ├── CMakeLists.txt
│ │ │ │ ├── lua-5.1/
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── COPYRIGHT
│ │ │ │ │ ├── HISTORY
│ │ │ │ │ ├── INSTALL
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── README
│ │ │ │ │ ├── doc/
│ │ │ │ │ │ ├── contents.html
│ │ │ │ │ │ ├── lua.1
│ │ │ │ │ │ ├── lua.css
│ │ │ │ │ │ ├── lua.html
│ │ │ │ │ │ ├── luac.1
│ │ │ │ │ │ ├── luac.html
│ │ │ │ │ │ ├── manual.css
│ │ │ │ │ │ ├── manual.html
│ │ │ │ │ │ └── readme.html
│ │ │ │ │ ├── etc/
│ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ ├── README
│ │ │ │ │ │ ├── all.c
│ │ │ │ │ │ ├── bin2c.c
│ │ │ │ │ │ ├── lua.hpp
│ │ │ │ │ │ ├── lua.pc
│ │ │ │ │ │ ├── lua.xpm
│ │ │ │ │ │ ├── luavs.bat
│ │ │ │ │ │ ├── min.c
│ │ │ │ │ │ ├── noparser.c
│ │ │ │ │ │ └── strict.lua
│ │ │ │ │ ├── include/
│ │ │ │ │ │ ├── lauxlib.h
│ │ │ │ │ │ ├── lua.h
│ │ │ │ │ │ ├── luaconf.h
│ │ │ │ │ │ └── lualib.h
│ │ │ │ │ ├── src/
│ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ ├── lapi.c
│ │ │ │ │ │ ├── lapi.h
│ │ │ │ │ │ ├── lauxlib.c
│ │ │ │ │ │ ├── lauxlib.h
│ │ │ │ │ │ ├── lbaselib.c
│ │ │ │ │ │ ├── lcode.c
│ │ │ │ │ │ ├── lcode.h
│ │ │ │ │ │ ├── ldblib.c
│ │ │ │ │ │ ├── ldebug.c
│ │ │ │ │ │ ├── ldebug.h
│ │ │ │ │ │ ├── ldo.c
│ │ │ │ │ │ ├── ldo.h
│ │ │ │ │ │ ├── ldump.c
│ │ │ │ │ │ ├── lfunc.c
│ │ │ │ │ │ ├── lfunc.h
│ │ │ │ │ │ ├── lgc.c
│ │ │ │ │ │ ├── lgc.h
│ │ │ │ │ │ ├── linit.c
│ │ │ │ │ │ ├── liolib.c
│ │ │ │ │ │ ├── llex.c
│ │ │ │ │ │ ├── llex.h
│ │ │ │ │ │ ├── llimits.h
│ │ │ │ │ │ ├── lmathlib.c
│ │ │ │ │ │ ├── lmem.c
│ │ │ │ │ │ ├── lmem.h
│ │ │ │ │ │ ├── loadlib.c
│ │ │ │ │ │ ├── lobject.c
│ │ │ │ │ │ ├── lobject.h
│ │ │ │ │ │ ├── lopcodes.c
│ │ │ │ │ │ ├── lopcodes.h
│ │ │ │ │ │ ├── loslib.c
│ │ │ │ │ │ ├── lparser.c
│ │ │ │ │ │ ├── lparser.h
│ │ │ │ │ │ ├── lstate.c
│ │ │ │ │ │ ├── lstate.h
│ │ │ │ │ │ ├── lstring.c
│ │ │ │ │ │ ├── lstring.h
│ │ │ │ │ │ ├── lstrlib.c
│ │ │ │ │ │ ├── ltable.c
│ │ │ │ │ │ ├── ltable.h
│ │ │ │ │ │ ├── ltablib.c
│ │ │ │ │ │ ├── ltm.c
│ │ │ │ │ │ ├── ltm.h
│ │ │ │ │ │ ├── lua.c
│ │ │ │ │ │ ├── lua.h
│ │ │ │ │ │ ├── luac.c
│ │ │ │ │ │ ├── luaconf.h
│ │ │ │ │ │ ├── lualib.h
│ │ │ │ │ │ ├── lundump.c
│ │ │ │ │ │ ├── lundump.h
│ │ │ │ │ │ ├── lvm.c
│ │ │ │ │ │ ├── lvm.h
│ │ │ │ │ │ ├── lzio.c
│ │ │ │ │ │ ├── lzio.h
│ │ │ │ │ │ └── print.c
│ │ │ │ │ └── test/
│ │ │ │ │ ├── README
│ │ │ │ │ ├── bisect.lua
│ │ │ │ │ ├── cf.lua
│ │ │ │ │ ├── echo.lua
│ │ │ │ │ ├── env.lua
│ │ │ │ │ ├── factorial.lua
│ │ │ │ │ ├── fib.lua
│ │ │ │ │ ├── fibfor.lua
│ │ │ │ │ ├── globals.lua
│ │ │ │ │ ├── hello.lua
│ │ │ │ │ ├── life.lua
│ │ │ │ │ ├── luac.lua
│ │ │ │ │ ├── printf.lua
│ │ │ │ │ ├── readonly.lua
│ │ │ │ │ ├── sieve.lua
│ │ │ │ │ ├── sort.lua
│ │ │ │ │ ├── table.lua
│ │ │ │ │ ├── trace-calls.lua
│ │ │ │ │ ├── trace-globals.lua
│ │ │ │ │ └── xd.lua
│ │ │ │ ├── lua-5.2/
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── README
│ │ │ │ │ ├── doc/
│ │ │ │ │ │ ├── contents.html
│ │ │ │ │ │ ├── lua.1
│ │ │ │ │ │ ├── lua.css
│ │ │ │ │ │ ├── luac.1
│ │ │ │ │ │ ├── manual.css
│ │ │ │ │ │ ├── manual.html
│ │ │ │ │ │ └── readme.html
│ │ │ │ │ ├── lua.rc
│ │ │ │ │ └── src/
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── lapi.c
│ │ │ │ │ ├── lapi.h
│ │ │ │ │ ├── lauxlib.c
│ │ │ │ │ ├── lauxlib.h
│ │ │ │ │ ├── lbaselib.c
│ │ │ │ │ ├── lbitlib.c
│ │ │ │ │ ├── lcode.c
│ │ │ │ │ ├── lcode.h
│ │ │ │ │ ├── lcorolib.c
│ │ │ │ │ ├── lctype.c
│ │ │ │ │ ├── lctype.h
│ │ │ │ │ ├── ldblib.c
│ │ │ │ │ ├── ldebug.c
│ │ │ │ │ ├── ldebug.h
│ │ │ │ │ ├── ldo.c
│ │ │ │ │ ├── ldo.h
│ │ │ │ │ ├── ldump.c
│ │ │ │ │ ├── lfunc.c
│ │ │ │ │ ├── lfunc.h
│ │ │ │ │ ├── lgc.c
│ │ │ │ │ ├── lgc.h
│ │ │ │ │ ├── linit.c
│ │ │ │ │ ├── liolib.c
│ │ │ │ │ ├── llex.c
│ │ │ │ │ ├── llex.h
│ │ │ │ │ ├── llimits.h
│ │ │ │ │ ├── lmathlib.c
│ │ │ │ │ ├── lmem.c
│ │ │ │ │ ├── lmem.h
│ │ │ │ │ ├── loadlib.c
│ │ │ │ │ ├── lobject.c
│ │ │ │ │ ├── lobject.h
│ │ │ │ │ ├── lopcodes.c
│ │ │ │ │ ├── lopcodes.h
│ │ │ │ │ ├── loslib.c
│ │ │ │ │ ├── lparser.c
│ │ │ │ │ ├── lparser.h
│ │ │ │ │ ├── lstate.c
│ │ │ │ │ ├── lstate.h
│ │ │ │ │ ├── lstring.c
│ │ │ │ │ ├── lstring.h
│ │ │ │ │ ├── lstrlib.c
│ │ │ │ │ ├── ltable.c
│ │ │ │ │ ├── ltable.h
│ │ │ │ │ ├── ltablib.c
│ │ │ │ │ ├── ltm.c
│ │ │ │ │ ├── ltm.h
│ │ │ │ │ ├── lua.c
│ │ │ │ │ ├── lua.h
│ │ │ │ │ ├── lua.hpp
│ │ │ │ │ ├── luac.c
│ │ │ │ │ ├── luaconf.h
│ │ │ │ │ ├── lualib.h
│ │ │ │ │ ├── lundump.c
│ │ │ │ │ ├── lundump.h
│ │ │ │ │ ├── lvm.c
│ │ │ │ │ ├── lvm.h
│ │ │ │ │ ├── lzio.c
│ │ │ │ │ └── lzio.h
│ │ │ │ ├── luamodule/
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── luamodule.cpp
│ │ │ │ │ ├── luamodule.rc
│ │ │ │ │ └── luamoduledefs.h
│ │ │ │ ├── luaproxydll/
│ │ │ │ │ ├── proxydll.c
│ │ │ │ │ ├── proxydll.lib
│ │ │ │ │ ├── proxydll_exports_lua51.h
│ │ │ │ │ └── proxydll_exports_lua52.h
│ │ │ │ ├── wxbind/
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── include/
│ │ │ │ │ │ ├── wxadv_bind.h
│ │ │ │ │ │ ├── wxadv_wxladv.h
│ │ │ │ │ │ ├── wxaui_bind.h
│ │ │ │ │ │ ├── wxbase_bind.h
│ │ │ │ │ │ ├── wxbinddefs.h
│ │ │ │ │ │ ├── wxcore_bind.h
│ │ │ │ │ │ ├── wxcore_wxlcore.h
│ │ │ │ │ │ ├── wxgl_bind.h
│ │ │ │ │ │ ├── wxhtml_bind.h
│ │ │ │ │ │ ├── wxhtml_wxlhtml.h
│ │ │ │ │ │ ├── wxmedia_bind.h
│ │ │ │ │ │ ├── wxnet_bind.h
│ │ │ │ │ │ ├── wxpropgrid_bind.h
│ │ │ │ │ │ ├── wxrichtext_bind.h
│ │ │ │ │ │ ├── wxstc_bind.h
│ │ │ │ │ │ ├── wxwebview_bind.h
│ │ │ │ │ │ ├── wxxml_bind.h
│ │ │ │ │ │ └── wxxrc_bind.h
│ │ │ │ │ ├── setup/
│ │ │ │ │ │ └── wxluasetup.h
│ │ │ │ │ └── src/
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── Makefile_wxadv
│ │ │ │ │ ├── Makefile_wxaui
│ │ │ │ │ ├── Makefile_wxbase
│ │ │ │ │ ├── Makefile_wxcore
│ │ │ │ │ ├── Makefile_wxgl
│ │ │ │ │ ├── Makefile_wxhtml
│ │ │ │ │ ├── Makefile_wxmedia
│ │ │ │ │ ├── Makefile_wxnet
│ │ │ │ │ ├── Makefile_wxrichtext
│ │ │ │ │ ├── Makefile_wxstc
│ │ │ │ │ ├── Makefile_wxxml
│ │ │ │ │ ├── Makefile_wxxrc
│ │ │ │ │ ├── dummy.cpp
│ │ │ │ │ ├── wxadv_bind.cpp
│ │ │ │ │ ├── wxadv_wxladv.cpp
│ │ │ │ │ ├── wxaui_bind.cpp
│ │ │ │ │ ├── wxbase_base.cpp
│ │ │ │ │ ├── wxbase_bind.cpp
│ │ │ │ │ ├── wxbase_config.cpp
│ │ │ │ │ ├── wxbase_data.cpp
│ │ │ │ │ ├── wxbase_datetime.cpp
│ │ │ │ │ ├── wxbase_file.cpp
│ │ │ │ │ ├── wxcore_appframe.cpp
│ │ │ │ │ ├── wxcore_bind.cpp
│ │ │ │ │ ├── wxcore_clipdrag.cpp
│ │ │ │ │ ├── wxcore_controls.cpp
│ │ │ │ │ ├── wxcore_core.cpp
│ │ │ │ │ ├── wxcore_defsutils.cpp
│ │ │ │ │ ├── wxcore_dialogs.cpp
│ │ │ │ │ ├── wxcore_event.cpp
│ │ │ │ │ ├── wxcore_gdi.cpp
│ │ │ │ │ ├── wxcore_geometry.cpp
│ │ │ │ │ ├── wxcore_help.cpp
│ │ │ │ │ ├── wxcore_image.cpp
│ │ │ │ │ ├── wxcore_mdi.cpp
│ │ │ │ │ ├── wxcore_menutool.cpp
│ │ │ │ │ ├── wxcore_picker.cpp
│ │ │ │ │ ├── wxcore_print.cpp
│ │ │ │ │ ├── wxcore_sizer.cpp
│ │ │ │ │ ├── wxcore_windows.cpp
│ │ │ │ │ ├── wxcore_wxlcore.cpp
│ │ │ │ │ ├── wxgl_bind.cpp
│ │ │ │ │ ├── wxhtml_bind.cpp
│ │ │ │ │ ├── wxhtml_wxlhtml.cpp
│ │ │ │ │ ├── wxmedia_bind.cpp
│ │ │ │ │ ├── wxnet_bind.cpp
│ │ │ │ │ ├── wxpropgrid_bind.cpp
│ │ │ │ │ ├── wxrichtext_bind.cpp
│ │ │ │ │ ├── wxstc_bind.cpp
│ │ │ │ │ ├── wxwebview_bind.cpp
│ │ │ │ │ ├── wxxml_bind.cpp
│ │ │ │ │ └── wxxrc_bind.cpp
│ │ │ │ ├── wxlua/
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── atomic.h
│ │ │ │ │ ├── debug/
│ │ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ ├── dummy.cpp
│ │ │ │ │ │ ├── wxldebug.cpp
│ │ │ │ │ │ ├── wxldebug.h
│ │ │ │ │ │ ├── wxlstack.cpp
│ │ │ │ │ │ ├── wxlstack.h
│ │ │ │ │ │ └── wxluadebugdefs.h
│ │ │ │ │ ├── debugger/
│ │ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ ├── dummy.cpp
│ │ │ │ │ │ ├── wxldserv.cpp
│ │ │ │ │ │ ├── wxldserv.h
│ │ │ │ │ │ ├── wxldtarg.cpp
│ │ │ │ │ │ ├── wxldtarg.h
│ │ │ │ │ │ ├── wxlsock.cpp
│ │ │ │ │ │ ├── wxlsock.h
│ │ │ │ │ │ ├── wxluadebugger_bind.cpp
│ │ │ │ │ │ ├── wxluadebugger_bind.h
│ │ │ │ │ │ └── wxluadebuggerdefs.h
│ │ │ │ │ ├── dummy.cpp
│ │ │ │ │ ├── lbitlib.c
│ │ │ │ │ ├── sharedptr.h
│ │ │ │ │ ├── wxlbind.cpp
│ │ │ │ │ ├── wxlbind.h
│ │ │ │ │ ├── wxlcallb.cpp
│ │ │ │ │ ├── wxlcallb.h
│ │ │ │ │ ├── wxlconsole.cpp
│ │ │ │ │ ├── wxlconsole.h
│ │ │ │ │ ├── wxldefs.h
│ │ │ │ │ ├── wxllua.cpp
│ │ │ │ │ ├── wxllua.h
│ │ │ │ │ ├── wxlobject.cpp
│ │ │ │ │ ├── wxlobject.h
│ │ │ │ │ ├── wxlstate.cpp
│ │ │ │ │ ├── wxlstate.h
│ │ │ │ │ ├── wxlua.h
│ │ │ │ │ ├── wxlua_bind.cpp
│ │ │ │ │ ├── wxlua_bind.h
│ │ │ │ │ └── wxlversion.h
│ │ │ │ └── wxstedit/
│ │ │ │ ├── CMakeLists.txt
│ │ │ │ ├── Makefile.wx-config
│ │ │ │ ├── art/
│ │ │ │ │ ├── copy.xpm
│ │ │ │ │ ├── cross.xpm
│ │ │ │ │ ├── cut.xpm
│ │ │ │ │ ├── find.xpm
│ │ │ │ │ ├── finddown.xpm
│ │ │ │ │ ├── findnext.xpm
│ │ │ │ │ ├── findup.xpm
│ │ │ │ │ ├── new.xpm
│ │ │ │ │ ├── open.xpm
│ │ │ │ │ ├── paste.xpm
│ │ │ │ │ ├── pencil16.xpm
│ │ │ │ │ ├── pencil32.xpm
│ │ │ │ │ ├── print.xpm
│ │ │ │ │ ├── print_page_setup.xpm
│ │ │ │ │ ├── print_preview.xpm
│ │ │ │ │ ├── print_setup.xpm
│ │ │ │ │ ├── redo.xpm
│ │ │ │ │ ├── replace.xpm
│ │ │ │ │ ├── save.xpm
│ │ │ │ │ ├── saveall.xpm
│ │ │ │ │ ├── saveas.xpm
│ │ │ │ │ ├── undo.xpm
│ │ │ │ │ └── x_red.xpm
│ │ │ │ ├── docs/
│ │ │ │ │ ├── ChangeLog.txt
│ │ │ │ │ ├── doxygen/
│ │ │ │ │ │ └── dummy.txt
│ │ │ │ │ ├── doxygen.cfg
│ │ │ │ │ ├── readme.htm
│ │ │ │ │ ├── readme.txt
│ │ │ │ │ └── wxstedit.htm
│ │ │ │ ├── include/
│ │ │ │ │ └── wx/
│ │ │ │ │ └── stedit/
│ │ │ │ │ ├── pairarr.h
│ │ │ │ │ ├── setup0.h
│ │ │ │ │ ├── steart.h
│ │ │ │ │ ├── stedefs.h
│ │ │ │ │ ├── stedit.h
│ │ │ │ │ ├── stedlgs.h
│ │ │ │ │ ├── steevent.h
│ │ │ │ │ ├── steexprt.h
│ │ │ │ │ ├── stefindr.h
│ │ │ │ │ ├── steframe.h
│ │ │ │ │ ├── stelangs.h
│ │ │ │ │ ├── stemenum.h
│ │ │ │ │ ├── stenoteb.h
│ │ │ │ │ ├── steopts.h
│ │ │ │ │ ├── steprefs.h
│ │ │ │ │ ├── steprint.h
│ │ │ │ │ ├── steshell.h
│ │ │ │ │ ├── stesplit.h
│ │ │ │ │ ├── stestyls.h
│ │ │ │ │ └── stetree.h
│ │ │ │ ├── lib/
│ │ │ │ │ └── Readme.txt
│ │ │ │ ├── locale/
│ │ │ │ │ ├── de/
│ │ │ │ │ │ ├── wxstd.po
│ │ │ │ │ │ └── wxstedit.po
│ │ │ │ │ ├── intl.bat
│ │ │ │ │ ├── ja/
│ │ │ │ │ │ ├── wxstd.po
│ │ │ │ │ │ └── wxstedit.po
│ │ │ │ │ ├── ru/
│ │ │ │ │ │ ├── wxstd.po
│ │ │ │ │ │ └── wxstedit.po
│ │ │ │ │ ├── translate.url
│ │ │ │ │ └── wxstedit.pot
│ │ │ │ ├── samples/
│ │ │ │ │ ├── mdiedit/
│ │ │ │ │ │ ├── app.cpp
│ │ │ │ │ │ ├── app.h
│ │ │ │ │ │ ├── appdoc.cpp
│ │ │ │ │ │ ├── link.cpp
│ │ │ │ │ │ ├── mdiedit.rc
│ │ │ │ │ │ ├── precomp.cpp
│ │ │ │ │ │ ├── precomp.h
│ │ │ │ │ │ ├── readme.txt
│ │ │ │ │ │ ├── stedocview.cpp
│ │ │ │ │ │ ├── stedocview.h
│ │ │ │ │ │ └── wxtrunk.h
│ │ │ │ │ └── stedit/
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── link.cpp
│ │ │ │ │ ├── readme_htm.hpp
│ │ │ │ │ ├── stedoc.cpp
│ │ │ │ │ ├── stedoc.h
│ │ │ │ │ ├── wxstedit.cbp
│ │ │ │ │ ├── wxstedit.cpp
│ │ │ │ │ ├── wxstedit.h
│ │ │ │ │ ├── wxstedit.rc
│ │ │ │ │ └── wxstedit_htm.hpp
│ │ │ │ ├── src/
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── precomp.cpp
│ │ │ │ │ ├── precomp.h
│ │ │ │ │ ├── steart.cpp
│ │ │ │ │ ├── stedit.cpp
│ │ │ │ │ ├── stedit.xrc
│ │ │ │ │ ├── stedlgs.cpp
│ │ │ │ │ ├── stedlgs.wdr
│ │ │ │ │ ├── stedlgs_wdr.cpp
│ │ │ │ │ ├── stedlgs_wdr.h
│ │ │ │ │ ├── steevent.cpp
│ │ │ │ │ ├── steexprt.cpp
│ │ │ │ │ ├── stefindr.cpp
│ │ │ │ │ ├── steframe.cpp
│ │ │ │ │ ├── stelangs.cpp
│ │ │ │ │ ├── stemenum.cpp
│ │ │ │ │ ├── stenoteb.cpp
│ │ │ │ │ ├── steopts.cpp
│ │ │ │ │ ├── steprefs.cpp
│ │ │ │ │ ├── steprint.cpp
│ │ │ │ │ ├── steshell.cpp
│ │ │ │ │ ├── stesplit.cpp
│ │ │ │ │ ├── stestyls.cpp
│ │ │ │ │ ├── stetree.cpp
│ │ │ │ │ ├── wxext.cpp
│ │ │ │ │ ├── wxext.h
│ │ │ │ │ └── wxtrunk.h
│ │ │ │ ├── tests/
│ │ │ │ │ ├── bad-utf8.xml
│ │ │ │ │ ├── dk-iso8859-1.txt
│ │ │ │ │ ├── dk-oem.txt
│ │ │ │ │ ├── dk-unicode-bom.reg
│ │ │ │ │ ├── dk-utf8-bom.cs
│ │ │ │ │ ├── dk-utf8.html
│ │ │ │ │ ├── empty.txt
│ │ │ │ │ ├── utf8-bom.xml
│ │ │ │ │ └── utf8.xml.vcproj
│ │ │ │ └── website/
│ │ │ │ └── index.html
│ │ │ ├── samples/
│ │ │ │ ├── art.wx.lua
│ │ │ │ ├── auidemo.wx.lua
│ │ │ │ ├── bindings.wx.lua
│ │ │ │ ├── calculator.wx.lua
│ │ │ │ ├── calculator.xrc
│ │ │ │ ├── catch.lua
│ │ │ │ ├── choices.wx.lua
│ │ │ │ ├── client.wx.lua
│ │ │ │ ├── controls.wx.lua
│ │ │ │ ├── coroutine.wx.lua
│ │ │ │ ├── dialog.wx.lua
│ │ │ │ ├── editor.wx.lua
│ │ │ │ ├── grid.wx.lua
│ │ │ │ ├── gridtable.wx.lua
│ │ │ │ ├── htmlwin.wx.lua
│ │ │ │ ├── image/
│ │ │ │ │ ├── horse.cur
│ │ │ │ │ ├── horse.pcx
│ │ │ │ │ ├── horse.pnm
│ │ │ │ │ ├── horse.tga
│ │ │ │ │ ├── horse.tif
│ │ │ │ │ ├── horse.xpm
│ │ │ │ │ ├── horse3.ani
│ │ │ │ │ ├── horse_ag.pnm
│ │ │ │ │ ├── horse_rg.pnm
│ │ │ │ │ ├── image.wx.lua
│ │ │ │ │ ├── smile.xbm
│ │ │ │ │ └── smile.xpm
│ │ │ │ ├── luamodule.wx.lua
│ │ │ │ ├── mdi.wx.lua
│ │ │ │ ├── media.wx.lua
│ │ │ │ ├── minimal.wx.lua
│ │ │ │ ├── picker.wx.lua
│ │ │ │ ├── printing.wx.lua
│ │ │ │ ├── scribble.wx.lua
│ │ │ │ ├── server.wx.lua
│ │ │ │ ├── settings.wx.lua
│ │ │ │ ├── sizer.wx.lua
│ │ │ │ ├── tree.wx.lua
│ │ │ │ ├── unittest.wx.lua
│ │ │ │ ├── validator.wx.lua
│ │ │ │ ├── veryminimal.wx.lua
│ │ │ │ ├── wrapmodule.wx.lua
│ │ │ │ └── wxluasudoku.wx.lua
│ │ │ └── util/
│ │ │ └── bin2c/
│ │ │ └── bin2c.lua
│ │ ├── xavante/
│ │ │ ├── Makefile
│ │ │ ├── Makefile.win
│ │ │ ├── README
│ │ │ ├── config
│ │ │ ├── config.win
│ │ │ ├── doc/
│ │ │ │ └── us/
│ │ │ │ ├── doc.css
│ │ │ │ ├── experimental.html
│ │ │ │ ├── index.html
│ │ │ │ ├── license.html
│ │ │ │ ├── manual.html
│ │ │ │ └── sajax.html
│ │ │ ├── examples/
│ │ │ │ ├── config.lua
│ │ │ │ └── webdav/
│ │ │ │ └── webdav-server.lua
│ │ │ ├── rockspec/
│ │ │ │ ├── xavante-2.0.0-1.rockspec
│ │ │ │ ├── xavante-2.0.1-1.rockspec
│ │ │ │ ├── xavante-2.0rc1-1.rockspec
│ │ │ │ ├── xavante-2.1.0-1.rockspec
│ │ │ │ ├── xavante-2.2.0-1.rockspec
│ │ │ │ ├── xavante-2.2.1-1.rockspec
│ │ │ │ ├── xavante-2.3.0-1.rockspec
│ │ │ │ ├── xavante-cvs-1.rockspec
│ │ │ │ └── xavante-cvs-2.rockspec
│ │ │ ├── src/
│ │ │ │ ├── codeweb/
│ │ │ │ │ ├── codeWeb.lua
│ │ │ │ │ ├── cookies.lua
│ │ │ │ │ ├── coroWeb.lua
│ │ │ │ │ ├── session.lua
│ │ │ │ │ └── timer.lua
│ │ │ │ ├── sajax/
│ │ │ │ │ └── sajax.lua
│ │ │ │ ├── webdav/
│ │ │ │ │ ├── davFileProps.lua
│ │ │ │ │ ├── davFileRepository.lua
│ │ │ │ │ └── davhandler.lua
│ │ │ │ └── xavante/
│ │ │ │ ├── cgiluahandler.lua
│ │ │ │ ├── encoding.lua
│ │ │ │ ├── filehandler.lua
│ │ │ │ ├── httpd.lua
│ │ │ │ ├── indexhandler.lua
│ │ │ │ ├── mime.lua
│ │ │ │ ├── patternhandler.lua
│ │ │ │ ├── redirecthandler.lua
│ │ │ │ ├── ruleshandler.lua
│ │ │ │ ├── urlhandler.lua
│ │ │ │ ├── vhostshandler.lua
│ │ │ │ └── xavante.lua
│ │ │ └── web/
│ │ │ ├── calculator.lp
│ │ │ └── loop.lp
│ │ ├── xls/
│ │ │ ├── ExcelFormat/
│ │ │ │ ├── BasicExcel.cpp
│ │ │ │ ├── BasicExcel.hpp
│ │ │ │ ├── Examples.cpp
│ │ │ │ ├── ExcelFormat.cpp
│ │ │ │ ├── ExcelFormat.dsp
│ │ │ │ ├── ExcelFormat.dsw
│ │ │ │ ├── ExcelFormat.h
│ │ │ │ ├── ExcelFormat.sln
│ │ │ │ ├── ExcelFormat.vcproj
│ │ │ │ ├── ExcelFormat.vcxproj
│ │ │ │ ├── ExcelFormat.vcxproj.filters
│ │ │ │ ├── ExcelFormat.xcodeproj/
│ │ │ │ │ └── project.pbxproj
│ │ │ │ ├── Makefile
│ │ │ │ └── docu/
│ │ │ │ └── codeproject_ExcelFormat.html
│ │ │ ├── doc/
│ │ │ │ └── us/
│ │ │ │ ├── doc.bat
│ │ │ │ ├── doc.css
│ │ │ │ ├── index.html
│ │ │ │ ├── index.md
│ │ │ │ ├── license.html
│ │ │ │ ├── license.md
│ │ │ │ └── makedoc.lua
│ │ │ ├── lxls.cpp
│ │ │ ├── readme.md
│ │ │ ├── tests/
│ │ │ │ ├── examples.lua
│ │ │ │ └── printxls.lua
│ │ │ └── xls.jam
│ │ ├── xlsx/
│ │ │ ├── doc/
│ │ │ │ └── us/
│ │ │ │ ├── doc.bat
│ │ │ │ ├── doc.css
│ │ │ │ ├── index.html
│ │ │ │ ├── index.md
│ │ │ │ ├── license.html
│ │ │ │ ├── license.md
│ │ │ │ └── makedoc.lua
│ │ │ ├── readme.md
│ │ │ ├── tests/
│ │ │ │ └── printxlsx.lua
│ │ │ ├── xlsx.jam
│ │ │ └── xlsx.lua
│ │ ├── xmlize/
│ │ │ ├── xmlize.jam
│ │ │ └── xmlize.lua
│ │ ├── ziparchive/
│ │ │ ├── License.txt
│ │ │ ├── Misc/
│ │ │ │ ├── AnsiString.cpp
│ │ │ │ ├── AnsiString.h
│ │ │ │ ├── Array.h
│ │ │ │ ├── ArrayOwnedPtr.h
│ │ │ │ ├── DiskFile.cpp
│ │ │ │ ├── DiskFile.h
│ │ │ │ ├── File.h
│ │ │ │ ├── FixedSizeAllocator.h
│ │ │ │ ├── HeapAllocator.h
│ │ │ │ ├── HeapString.cpp
│ │ │ │ ├── HeapString.h
│ │ │ │ ├── List.h
│ │ │ │ ├── ListOwnedPtr.h
│ │ │ │ ├── Map.h
│ │ │ │ ├── MemFile.cpp
│ │ │ │ ├── MemFile.h
│ │ │ │ ├── Misc.cpp
│ │ │ │ ├── Misc.h
│ │ │ │ ├── Misc.jam
│ │ │ │ ├── Misc_InternalPch.cpp
│ │ │ │ ├── Misc_InternalPch.h
│ │ │ │ ├── OwnedPtr.h
│ │ │ │ ├── TypeTraits.h
│ │ │ │ ├── ZipArchive.cpp
│ │ │ │ ├── ZipArchive.h
│ │ │ │ ├── ZipArchiveManager.cpp
│ │ │ │ ├── ZipArchiveManager.h
│ │ │ │ ├── ZipEntryFile.cpp
│ │ │ │ ├── ZipEntryFile.h
│ │ │ │ ├── aes/
│ │ │ │ │ ├── aes.h
│ │ │ │ │ ├── aes_modes.c
│ │ │ │ │ ├── aes_via_ace.h
│ │ │ │ │ ├── aescrypt.c
│ │ │ │ │ ├── aeskey.c
│ │ │ │ │ ├── aesopt.h
│ │ │ │ │ ├── aestab.c
│ │ │ │ │ ├── aestab.h
│ │ │ │ │ ├── aesxam.c
│ │ │ │ │ ├── brg_endian.h
│ │ │ │ │ ├── brg_types.h
│ │ │ │ │ ├── fileenc.c
│ │ │ │ │ ├── fileenc.h
│ │ │ │ │ ├── hmac.c
│ │ │ │ │ ├── hmac.h
│ │ │ │ │ ├── prng.c
│ │ │ │ │ ├── prng.h
│ │ │ │ │ ├── pwd2key.c
│ │ │ │ │ ├── pwd2key.h
│ │ │ │ │ ├── sha1.c
│ │ │ │ │ ├── sha1.h
│ │ │ │ │ ├── sha2.c
│ │ │ │ │ └── sha2.h
│ │ │ │ ├── liblzma/
│ │ │ │ │ ├── common/
│ │ │ │ │ │ ├── common_w32res.rc
│ │ │ │ │ │ ├── config.h
│ │ │ │ │ │ ├── mythread.h
│ │ │ │ │ │ ├── sysdefs.h
│ │ │ │ │ │ ├── tuklib_common.h
│ │ │ │ │ │ ├── tuklib_config.h
│ │ │ │ │ │ ├── tuklib_cpucores.c
│ │ │ │ │ │ ├── tuklib_cpucores.h
│ │ │ │ │ │ ├── tuklib_exit.c
│ │ │ │ │ │ ├── tuklib_exit.h
│ │ │ │ │ │ ├── tuklib_gettext.h
│ │ │ │ │ │ ├── tuklib_integer.h
│ │ │ │ │ │ ├── tuklib_mbstr.h
│ │ │ │ │ │ ├── tuklib_mbstr_fw.c
│ │ │ │ │ │ ├── tuklib_mbstr_width.c
│ │ │ │ │ │ ├── tuklib_open_stdxxx.c
│ │ │ │ │ │ ├── tuklib_open_stdxxx.h
│ │ │ │ │ │ ├── tuklib_physmem.c
│ │ │ │ │ │ ├── tuklib_physmem.h
│ │ │ │ │ │ ├── tuklib_progname.c
│ │ │ │ │ │ └── tuklib_progname.h
│ │ │ │ │ ├── liblzma/
│ │ │ │ │ │ ├── Makefile.am
│ │ │ │ │ │ ├── api/
│ │ │ │ │ │ │ ├── Makefile.am
│ │ │ │ │ │ │ ├── lzma/
│ │ │ │ │ │ │ │ ├── base.h
│ │ │ │ │ │ │ │ ├── bcj.h
│ │ │ │ │ │ │ │ ├── block.h
│ │ │ │ │ │ │ │ ├── check.h
│ │ │ │ │ │ │ │ ├── container.h
│ │ │ │ │ │ │ │ ├── delta.h
│ │ │ │ │ │ │ │ ├── filter.h
│ │ │ │ │ │ │ │ ├── hardware.h
│ │ │ │ │ │ │ │ ├── index.h
│ │ │ │ │ │ │ │ ├── index_hash.h
│ │ │ │ │ │ │ │ ├── lzma12.h
│ │ │ │ │ │ │ │ ├── stream_flags.h
│ │ │ │ │ │ │ │ ├── version.h
│ │ │ │ │ │ │ │ └── vli.h
│ │ │ │ │ │ │ └── lzma.h
│ │ │ │ │ │ ├── check/
│ │ │ │ │ │ │ ├── Makefile.inc
│ │ │ │ │ │ │ ├── check.c
│ │ │ │ │ │ │ ├── check.h
│ │ │ │ │ │ │ ├── crc32_fast.c
│ │ │ │ │ │ │ ├── crc32_small.c
│ │ │ │ │ │ │ ├── crc32_table.c
│ │ │ │ │ │ │ ├── crc32_table_be.h
│ │ │ │ │ │ │ ├── crc32_table_le.h
│ │ │ │ │ │ │ ├── crc32_tablegen.c
│ │ │ │ │ │ │ ├── crc32_x86.S
│ │ │ │ │ │ │ ├── crc64_fast.c
│ │ │ │ │ │ │ ├── crc64_small.c
│ │ │ │ │ │ │ ├── crc64_table.c
│ │ │ │ │ │ │ ├── crc64_table_be.h
│ │ │ │ │ │ │ ├── crc64_table_le.h
│ │ │ │ │ │ │ ├── crc64_tablegen.c
│ │ │ │ │ │ │ ├── crc64_x86.S
│ │ │ │ │ │ │ ├── crc_macros.h
│ │ │ │ │ │ │ └── sha256.c
│ │ │ │ │ │ ├── common/
│ │ │ │ │ │ │ ├── Makefile.inc
│ │ │ │ │ │ │ ├── alone_decoder.c
│ │ │ │ │ │ │ ├── alone_decoder.h
│ │ │ │ │ │ │ ├── alone_encoder.c
│ │ │ │ │ │ │ ├── alone_zip_decoder.c
│ │ │ │ │ │ │ ├── alone_zip_decoder.h
│ │ │ │ │ │ │ ├── alone_zip_encoder.c
│ │ │ │ │ │ │ ├── auto_decoder.c
│ │ │ │ │ │ │ ├── block_buffer_decoder.c
│ │ │ │ │ │ │ ├── block_buffer_encoder.c
│ │ │ │ │ │ │ ├── block_buffer_encoder.h
│ │ │ │ │ │ │ ├── block_decoder.c
│ │ │ │ │ │ │ ├── block_decoder.h
│ │ │ │ │ │ │ ├── block_encoder.c
│ │ │ │ │ │ │ ├── block_encoder.h
│ │ │ │ │ │ │ ├── block_header_decoder.c
│ │ │ │ │ │ │ ├── block_header_encoder.c
│ │ │ │ │ │ │ ├── block_util.c
│ │ │ │ │ │ │ ├── common.c
│ │ │ │ │ │ │ ├── common.h
│ │ │ │ │ │ │ ├── easy_buffer_encoder.c
│ │ │ │ │ │ │ ├── easy_decoder_memusage.c
│ │ │ │ │ │ │ ├── easy_encoder.c
│ │ │ │ │ │ │ ├── easy_encoder_memusage.c
│ │ │ │ │ │ │ ├── easy_preset.c
│ │ │ │ │ │ │ ├── easy_preset.h
│ │ │ │ │ │ │ ├── filter_buffer_decoder.c
│ │ │ │ │ │ │ ├── filter_buffer_encoder.c
│ │ │ │ │ │ │ ├── filter_common.c
│ │ │ │ │ │ │ ├── filter_common.h
│ │ │ │ │ │ │ ├── filter_decoder.c
│ │ │ │ │ │ │ ├── filter_decoder.h
│ │ │ │ │ │ │ ├── filter_encoder.c
│ │ │ │ │ │ │ ├── filter_encoder.h
│ │ │ │ │ │ │ ├── filter_flags_decoder.c
│ │ │ │ │ │ │ ├── filter_flags_encoder.c
│ │ │ │ │ │ │ ├── hardware_cputhreads.c
│ │ │ │ │ │ │ ├── hardware_physmem.c
│ │ │ │ │ │ │ ├── index.c
│ │ │ │ │ │ │ ├── index.h
│ │ │ │ │ │ │ ├── index_decoder.c
│ │ │ │ │ │ │ ├── index_encoder.c
│ │ │ │ │ │ │ ├── index_encoder.h
│ │ │ │ │ │ │ ├── index_hash.c
│ │ │ │ │ │ │ ├── outqueue.c
│ │ │ │ │ │ │ ├── outqueue.h
│ │ │ │ │ │ │ ├── stream_buffer_decoder.c
│ │ │ │ │ │ │ ├── stream_buffer_encoder.c
│ │ │ │ │ │ │ ├── stream_decoder.c
│ │ │ │ │ │ │ ├── stream_decoder.h
│ │ │ │ │ │ │ ├── stream_encoder.c
│ │ │ │ │ │ │ ├── stream_encoder_mt.c
│ │ │ │ │ │ │ ├── stream_flags_common.c
│ │ │ │ │ │ │ ├── stream_flags_common.h
│ │ │ │ │ │ │ ├── stream_flags_decoder.c
│ │ │ │ │ │ │ ├── stream_flags_encoder.c
│ │ │ │ │ │ │ ├── vli_decoder.c
│ │ │ │ │ │ │ ├── vli_encoder.c
│ │ │ │ │ │ │ └── vli_size.c
│ │ │ │ │ │ ├── delta/
│ │ │ │ │ │ │ ├── Makefile.inc
│ │ │ │ │ │ │ ├── delta_common.c
│ │ │ │ │ │ │ ├── delta_common.h
│ │ │ │ │ │ │ ├── delta_decoder.c
│ │ │ │ │ │ │ ├── delta_decoder.h
│ │ │ │ │ │ │ ├── delta_encoder.c
│ │ │ │ │ │ │ ├── delta_encoder.h
│ │ │ │ │ │ │ └── delta_private.h
│ │ │ │ │ │ ├── liblzma.pc.in
│ │ │ │ │ │ ├── liblzma_w32res.rc
│ │ │ │ │ │ ├── lz/
│ │ │ │ │ │ │ ├── Makefile.inc
│ │ │ │ │ │ │ ├── lz_decoder.c
│ │ │ │ │ │ │ ├── lz_decoder.h
│ │ │ │ │ │ │ ├── lz_encoder.c
│ │ │ │ │ │ │ ├── lz_encoder.h
│ │ │ │ │ │ │ ├── lz_encoder_hash.h
│ │ │ │ │ │ │ ├── lz_encoder_hash_table.h
│ │ │ │ │ │ │ └── lz_encoder_mf.c
│ │ │ │ │ │ ├── lzma/
│ │ │ │ │ │ │ ├── Makefile.inc
│ │ │ │ │ │ │ ├── fastpos.h
│ │ │ │ │ │ │ ├── fastpos_table.c
│ │ │ │ │ │ │ ├── fastpos_tablegen.c
│ │ │ │ │ │ │ ├── lzma2_decoder.c
│ │ │ │ │ │ │ ├── lzma2_decoder.h
│ │ │ │ │ │ │ ├── lzma2_encoder.c
│ │ │ │ │ │ │ ├── lzma2_encoder.h
│ │ │ │ │ │ │ ├── lzma_common.h
│ │ │ │ │ │ │ ├── lzma_decoder.c
│ │ │ │ │ │ │ ├── lzma_decoder.h
│ │ │ │ │ │ │ ├── lzma_encoder.c
│ │ │ │ │ │ │ ├── lzma_encoder.h
│ │ │ │ │ │ │ ├── lzma_encoder_optimum_fast.c
│ │ │ │ │ │ │ ├── lzma_encoder_optimum_normal.c
│ │ │ │ │ │ │ ├── lzma_encoder_presets.c
│ │ │ │ │ │ │ └── lzma_encoder_private.h
│ │ │ │ │ │ ├── rangecoder/
│ │ │ │ │ │ │ ├── Makefile.inc
│ │ │ │ │ │ │ ├── price.h
│ │ │ │ │ │ │ ├── price_table.c
│ │ │ │ │ │ │ ├── price_tablegen.c
│ │ │ │ │ │ │ ├── range_common.h
│ │ │ │ │ │ │ ├── range_decoder.h
│ │ │ │ │ │ │ └── range_encoder.h
│ │ │ │ │ │ ├── simple/
│ │ │ │ │ │ │ ├── Makefile.inc
│ │ │ │ │ │ │ ├── arm.c
│ │ │ │ │ │ │ ├── armthumb.c
│ │ │ │ │ │ │ ├── ia64.c
│ │ │ │ │ │ │ ├── powerpc.c
│ │ │ │ │ │ │ ├── simple_coder.c
│ │ │ │ │ │ │ ├── simple_coder.h
│ │ │ │ │ │ │ ├── simple_decoder.c
│ │ │ │ │ │ │ ├── simple_decoder.h
│ │ │ │ │ │ │ ├── simple_encoder.c
│ │ │ │ │ │ │ ├── simple_encoder.h
│ │ │ │ │ │ │ ├── simple_private.h
│ │ │ │ │ │ │ ├── sparc.c
│ │ │ │ │ │ │ └── x86.c
│ │ │ │ │ │ └── validate_map.sh
│ │ │ │ │ └── windows/
│ │ │ │ │ ├── INSTALL-Windows.txt
│ │ │ │ │ ├── README-Windows.txt
│ │ │ │ │ ├── build.bash
│ │ │ │ │ └── config.h
│ │ │ │ ├── lzma/
│ │ │ │ │ ├── 7zVersion.h
│ │ │ │ │ ├── LzFind.c
│ │ │ │ │ ├── LzFind.h
│ │ │ │ │ ├── LzFindMt.c
│ │ │ │ │ ├── LzFindMt.h
│ │ │ │ │ ├── LzHash.h
│ │ │ │ │ ├── Lzma2Dec.c
│ │ │ │ │ ├── Lzma2Dec.h
│ │ │ │ │ ├── Lzma2Enc.c
│ │ │ │ │ ├── Lzma2Enc.h
│ │ │ │ │ ├── LzmaDec.c
│ │ │ │ │ ├── LzmaDec.h
│ │ │ │ │ ├── LzmaEnc.c
│ │ │ │ │ ├── LzmaEnc.h
│ │ │ │ │ ├── MtCoder.c
│ │ │ │ │ ├── MtCoder.h
│ │ │ │ │ ├── Threads.c
│ │ │ │ │ ├── Threads.h
│ │ │ │ │ └── Types.h
│ │ │ │ ├── md5/
│ │ │ │ │ ├── md5.h
│ │ │ │ │ ├── md5c.c
│ │ │ │ │ └── md5global.h
│ │ │ │ ├── stdint.vc.h
│ │ │ │ └── trio/
│ │ │ │ ├── trio.c
│ │ │ │ ├── trio.h
│ │ │ │ ├── triodef.h
│ │ │ │ ├── trionan.c
│ │ │ │ ├── trionan.h
│ │ │ │ ├── triop.h
│ │ │ │ ├── triostr.c
│ │ │ │ └── triostr.h
│ │ │ ├── doc/
│ │ │ │ └── us/
│ │ │ │ ├── doc.bat
│ │ │ │ ├── doc.css
│ │ │ │ ├── index.html
│ │ │ │ ├── index.md
│ │ │ │ ├── license.html
│ │ │ │ ├── license.md
│ │ │ │ └── makedoc.lua
│ │ │ ├── lziparchive.cpp
│ │ │ ├── readme.md
│ │ │ ├── tests/
│ │ │ │ └── ziparchivetests.lua
│ │ │ └── ziparchive.jam
│ │ └── zlib/
│ │ ├── adler32.c
│ │ ├── compress.c
│ │ ├── crc32.c
│ │ ├── crc32.h
│ │ ├── deflate.c
│ │ ├── deflate.h
│ │ ├── gzguts.h
│ │ ├── infback.c
│ │ ├── inffast.c
│ │ ├── inffast.h
│ │ ├── inffixed.h
│ │ ├── inflate.c
│ │ ├── inflate.h
│ │ ├── inftrees.c
│ │ ├── inftrees.h
│ │ ├── trees.c
│ │ ├── trees.h
│ │ ├── uncompr.c
│ │ ├── zconf.h
│ │ ├── zlib.h
│ │ ├── zutil.c
│ │ └── zutil.h
│ ├── modules.jambuild/
│ │ ├── alien.jam
│ │ ├── bitop.jam
│ │ ├── cgilua.jam
│ │ ├── copas.jam
│ │ ├── cosmo.jam
│ │ ├── coxpcall.jam
│ │ ├── date.jam
│ │ ├── dotnetinterface.jam
│ │ ├── expand.jam
│ │ ├── getmodules.bat
│ │ ├── getpcre.bat
│ │ ├── getpcre.sh
│ │ ├── lanes.jam
│ │ ├── lbuffer.jam
│ │ ├── loop.jam
│ │ ├── lpeg.jam
│ │ ├── lqt.jam
│ │ ├── lrexlib.gitignore
│ │ ├── lrexlib.jam
│ │ ├── lsqlite3.jam
│ │ ├── lua-apr!download.jam
│ │ ├── lua-apr.jam
│ │ ├── lua-cjson.jam
│ │ ├── lua-curl!download.jam
│ │ ├── lua-curl.jam
│ │ ├── lua-discount.jam
│ │ ├── lua-memoryfile.jam
│ │ ├── lua-openssl.jam
│ │ ├── lua-pb.jam
│ │ ├── lua-rapidjson.jam
│ │ ├── lua-websockets.jam
│ │ ├── lua-xmlrpc.jam
│ │ ├── luacom.jam
│ │ ├── luadbi.jam
│ │ ├── luaevent.jam
│ │ ├── luaexpat.jam
│ │ ├── luaffi.jam
│ │ ├── luafilesystem.jam
│ │ ├── luajson.jam
│ │ ├── lualdap.jam
│ │ ├── lualogging.jam
│ │ ├── luamacro.jam
│ │ ├── luasec.jam
│ │ ├── luasoap.jam
│ │ ├── luasql.jam
│ │ ├── luatraverse.jam
│ │ ├── lzlib.jam
│ │ ├── markdown.jam
│ │ ├── md5.jam
│ │ ├── mixlua.jam
│ │ ├── orbit.jam
│ │ ├── pack.jam
│ │ ├── penlight.jam
│ │ ├── pluto.jam
│ │ ├── python.jam
│ │ ├── random.jam
│ │ ├── rings.jam
│ │ ├── slnunicode.jam
│ │ ├── socket.jam
│ │ ├── sqlite3.jam
│ │ ├── stacktraceplus.jam
│ │ ├── stdlib.jam
│ │ ├── struct.jam
│ │ ├── uuid.jam
│ │ ├── verse-strophe.jam
│ │ ├── wsapi.jam
│ │ ├── wxLua.jam
│ │ └── xavante.jam
│ └── tilde/
│ ├── HostConfig.cpp
│ ├── HostConfig.h
│ ├── LuaDebugger.cpp
│ ├── LuaDebugger.h
│ ├── LuaDebuggerComms.cpp
│ ├── LuaDebuggerComms.h
│ ├── LuaDebuggerHost.h
│ ├── LuaDebuggerProtocol.h
│ ├── LuaHostWindows.cpp
│ ├── LuaHostWindows.h
│ ├── LuaTilde.cpp
│ ├── LuaTilde.h
│ ├── ReceiveMessageBuffer.h
│ └── SendMessageBuffer.h
├── Test/
│ ├── Access.lua
│ ├── AppActivate.lua
│ ├── Calendar.lua
│ ├── ContinueTest.lua
│ ├── EnumNetworkDrives.lua
│ ├── Excel.lua
│ ├── PhotoshopHelloWorld.lua
│ ├── PhotoshopLayers.lua
│ ├── PhotoshopOpen.lua
│ ├── PhotoshopPDFOpen.lua
│ ├── RemoveDebugReleaseDirs.lua
│ ├── ShellTest.lua
│ ├── TestDotNet.lua
│ ├── adolua.lua
│ ├── adotest.lua
│ ├── animal.lua
│ ├── bisect.lua
│ ├── cf.lua
│ ├── class.lua
│ ├── compat.lua
│ ├── continue_invalid.lua
│ ├── continue_valid.lua
│ ├── echo.lua
│ ├── env.lua
│ ├── factorial.lua
│ ├── fib.lua
│ ├── fibfor.lua
│ ├── form.lua
│ ├── globals.lua
│ ├── hello.lua
│ ├── life.lua
│ ├── luac.lua
│ ├── luascript.bat
│ ├── popen.lua
│ ├── popencmd.lua
│ ├── popenlines.lua
│ ├── printf.lua
│ ├── readonly.lua
│ ├── sieve.lua
│ ├── socket.lua
│ ├── sort.lua
│ ├── sqlite3/
│ │ ├── aggregate.lua
│ │ ├── function.lua
│ │ ├── order.lua
│ │ ├── simple.lua
│ │ ├── statement.lua
│ │ └── tracing.lua
│ ├── table.lua
│ ├── test.mdb
│ ├── testform.lua
│ ├── testform2.lua
│ ├── testluaform.lua
│ ├── tests-luasql.lua
│ ├── tests-sqlite3.lua
│ ├── tests.lua
│ ├── threadtest1.lua
│ ├── trace-calls.lua
│ ├── trace-globals.lua
│ ├── undefined.lua
│ ├── xd.lua
│ └── xslt.lua
└── Tools/
├── LuaPlusDebuggerAddin/
│ ├── AddinReg.reg
│ ├── Jamfile.jam
│ ├── LuaPlusDebuggerAddin/
│ │ ├── AddIn.cpp
│ │ ├── AddIn.def
│ │ ├── AddIn.idl
│ │ ├── AddIn.rc
│ │ ├── AddIn.rgs
│ │ ├── Connect.cpp
│ │ ├── Connect.h
│ │ ├── LuaPlusDebuggerAddin.jam
│ │ ├── Resource.h
│ │ ├── stdafx.cpp
│ │ └── stdafx.h
│ └── LuaPlusDebuggerControls/
│ ├── LayoutMgr.cpp
│ ├── LayoutMgr.h
│ ├── Lex.h
│ ├── LuaPlusDebuggerControls.cpp
│ ├── LuaPlusDebuggerControls.jam
│ ├── LuaPlusDebuggerControls.rc
│ ├── LuaPlusDebuggerControls.rgs
│ ├── LuaPlusDebuggerControls.sln
│ ├── LuaPlusDebuggerControlsps.def
│ ├── LuaPlusTypes.h
│ ├── WatchCtl.cpp
│ ├── WatchCtl.h
│ ├── resource.h
│ ├── stdafx.cpp
│ └── stdafx.h
├── LuaWatchAddin/
│ ├── LuaWatchAddin.cpp
│ ├── LuaWatchAddin.def
│ ├── LuaWatchAddin.h
│ ├── LuaWatchAddin.sln
│ ├── LuaWatchAddin.vcproj
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ └── custview.h
├── WTL/
│ └── include/
│ ├── atlapp.h
│ ├── atlcrack.h
│ ├── atlctrls.h
│ ├── atlctrlw.h
│ ├── atlctrlx.h
│ ├── atlddx.h
│ ├── atldlgs.h
│ ├── atlframe.h
│ ├── atlgdi.h
│ ├── atlmisc.h
│ ├── atlprint.h
│ ├── atlres.h
│ ├── atlscrl.h
│ ├── atlsplit.h
│ ├── atltheme.h
│ └── atluser.h
└── bin2c.lua
================================================
FILE CONTENTS
================================================
================================================
FILE: .gitignore
================================================
.DS_Store
CVS/
.build*/
bin.*/
build*/
obj/
.svn/
================================================
FILE: .gitmodules
================================================
[submodule "Tools/JamPlus"]
path = Tools/JamPlus
url = https://github.com/jamplus/jamplus.git
================================================
FILE: AddAutoExp.bat
================================================
lua "%~dp0AddAutoExp.lua"
================================================
FILE: AddAutoExp.lua
================================================
require "ex"
function AddAutoExp(autoexpFileName)
local ignore = false
local file = io.open(autoexpFileName .. ".new", "wt")
if os.path.exists(autoexpFileName) then
for line in io.lines(autoexpFileName) do
if line == '; -- LuaPlus and Lua begin --' then
ignore = true
elseif line == '; -- LuaPlus and Lua end --' then
ignore = false
elseif line == '; This section lets you define your own errors for the HRESULT display.' then
for newLine in io.lines('AutoExpAdditions.txt') do
file:write(newLine .. "\n")
end
file:write(line .. "\n")
else
if not ignore then
file:write(line .. "\n")
end
end
end
file:close()
end
os.copyfile(autoexpFileName .. ".new", autoexpFileName)
os.remove(autoexpFileName .. ".new")
end
function AddVSAutoExp(environmentVariable)
local VS = os.getenv(environmentVariable)
if not VS then return end
VS = VS .. '..\\..\\'
AddAutoExp(VS .. "\\Common7\\Packages\\Debugger\\autoexp.dat")
end
AddVSAutoExp("VS80COMNTOOLS")
AddVSAutoExp("VS90COMNTOOLS")
AddVSAutoExp("VS100COMNTOOLS")
AddVSAutoExp("VS110COMNTOOLS")
local XEDK = os.getenv("XEDK")
if XEDK then
AddAutoExp(XEDK .. "\\bin\\win32\\autoexp.dat")
end
================================================
FILE: AutoExpAdditions.txt
================================================
; -- LuaPlus and Lua begin --
;------------------------------------------------------------------------------
;------------------------------------------------------------------------------
; public domain by Glenn Maynard, with help from http://www.virtualdub.org/blog/pivot/entry.php?id=120
; LuaPlus portion by Joshua Jensen
LuaPlus::LuaState {
preview (
#(
"thread top=", [((lua_State *)&$e)->top-((lua_State *)&$e)->base, i]
)
)
children (
#(
[raw members]: [(lua_State *)&$c,!],
stack size: [((lua_State *)&$c)->top-((lua_State *)&$c)->base, i],
globals: [((lua_State *)&$c)->l_gt],
registry: [((lua_State *)&$c)->l_G->l_registry],
#array (
expr: $e.ci->func,
size: $e.ci->func->tt != 0,
): #( call: $e ),
#array (
expr: ((lua_State*)&$c)->base[$i],
size: ((lua_State*)&$c)->top - ((lua_State*)&$c)->base,
base: 1
)
)
)
}
LuaPlus::LuaStateOwner {
preview (
#(
"thread top=", [((lua_State *)$e.m_state)->top-((lua_State *)$e.m_state)->base, i]
)
)
children (
#(
[raw members]: [$c,!],
stack size: [((lua_State *)$c.m_state)->top-((lua_State *)$c.m_state)->base, i],
globals: [((lua_State *)$c.m_state)->l_gt],
registry: [((lua_State *)$c.m_state)->l_G->l_registry],
#array (
expr: $e.ci->func,
size: $e.ci->func->tt != 0,
): #( call: $e ),
#array (
expr: ((lua_State*)$c.m_state)->base[$i],
size: ((lua_State*)$c.m_state)->top - ((lua_State*)$c.m_state)->base,
base: 1
)
)
)
}
LuaPlus::LuaTableIterator {
preview (
#(
$e.m_keyObj, " = ", $e.m_valueObj
)
)
}
lua_State {
preview (
#(
"thread top=", [$e.top-$e.base, i]
)
)
children (
#(
[raw members]: [$c,!],
stack size: [$c.top-$c.base, i],
globals: [$c.l_gt],
registry: [$c.l_G->l_registry],
#array (
expr: $e.ci->func,
size: $e.ci->func->tt != 0,
): #( call: $e ),
#array (
expr: $c.base[$i],
size: $c.top - $c.base,
base: 1
)
)
)
}
Node {
preview (
#( $e.i_key.tvk, " = ", $e.i_val )
)
children (
#(
key: $c.i_key.tvk,
val: $c.i_val,
#if( $c.i_key.nk.next != 0 ) (
#( next: $c.i_key.nk.next )
)
)
)
}
LuaPlus::LuaObject {
preview (
#if (-$e.ref + -1999999 - 1 < $e.L->l_G->l_refs.value.gc->h.sizearray) (
#( $e.L->l_G->l_refs.value.gc->h.array[-$e.ref + -1999999 - 1 - 1] )
) #else (
"In hash part"
)
)
children (
#(
[raw members]: [$c,!],
L: [$c.L],
value: [$c.L->l_G->l_refs.value.gc->h.array[-$c.ref + -1999999 - 1 - 1]]
)
)
}
LuaPlus::LuaStackObject {
preview (
#( ((lua_State*)$e.m_state)->base[$e.m_stackIndex] )
)
}
lua_TValue {
children (
#switch($c.tt)
#case 2 ( ; LUA_TLIGHTUSERDATA
ptr: #((const char*)($c.value.p))
)
#case 5 ( ; LUA_TTABLE
#(
[raw members]: [$c,!],
array size: $c.value.gc->h.sizearray,
#array (
expr: $e.value.gc->h.metatable,
size: $e.value.gc->h.metatable != 0,
): #( metatable: $e ),
#array (
expr: $c.value.gc->h.array[$i],
size: $c.value.gc->h.sizearray,
base: 1
),
#array (
expr: #( $c.value.gc->h.node[$i], 2 ),
size: (1<<$c.value.gc->h.lsizenode),
base: 1
): #( hash: $e )
)
)
#case 6 ( ; LUA_TFUNCTION
#if ($c.value.gc->cl.c.isC) (
#(
env: $c.value.gc->cl.c.env,
#array (
expr: $e.value.gc->cl.c.upvalue[$i],
size: $e.value.gc->cl.c.nupvalues,
): #( upvalues: $e )
)
) #else (
#($c.value.gc->cl.l)
)
)
#case 7 ( ; LUA_TUSERDATA
#(
#array (
expr: $e.value.gc->u.uv.metatable,
size: $e.value.gc->u.uv.metatable != 0,
): #( metatable: $e ),
env: $c.value.gc->u.uv.env,
ptr: #((const char*)((&$c.value.gc->u)+1)),
size: $c.value.gc->u.uv.len
)
)
#case 8 ( #($c.value.gc->th) ) ; LUA_TTHREAD
)
preview (
#switch($e.tt)
#case 0 ( "nil" ) ; LUA_TNIL
#case 1 (
#if ($e.value.b == 0) (
"false"
) #else (
"true"
)
)
#case 2 ( ; LUA_TLIGHTUSERDATA
#($e.value.p, " lightuserdata") )
#case 3 ( ; LUA_TNUMBER
#("number=", $e.value.n) )
#case 4 ( ; LUA_TSTRING
#( $e.value.gc->ts) )
#case 5 ( ; LUA_TTABLE
#( $e.value.gc->h )
)
#case 6 ( #($e.value.gc->cl) ) ; LUA_TFUNCTION
#case 7 ( #($e.value.gc->u) ) ; LUA_TUSERDATA
#case 8 ( #($e.value.gc->th) ) ; LUA_TTHREAD
#case 9 ( ; LUA_TWSTRING
#( $e.value.gc->ts) )
#default ( "empty" )
)
)
}
Udata {
preview (
#( "userdata size=", $e.uv.len, " ptr=", #((void*)((&$e)+1)) )
)
}
CClosure {
preview (
$e.f
)
}
LClosure {
preview (
"Lua function"
)
}
Closure {
preview (
#if ($e.c.isC) ( #($e.c) )
#else ( #($e.l) )
)
}
Table {
children (
#(
[raw members]: [$c,!],
[array size]: $c.sizearray,
#array (
expr: $e.metatable,
size: $e.metatable != 0,
): #( metatable: $e ),
#array (
expr: $c.array[$i],
size: $c.sizearray,
base: 1
),
#array (
expr: #( $c.node[$i], 2 ),
size: (1<<$c.lsizenode),
base: 1
): #( key: $e )
)
)
preview (
#( "table (array size: ", $e.sizearray, ") (hash size: ", (1<<$e.lsizenode), ")" )
)
}
TString {
preview (
#if ($e.tsv.tt == 4) ( #( (const char *) (&($e.tsv)+1) ) )
#else ( #( (const wchar_t *) (&($e.tsv)+1) ) )
)
}
;------------------------------------------------------------------------------
;------------------------------------------------------------------------------
; -- LuaPlus and Lua end --
================================================
FILE: BootstrapJamPlus-linux64
================================================
git submodule update --init
cd Tools/JamPlus
./bootstrap-linux64.sh
cd ../..
================================================
FILE: BootstrapJamPlus-macosx64
================================================
git submodule update --init
cd Tools/JamPlus
./bootstrap-macosx64.sh
cd ../..
================================================
FILE: BootstrapJamPlus-win64.bat
================================================
@echo off
call git submodule update --init
call %~dp0Tools\JamPlus\bootstrap-win64-vc.bat
================================================
FILE: CreateJamLinuxWorkspace.config
================================================
Config =
{
JamfileVariables =
{
{ 'LUA_VERSION', { 'lua53-luaplus', 'lua53', 'lua52-luaplus', 'lua52', 'lua51-luaplus', 'lua51' } },
{ 'LUAPLUS_OUTPUT_DIRECTORY', '$(destinationRootPath)/bin.$$(LUA_VERSION).$$(C.COMPILER).$$(PLATFORM)' },
}
}
================================================
FILE: CreateJamLinuxWorkspace.sh
================================================
Tools/JamPlus/bin/linux64/jam --workspace -gen=none -config=CreateJamLinuxWorkspace.config Jamfile.jam .build
================================================
FILE: CreateJamWindowsWorkspace.config
================================================
Config =
{
Platforms =
{
'win64', 'win32',
},
UserVariables = {
--{ 'LUA_VERSION', { 'lua51', 'lua51-luaplus', 'lua52', 'lua52-luaplus', 'lua53' } },
},
JamfileVariables =
{
{ 'LUA_VERSION', { 'lua53-luaplus', 'lua53', 'lua52-luaplus', 'lua52', 'lua51-luaplus', 'lua51' } },
{ 'LUAPLUS_OUTPUT_DIRECTORY', '$(destinationRootPath)/bin.$$(LUA_VERSION).$$(C.COMPILER).$$(PLATFORM)' },
}
}
================================================
FILE: CreateJamXcodeWorkspace.config
================================================
Config =
{
JamfileVariables =
{
{ 'LUA_VERSION', { 'lua51', 'lua51-luaplus', 'lua52', 'lua52-luaplus', 'lua53', 'lua53-luaplus' } },
{ 'LUAPLUS_OUTPUT_DIRECTORY', '$(destinationRootPath)/bin.$$(LUA_VERSION).$$(C.COMPILER).$$(PLATFORM)' },
}
}
================================================
FILE: CreateJamXcodeWorkspace.sh
================================================
Tools/JamPlus/bin/macosx64/jam --workspace -gen=xcode -config=CreateJamXcodeWorkspace.config Jamfile.jam .build
================================================
FILE: CreateVS2017Workspace.bat
================================================
@%~dp0Tools\JamPlus\bin\win64\jam --workspace -gen=vs2017 --compiler=vs2017 -config=CreateJamWindowsWorkspace.config Jamfile.jam build2017%1
================================================
FILE: CreateVS2019Workspace.bat
================================================
@%~dp0Tools\JamPlus\bin\win64\jam --workspace -gen=vs2019 --compiler=vs2019 -config=CreateJamWindowsWorkspace.config Jamfile.jam build2019%1
================================================
FILE: Docs/LuaCopyright
================================================
Lua License
-----------
Lua is licensed under the terms of the MIT license reproduced below.
This mean that Lua is free software and can be used for both academic and
commercial purposes at absolutely no cost.
For details, see http://www.lua.org/license.html .
===============================================================================
Copyright (C) 2002 Tecgraf, PUC-Rio.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
===============================================================================
(end of COPYRIGHT)
================================================
FILE: Docs/LuaManual.html
================================================
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<html>
<head>
<title>Lua 5.1 Reference Manual</title>
<link rel="stylesheet" href="lua.css">
</head>
<body>
<hr>
<h1>
<a href="http://www.lua.org/"><img src="logo.gif" alt="" border="0"></a>
Lua 5.1 Reference Manual
</h1>
by Roberto Ierusalimschy, Luiz Henrique de Figueiredo, Waldemar Celes
<p>
<small>
<a href="http://www.lua.org/copyright.html">Copyright</a>
© 2006 Lua.org, PUC-Rio. All rights reserved.
</small>
<hr>
<!-- ====================================================================== -->
<p>
<h1>1 - <a name="1">Introduction</a></h1>
<p>
Lua is an extension programming language designed to support
general procedural programming with data description
facilities.
It also offers good support for object-oriented programming,
functional programming, and data-driven programming.
Lua is intended to be used as a powerful, light-weight
scripting language for any program that needs one.
Lua is implemented as a library, written in <em>clean</em> C
(that is, in the common subset of ANSI C and C++).
<p>
Being an extension language, Lua has no notion of a "main" program:
it only works <em>embedded</em> in a host client,
called the <em>embedding program</em> or simply the <em>host</em>.
This host program can invoke functions to execute a piece of Lua code,
can write and read Lua variables,
and can register C functions to be called by Lua code.
Through the use of C functions, Lua can be augmented to cope with
a wide range of different domains,
thus creating customized programming languages sharing a syntactical framework.
The Lua distribution includes a sample host program called <code>lua</code>,
which uses the Lua library to offer a complete, stand-alone Lua interpreter.
<p>
Lua is free software,
and is provided as usual with no guarantees,
as stated in its license.
The implementation described in this manual is available
at Lua's official web site, <code>www.lua.org</code>.
<p>
Like any other reference manual,
this document is dry in places.
For a discussion of the decisions behind the design of Lua,
see the technical papers available at Lua's web site.
For a detailed introduction to programming in Lua,
see Roberto's book, <em>Programming in Lua</em>.
<h1>2 - <a name="2">The Language</a></h1>
<p>
This section describes the lexis, the syntax, and the semantics of Lua.
In other words,
this section describes
which tokens are valid,
how they can be combined,
and what their combinations mean.
<p>
The language constructs will be explained using the usual extended BNF notation,
in which
{<em>a</em>} means 0 or more <em>a</em>'s, and
[<em>a</em>] means an optional <em>a</em>.
Non-terminals are shown like non-terminal,
keywords are shown like <b>kword</b>,
and other terminal symbols are shown like `<b>=</b>´.
The complete syntax of Lua can be found at the end of this manual.
<h2>2.1 - <a name="2.1">Lexical Conventions</a></h2>
<p>
<em>Names</em>
(also called <em>identifiers</em>)
in Lua can be any string of letters,
digits, and underscores,
not beginning with a digit.
This coincides with the definition of names in most languages.
(The definition of letter depends on the current locale:
any character considered alphabetic by the current locale
can be used in an identifier.)
Identifiers are used to name variables and table fields.
<p>
The following <em>keywords</em> are reserved
and cannot be used as names:
<pre>
and break do else elseif
end false for function if
in local nil not or
repeat return then true until while
</pre>
<p>
Lua is a case-sensitive language:
<code>and</code> is a reserved word, but <code>And</code> and <code>AND</code>
are two different, valid names.
As a convention, names starting with an underscore followed by
uppercase letters (such as <code>_VERSION</code>)
are reserved for internal global variables used by Lua.
<p>
The following strings denote other tokens:
<pre>
+ - * / % ^ #
== ~= <= >= < > =
( ) { } [ ]
; : , . .. ...
</pre>
<p>
<em>Literal strings</em>
can be delimited by matching single or double quotes,
and can contain the following C-like escape sequences:
'<code>\a</code>' (bell),
'<code>\b</code>' (backspace),
'<code>\f</code>' (form feed),
'<code>\n</code>' (newline),
'<code>\r</code>' (carriage return),
'<code>\t</code>' (horizontal tab),
'<code>\v</code>' (vertical tab),
'<code>\\</code>' (backslash),
'<code>\"</code>' (quotation mark [double quote]),
and '<code>\'</code>' (apostrophe [single quote]).
Moreover, a backslash followed by a real newline
results in a newline in the string.
A character in a string may also be specified by its numerical value
using the escape sequence <code>\<em>ddd</em></code>,
where <em>ddd</em> is a sequence of up to three decimal digits.
(Note that if a numerical escape is to be followed by a digit,
it must be expressed using exactly three digits.)
Strings in Lua may contain any 8-bit value, including embedded zeros,
which can be specified as '<code>\0</code>'.
<p>
To put a double (single) quote, a newline, a backslash,
or an embedded zero
inside a literal string enclosed by double (single) quotes
you must use an escape sequence.
Any other character may be directly inserted into the literal.
(Some control characters may cause problems for the file system,
but Lua has no problem with them.)
<p>
Literal strings can also be defined using a long format
enclosed by <em>long brackets</em>.
We define an <em>opening long bracket of level <em>n</em></em> as an opening
square bracket followed by <em>n</em> equal signs followed by another
opening square bracket.
So, an opening long bracket of level 0 is written as <code>[[</code>,
an opening long bracket of level 1 is written as <code>[=[</code>,
and so on.
A <em>closing long bracket</em> is defined similarly;
for instance, a closing long bracket of level 4 is written as <code>]====]</code>.
A long string starts with an opening long bracket of any level and
ends at the first closing long bracket of the same level.
Literals in this bracketed form may run for several lines,
do not interpret any escape sequences,
and ignore long brackets of any other level.
They may contain anything except a closing bracket of the proper level.
<p>
For convenience,
when the opening long bracket is immediately followed by a newline,
the newline is not included in the string.
As an example, in a system using ASCII
(in which '<code>a</code>' is coded as 97,
newline is coded as 10, and '<code>1</code>' is coded as 49),
the five literals below denote the same string:
<pre>
a = 'alo\n123"'
a = "alo\n123\""
a = '\97lo\10\04923"'
a = [[alo
123"]]
a = [==[
alo
123"]==]
</pre>
<p>
A <em>numerical constant</em> may be written with an optional decimal part
and an optional decimal exponent.
Lua also accepts integer hexadecimal constants,
by prefixing them with <code>0x</code>.
Examples of valid numerical constants are
<pre>
3 3.0 3.1416 314.16e-2 0.31416E1 0xff 0x56
</pre>
<p>
A <em>comment</em> starts with a double hyphen (<code>--</code>)
anywhere outside a string.
If the text immediately after <code>--</code> is not an opening long bracket,
the comment is a <em>short comment</em>,
which runs until the end of the line.
Otherwise, it is a <em>long comment</em>,
which runs until the corresponding closing long bracket.
Long comments are frequently used to disable code temporarily.
<h2>2.2 - <a name="2.2">Values and Types</a></h2>
<p>
Lua is a <em>dynamically typed language</em>.
This means that
variables do not have types; only values do.
There are no type definitions in the language.
All values carry their own type.
<p>
All values in Lua are <em>first-class values</em>.
This means that all values can be stored in variables,
passed as arguments to other functions, and returned as results.
<p>
There are eight basic types in Lua:
<em>nil</em>, <em>boolean</em>, <em>number</em>,
<em>string</em>, <em>function</em>, <em>userdata</em>,
<em>thread</em>, and <em>table</em>.
<em>Nil</em> is the type of the value <b>nil</b>,
whose main property is to be different from any other value;
it usually represents the absence of a useful value.
<em>Boolean</em> is the type of the values <b>false</b> and <b>true</b>.
Both <b>nil</b> and <b>false</b> make a condition false;
any other value makes it true.
<em>Number</em> represents real (double-precision floating-point) numbers.
(It is easy to build Lua interpreters that use other
internal representations for numbers,
such as single-precision float or long integers;
see file <code>luaconf.h</code>.)
<em>String</em> represents arrays of characters.
Lua is 8-bit clean:
strings may contain any 8-bit character,
including embedded zeros ('<code>\0</code>') (see <a href="#2.1">§2.1</a>).
<p>
Lua can call (and manipulate) functions written in Lua and
functions written in C
(see <a href="#2.5.8">§2.5.8</a>).
<p>
The type <em>userdata</em> is provided to allow arbitrary C data to
be stored in Lua variables.
This type corresponds to a block of raw memory
and has no pre-defined operations in Lua,
except assignment and identity test.
However, by using <em>metatables</em>,
the programmer can define operations for userdata values
(see <a href="#2.8">§2.8</a>).
Userdata values cannot be created or modified in Lua,
only through the C API.
This guarantees the integrity of data owned by the host program.
<p>
The type <em>thread</em> represents independent threads of execution
and it is used to implement coroutines (see <a href="#2.11">§2.11</a>).
Do not confuse Lua threads with operating-system threads.
Lua supports coroutines on all systems,
even those that do not support threads.
<p>
The type <em>table</em> implements associative arrays,
that is, arrays that can be indexed not only with numbers,
but with any value (except <b>nil</b>).
Tables can be <em>heterogeneous</em>;
that is, they can contain values of all types (except <b>nil</b>).
Tables are the sole data structuring mechanism in Lua;
they may be used to represent ordinary arrays,
symbol tables, sets, records, graphs, trees, etc.
To represent records, Lua uses the field name as an index.
The language supports this representation by
providing <code>a.name</code> as syntactic sugar for <code>a["name"]</code>.
There are several convenient ways to create tables in Lua
(see <a href="#2.5.7">§2.5.7</a>).
<p>
Like indices,
the value of a table field can be of any type (except <b>nil</b>).
In particular,
because functions are first-class values,
table fields may contain functions.
Thus tables may also carry <em>methods</em> (see <a href="#2.5.9">§2.5.9</a>).
<p>
Tables, functions, threads, and (full) userdata values are <em>objects</em>:
variables do not actually <em>contain</em> these values,
only <em>references</em> to them.
Assignment, parameter passing, and function returns
always manipulate references to such values;
these operations do not imply any kind of copy.
<p>
The library function <a href="#pdf-type"><code>type</code></a> returns a string describing the type
of a given value.
<h3>2.2.1 - <a name="2.2.1">Coercion</a></h3>
<p>
Lua provides automatic conversion between
string and number values at run time.
Any arithmetic operation applied to a string tries to convert
this string to a number, following the usual conversion rules.
Conversely, whenever a number is used where a string is expected,
the number is converted to a string, in a reasonable format.
For complete control over how numbers are converted to strings,
use the <code>format</code> function from the string library
(see <a href="#pdf-string.format"><code>string.format</code></a>).
<h2>2.3 - <a name="2.3">Variables</a></h2>
<p>
Variables are places that store values.
There are three kinds of variables in Lua:
global variables, local variables, and table fields.
<p>
A single name can denote a global variable or a local variable
(or a function's formal parameter,
which is a particular kind of local variable):
<pre>
var ::= Name
</pre><p>
Name denotes identifiers, as defined in <a href="#2.1">§2.1</a>.
<p>
Variables are assumed to be global unless explicitly declared local
(see <a href="#2.4.7">§2.4.7</a>).
Local variables are <em>lexically scoped</em>:
local variables can be freely accessed by functions
defined inside their scope (see <a href="#2.6">§2.6</a>).
<p>
Before the first assignment to a variable, its value is <b>nil</b>.
<p>
Square brackets are used to index a table:
<pre>
var ::= prefixexp `<b>[</b>´ exp `<b>]</b>´
</pre><p>
The meaning of accesses to global variables
and table fields can be changed via metatables.
An access to an indexed variable <code>t[i]</code> is equivalent to
a call <code>gettable_event(t,i)</code>.
(See <a href="#2.8">§2.8</a> for a complete description of the
<code>gettable_event</code> function.
This function is not defined or callable in Lua.
We use it here only for explanatory purposes.)
<p>
The syntax <code>var.Name</code> is just syntactic sugar for
<code>var["Name"]</code>:
<pre>
var ::= prefixexp `<b>.</b>´ Name
</pre>
<p>
All global variables live as fields in ordinary Lua tables,
called <em>environment tables</em> or simply
<em>environments</em> (see <a href="#2.9">§2.9</a>).
Each function has its own reference to an environment,
so that all global variables in this function
will refer to this environment table.
When a function is created,
it inherits the environment from the function that created it.
To get the environment table of a Lua function,
you call <a href="#pdf-getfenv"><code>getfenv</code></a>.
To replace it,
you call <a href="#pdf-setfenv"><code>setfenv</code></a>.
(You can only manipulate the environment of C functions
through the debug library; (see <a href="#5.9">§5.9</a>).)
<p>
An access to a global variable <code>x</code>
is equivalent to <code>_env.x</code>,
which in turn is equivalent to
<pre>
gettable_event(_env, "x")
</pre><p>
where <code>_env</code> is the environment of the running function.
(See <a href="#2.8">§2.8</a> for a complete description of the
<code>gettable_event</code> function.
This function is not defined or callable in Lua.
Similarly, the <code>_env</code> variable is not defined in Lua.
We use them here only for explanatory purposes.)
<h2>2.4 - <a name="2.4">Statements</a></h2>
<p>
Lua supports an almost conventional set of statements,
similar to those in Pascal or C.
This set includes
assignment, control structures, function calls,
and variable declarations.
<h3>2.4.1 - <a name="2.4.1">Chunks</a></h3>
<p>
The unit of execution of Lua is called a <em>chunk</em>.
A chunk is simply a sequence of statements,
which are executed sequentially.
Each statement can be optionally followed by a semicolon:
<pre>
chunk ::= {stat [`<b>;</b>´]}
</pre><p>
There are no empty statements and thus '<code>;;</code>' is not legal.
<p>
Lua handles a chunk as the body of an anonymous function
with a variable number of arguments
(see <a href="#2.5.9">§2.5.9</a>).
As such, chunks can define local variables,
receive arguments, and return values.
<p>
A chunk may be stored in a file or in a string inside the host program.
When a chunk is executed, first it is pre-compiled into instructions for
a virtual machine,
and then the compiled code is executed
by an interpreter for the virtual machine.
<p>
Chunks may also be pre-compiled into binary form;
see program <code>luac</code> for details.
Programs in source and compiled forms are interchangeable;
Lua automatically detects the file type and acts accordingly.
<h3>2.4.2 - <a name="2.4.2">Blocks</a></h3><p>
A block is a list of statements;
syntactically, a block is the same as a chunk:
<pre>
block ::= chunk
</pre>
<p>
A block may be explicitly delimited to produce a single statement:
<pre>
stat ::= <b>do</b> block <b>end</b>
</pre><p>
Explicit blocks are useful
to control the scope of variable declarations.
Explicit blocks are also sometimes used to
add a <b>return</b> or <b>break</b> statement in the middle
of another block (see <a href="#2.4.4">§2.4.4</a>).
<h3>2.4.3 - <a name="2.4.3">Assignment</a></h3>
<p>
Lua allows multiple assignment.
Therefore, the syntax for assignment
defines a list of variables on the left side
and a list of expressions on the right side.
The elements in both lists are separated by commas:
<pre>
stat ::= varlist1 `<b>=</b>´ explist1
varlist1 ::= var {`<b>,</b>´ var}
explist1 ::= exp {`<b>,</b>´ exp}
</pre><p>
Expressions are discussed in <a href="#2.5">§2.5</a>.
<p>
Before the assignment,
the list of values is <em>adjusted</em> to the length of
the list of variables.
If there are more values than needed,
the excess values are thrown away.
If there are fewer values than needed,
the list is extended with as many <b>nil</b>'s as needed.
If the list of expressions ends with a function call,
then all values returned by this call enter in the list of values,
before the adjustment
(except when the call is enclosed in parentheses; see <a href="#2.5">§2.5</a>).
<p>
The assignment statement first evaluates all its expressions
and only then are the assignments performed.
Thus the code
<pre>
i = 3
i, a[i] = i+1, 20
</pre><p>
sets <code>a[3]</code> to 20, without affecting <code>a[4]</code>
because the <code>i</code> in <code>a[i]</code> is evaluated (to 3)
before it is assigned 4.
Similarly, the line
<pre>
x, y = y, x
</pre><p>
exchanges the values of <code>x</code> and <code>y</code>.
<p>
The meaning of assignments to global variables
and table fields can be changed via metatables.
An assignment to an indexed variable <code>t[i] = val</code> is equivalent to
<code>settable_event(t,i,val)</code>.
(See <a href="#2.8">§2.8</a> for a complete description of the
<code>settable_event</code> function.
This function is not defined or callable in Lua.
We use it here only for explanatory purposes.)
<p>
An assignment to a global variable <code>x = val</code>
is equivalent to the assignment
<code>_env.x = val</code>,
which in turn is equivalent to
<pre>
settable_event(_env, "x", val)
</pre><p>
where <code>_env</code> is the environment of the running function.
(The <code>_env</code> variable is not defined in Lua.
We use it here only for explanatory purposes.)
<h3>2.4.4 - <a name="2.4.4">Control Structures</a></h3><p>
The control structures
<b>if</b>, <b>while</b>, and <b>repeat</b> have the usual meaning and
familiar syntax:
<pre>
stat ::= <b>while</b> exp <b>do</b> block <b>end</b>
stat ::= <b>repeat</b> block <b>until</b> exp
stat ::= <b>if</b> exp <b>then</b> block {<b>elseif</b> exp <b>then</b> block} [<b>else</b> block] <b>end</b>
</pre><p>
Lua also has a <b>for</b> statement, in two flavors (see <a href="#2.4.5">§2.4.5</a>).
<p>
The condition expression of a
control structure may return any value.
Both <b>false</b> and <b>nil</b> are considered false.
All values different from <b>nil</b> and <b>false</b> are considered true
(in particular, the number 0 and the empty string are also true).
<p>
In the <b>repeat</b>–<b>until</b> loop,
the inner block does not end at the <b>until</b> keyword,
but only after the condition.
So, the condition can refer to local variables
declared inside the loop block.
<p>
The <b>return</b> statement is used to return values
from a function or a chunk (which is just a function).
Functions and chunks may return more than one value,
so the syntax for the <b>return</b> statement is
<pre>
stat ::= <b>return</b> [explist1]
</pre>
<p>
The <b>break</b> statement is used to terminate the execution of a
<b>while</b>, <b>repeat</b>, or <b>for</b> loop,
skipping to the next statement after the loop:
<pre>
stat ::= <b>break</b>
</pre><p>
A <b>break</b> ends the innermost enclosing loop.
<p>
The <b>return</b> and <b>break</b>
statements can only be written as the <em>last</em> statement of a block.
If it is really necessary to <b>return</b> or <b>break</b> in the
middle of a block,
then an explicit inner block can be used,
as in the idioms
<code>do return end</code> and <code>do break end</code>,
because now <b>return</b> and <b>break</b> are the last statements in
their (inner) blocks.
<h3>2.4.5 - <a name="2.4.5">For Statement</a></h3>
<p>
The <b>for</b> statement has two forms:
one numeric and one generic.
<p>
The numeric <b>for</b> loop repeats a block of code while a
control variable runs through an arithmetic progression.
It has the following syntax:
<pre>
stat ::= <b>for</b> Name `<b>=</b>´ exp `<b>,</b>´ exp [`<b>,</b>´ exp] <b>do</b> block <b>end</b>
</pre><p>
The <em>block</em> is repeated for <em>name</em> starting at the value of
the first <em>exp</em>, until it passes the second <em>exp</em> by steps of the
third <em>exp</em>.
More precisely, a <b>for</b> statement like
<pre>
for var = e1, e2, e3 do block end
</pre><p>
is equivalent to the code:
<pre>
do
local _var, _limit, _step = tonumber(e1), tonumber(e2), tonumber(e3)
if not (_var and _limit and _step) then error() end
while (_step>0 and _var<=_limit) or (_step<=0 and _var>=_limit) do
local var = _var
<em>block</em>
_var = _var + _step
end
end
</pre><p>
Note the following:
<ul>
<li>
All three control expressions are evaluated only once,
before the loop starts.
They must all result in numbers.
</li>
<li>
<code>_var</code>, <code>_limit</code>, and <code>_step</code> are invisible variables.
The names are here for explanatory purposes only.
</li>
<li>
If the third expression (the step) is absent,
then a step of 1 is used.
</li>
<li>
You can use <b>break</b> to exit a <b>for</b> loop.
</li>
<li>
The loop variable <code>var</code> is local to the loop;
you cannot use its value after the <b>for</b> ends or is broken.
If you need the value of the loop variable <code>var</code>,
then assign it to another variable before breaking or exiting the loop.
</li>
</ul>
<p>
The generic <b>for</b> statement works over functions,
called <em>iterators</em>.
On each iteration, the iterator function is called to produce a new value,
stopping when this new value is <b>nil</b>.
The generic <b>for</b> loop has the following syntax:
<pre>
stat ::= <b>for</b> namelist <b>in</b> explist1 <b>do</b> block <b>end</b>
namelist ::= Name {`<b>,</b>´ Name}
</pre><p>
A <b>for</b> statement like
<pre>
for var_1, ···, var_n in explist do block end
</pre><p>
is equivalent to the code:
<pre>
do
local _f, _s, _var = explist
while true do
local var_1, ···, var_n = _f(_s, _var)
_var = var_1
if _var == nil then break end
block
end
end
</pre><p>
Note the following:
<ul>
<li>
<code>explist</code> is evaluated only once.
Its results are an <em>iterator</em> function,
a <em>state</em>, and an initial value for the first <em>iterator variable</em>.
</li>
<li>
<code>_f</code>, <code>_s</code>, and <code>_var</code> are invisible variables.
The names are here for explanatory purposes only.
</li>
<li>
You can use <b>break</b> to exit a <b>for</b> loop.
</li>
<li>
The loop variables <code>var_i</code> are local to the loop;
you cannot use their values after the <b>for</b> ends.
If you need these values,
then assign them to other variables before breaking or exiting the loop.
</li>
</ul>
<h3>2.4.6 - <a name="2.4.6">Function Calls as Statements</a></h3><p>
To allow possible side-effects,
function calls can be executed as statements:
<pre>
stat ::= functioncall
</pre><p>
In this case, all returned values are thrown away.
Function calls are explained in <a href="#2.5.8">§2.5.8</a>.
<h3>2.4.7 - <a name="2.4.7">Local Declarations</a></h3><p>
Local variables may be declared anywhere inside a block.
The declaration may include an initial assignment:
<pre>
stat ::= <b>local</b> namelist [`<b>=</b>´ explist1]
</pre><p>
If present, an initial assignment has the same semantics
of a multiple assignment (see <a href="#2.4.3">§2.4.3</a>).
Otherwise, all variables are initialized with <b>nil</b>.
<p>
A chunk is also a block (see <a href="#2.4.1">§2.4.1</a>),
and so local variables can be declared in a chunk outside any explicit block.
The scope of such local variables extends until the end of the chunk.
<p>
The visibility rules for local variables are explained in <a href="#2.6">§2.6</a>.
<h2>2.5 - <a name="2.5">Expressions</a></h2>
<p>
The basic expressions in Lua are the following:
<pre>
exp ::= prefixexp
exp ::= <b>nil</b> | <b>false</b> | <b>true</b>
exp ::= Number
exp ::= String
exp ::= function
exp ::= tableconstructor
exp ::= `<b>...</b>´
exp ::= exp binop exp
exp ::= unop exp
prefixexp ::= var | functioncall | `<b>(</b>´ exp `<b>)</b>´
</pre>
<p>
Numbers and literal strings are explained in <a href="#2.1">§2.1</a>;
variables are explained in <a href="#2.3">§2.3</a>;
function definitions are explained in <a href="#2.5.9">§2.5.9</a>;
function calls are explained in <a href="#2.5.8">§2.5.8</a>;
table constructors are explained in <a href="#2.5.7">§2.5.7</a>.
Vararg expressions,
denoted by three dots ('<code>...</code>'), can only be used inside
vararg functions;
they are explained in <a href="#2.5.9">§2.5.9</a>.
<p>
Binary operators comprise arithmetic operators (see <a href="#2.5.1">§2.5.1</a>),
relational operators (see <a href="#2.5.2">§2.5.2</a>), logical operators (see <a href="#2.5.3">§2.5.3</a>),
and the concatenation operator (see <a href="#2.5.4">§2.5.4</a>).
Unary operators comprise the unary minus (see <a href="#2.5.1">§2.5.1</a>),
the unary <b>not</b> (see <a href="#2.5.3">§2.5.3</a>),
and the unary <em>length operator</em> (see <a href="#2.5.5">§2.5.5</a>).
<p>
Both function calls and vararg expressions may result in multiple values.
If the expression is used as a statement (see <a href="#2.4.6">§2.4.6</a>)
(only possible for function calls),
then its return list is adjusted to zero elements,
thus discarding all returned values.
If the expression is used inside another expression
or in the middle of a list of expressions,
then its result list is adjusted to one element,
thus discarding all values except the first one.
If the expression is used as the last element of a list of expressions,
then no adjustment is made,
unless the call is enclosed in parentheses.
<p>
Here are some examples:
<pre>
f() -- adjusted to 0 results
g(f(), x) -- f() is adjusted to 1 result
g(x, f()) -- g gets x plus all values returned by f()
a,b,c = f(), x -- f() is adjusted to 1 result (c gets nil)
a,b = ... -- a gets the first vararg parameter, b gets
-- the second (both a and b may get nil if there is
-- no corresponding vararg parameter)
a,b,c = x, f() -- f() is adjusted to 2 results
a,b,c = f() -- f() is adjusted to 3 results
return f() -- returns all values returned by f()
return ... -- returns all received vararg parameters
return x,y,f() -- returns x, y, and all values returned by f()
{f()} -- creates a list with all values returned by f()
{...} -- creates a list with all vararg parameters
{f(), nil} -- f() is adjusted to 1 result
</pre>
<p>
An expression enclosed in parentheses always results in only one value.
Thus,
<code>(f(x,y,z))</code> is always a single value,
even if <code>f</code> returns several values.
(The value of <code>(f(x,y,z))</code> is the first value returned by <code>f</code>
or <b>nil</b> if <code>f</code> does not return any values.)
<h3>2.5.1 - <a name="2.5.1">Arithmetic Operators</a></h3><p>
Lua supports the usual arithmetic operators:
the binary <code>+</code> (addition),
<code>-</code> (subtraction), <code>*</code> (multiplication),
<code>/</code> (division), <code>%</code> (modulo), and <code>^</code> (exponentiation);
and unary <code>-</code> (negation).
If the operands are numbers, or strings that can be converted to
numbers (see <a href="#2.2.1">§2.2.1</a>),
then all operations have the usual meaning.
Exponentiation works for any exponent.
For instance, <code>x^(-0.5)</code> computes the inverse of the square root of <code>x</code>.
Modulo is defined as
<pre>
a % b == a - math.floor(a/b)*b
</pre><p>
That is, it is the remainder of a division that rounds
the quotient towards minus infinity.
<h3>2.5.2 - <a name="2.5.2">Relational Operators</a></h3><p>
The relational operators in Lua are
<pre>
== ~= < > <= >=
</pre><p>
These operators always result in <b>false</b> or <b>true</b>.
<p>
Equality (<code>==</code>) first compares the type of its operands.
If the types are different, then the result is <b>false</b>.
Otherwise, the values of the operands are compared.
Numbers and strings are compared in the usual way.
Objects (tables, userdata, threads, and functions)
are compared by <em>reference</em>:
two objects are considered equal only if they are the <em>same</em> object.
Every time you create a new object
(a table, userdata, thread, or function),
this new object is different from any previously existing object.
<p>
You can change the way that Lua compares tables and userdata
by using the "eq" metamethod (see <a href="#2.8">§2.8</a>).
<p>
The conversion rules of <a href="#2.2.1">§2.2.1</a>
<em>do not</em> apply to equality comparisons.
Thus, <code>"0"==0</code> evaluates to <b>false</b>,
and <code>t[0]</code> and <code>t["0"]</code> denote different
entries in a table.
<p>
The operator <code>~=</code> is exactly the negation of equality (<code>==</code>).
<p>
The order operators work as follows.
If both arguments are numbers, then they are compared as such.
Otherwise, if both arguments are strings,
then their values are compared according to the current locale.
Otherwise, Lua tries to call the "lt" or the "le"
metamethod (see <a href="#2.8">§2.8</a>).
<h3>2.5.3 - <a name="2.5.3">Logical Operators</a></h3><p>
The logical operators in Lua are
<b>and</b>, <b>or</b>, and <b>not</b>.
Like the control structures (see <a href="#2.4.4">§2.4.4</a>),
all logical operators consider both <b>false</b> and <b>nil</b> as false
and anything else as true.
<p>
The negation operator <b>not</b> always returns <b>false</b> or <b>true</b>.
The conjunction operator <b>and</b> returns its first argument
if this value is <b>false</b> or <b>nil</b>;
otherwise, <b>and</b> returns its second argument.
The disjunction operator <b>or</b> returns its first argument
if this value is different from <b>nil</b> and <b>false</b>;
otherwise, <b>or</b> returns its second argument.
Both <b>and</b> and <b>or</b> use short-cut evaluation;
that is,
the second operand is evaluated only if necessary.
Here are some examples:
<pre>
10 or 20 --> 10
10 or error() --> 10
nil or "a" --> "a"
nil and 10 --> nil
false and error() --> false
false and nil --> false
false or nil --> nil
10 and 20 --> 20
</pre><p>
(In this manual,
--> indicates the result of the preceding expression.)
<h3>2.5.4 - <a name="2.5.4">Concatenation</a></h3><p>
The string concatenation operator in Lua is
denoted by two dots ('<code>..</code>').
If both operands are strings or numbers, then they are converted to
strings according to the rules mentioned in <a href="#2.2.1">§2.2.1</a>.
Otherwise, the "concat" metamethod is called (see <a href="#2.8">§2.8</a>).
<h3>2.5.5 - <a name="2.5.5">The Length Operator</a></h3>
<p>
The length operator is denoted by the unary operator <code>#</code>.
The length of a string is its number of bytes
(that is, the usual meaning of string length when each
character is one byte).
<p>
The length of a table <code>t</code> is defined to be any
integer index <code>n</code>
such that <code>t[n]</code> is not <b>nil</b> and <code>t[n+1]</code> is <b>nil</b>;
moreover, if <code>t[1]</code> is <b>nil</b>, <code>n</code> may be zero.
For a regular array, with non-nil values from 1 to a given <code>n</code>,
its length is exactly that <code>n</code>,
the index of its last value.
If the array has "holes"
(that is, <b>nil</b> values between other non-nil values),
then <code>#t</code> may be any of the indices that
directly precedes a <b>nil</b> value
(that is, it may consider any such <b>nil</b> value as the end of
the array).
<h3>2.5.6 - <a name="2.5.6">Precedence</a></h3><p>
Operator precedence in Lua follows the table below,
from lower to higher priority:
<pre>
or
and
< > <= >= ~= ==
..
+ -
* / %
not # - (unary)
^
</pre><p>
As usual,
you can use parentheses to change the precedences of an expression.
The concatenation ('<code>..</code>') and exponentiation ('<code>^</code>')
operators are right associative.
All other binary operators are left associative.
<h3>2.5.7 - <a name="2.5.7">Table Constructors</a></h3><p>
Table constructors are expressions that create tables.
Every time a constructor is evaluated, a new table is created.
Constructors can be used to create empty tables,
or to create a table and initialize some of its fields.
The general syntax for constructors is
<pre>
tableconstructor ::= `<b>{</b>´ [fieldlist] `<b>}</b>´
fieldlist ::= field {fieldsep field} [fieldsep]
field ::= `<b>[</b>´ exp `<b>]</b>´ `<b>=</b>´ exp | Name `<b>=</b>´ exp | exp
fieldsep ::= `<b>,</b>´ | `<b>;</b>´
</pre>
<p>
Each field of the form <code>[exp1] = exp2</code> adds to the new table an entry
with key <code>exp1</code> and value <code>exp2</code>.
A field of the form <code>name = exp</code> is equivalent to
<code>["name"] = exp</code>.
Finally, fields of the form <code>exp</code> are equivalent to
<code>[i] = exp</code>, where <code>i</code> are consecutive numerical integers,
starting with 1.
Fields in the other formats do not affect this counting.
For example,
<pre>
a = { [f(1)] = g; "x", "y"; x = 1, f(x), [30] = 23; 45 }
</pre><p>
is equivalent to
<pre>
do
local t = {}
t[f(1)] = g
t[1] = "x" -- 1st exp
t[2] = "y" -- 2nd exp
t.x = 1 -- t["x"] = 1
t[3] = f(x) -- 3rd exp
t[30] = 23
t[4] = 45 -- 4th exp
a = t
end
</pre>
<p>
If the last field in the list has the form <code>exp</code>
and the expression is a function call or a vararg expression,
then all values returned by this expression enter the list consecutively
(see <a href="#2.5.8">§2.5.8</a>).
To avoid this,
enclose the function call (or the vararg expression)
in parentheses (see <a href="#2.5">§2.5</a>).
<p>
The field list may have an optional trailing separator,
as a convenience for machine-generated code.
<h3>2.5.8 - <a name="2.5.8">Function Calls</a></h3><p>
A function call in Lua has the following syntax:
<pre>
functioncall ::= prefixexp args
</pre><p>
In a function call,
first prefixexp and args are evaluated.
If the value of prefixexp has type <em>function</em>,
then this function is called
with the given arguments.
Otherwise, the prefixexp "call" metamethod is called,
having as first parameter the value of prefixexp,
followed by the original call arguments
(see <a href="#2.8">§2.8</a>).
<p>
The form
<pre>
functioncall ::= prefixexp `<b>:</b>´ Name args
</pre><p>
can be used to call "methods".
A call <code>v:name(<em>args</em>)</code>
is syntactic sugar for <code>v.name(v,<em>args</em>)</code>,
except that <code>v</code> is evaluated only once.
<p>
Arguments have the following syntax:
<pre>
args ::= `<b>(</b>´ [explist1] `<b>)</b>´
args ::= tableconstructor
args ::= String
</pre><p>
All argument expressions are evaluated before the call.
A call of the form <code>f{<em>fields</em>}</code> is
syntactic sugar for <code>f({<em>fields</em>})</code>;
that is, the argument list is a single new table.
A call of the form <code>f'<em>string</em>'</code>
(or <code>f"<em>string</em>"</code> or <code>f[[<em>string</em>]]</code>)
is syntactic sugar for <code>f('<em>string</em>')</code>;
that is, the argument list is a single literal string.
<p>
As an exception to the free-format syntax of Lua,
you cannot put a line break before the '<code>(</code>' in a function call.
This restriction avoids some ambiguities in the language.
If you write
<pre>
a = f
(g).x(a)
</pre><p>
Lua would see that as a single statement, <code>a = f(g).x(a)</code>.
So, if you want two statements, you must add a semi-colon between them.
If you actually want to call <code>f</code>,
you must remove the line break before <code>(g)</code>.
<p>
A call of the form <code>return</code> <em>functioncall</em> is called
a <em>tail call</em>.
Lua implements <em>proper tail calls</em>
(or <em>proper tail recursion</em>):
in a tail call,
the called function reuses the stack entry of the calling function.
Therefore, there is no limit on the number of nested tail calls that
a program can execute.
However, a tail call erases any debug information about the
calling function.
Note that a tail call only happens with a particular syntax,
where the <b>return</b> has one single function call as argument;
this syntax makes the calling function return exactly
the returns of the called function.
So, none of the following examples are tail calls:
<pre>
return (f(x)) -- results adjusted to 1
return 2 * f(x)
return x, f(x) -- additional results
f(x); return -- results discarded
return x or f(x) -- results adjusted to 1
</pre>
<h3>2.5.9 - <a name="2.5.9">Function Definitions</a></h3>
<p>
The syntax for function definition is
<pre>
function ::= <b>function</b> funcbody
funcbody ::= `<b>(</b>´ [parlist1] `<b>)</b>´ block <b>end</b>
</pre>
<p>
The following syntactic sugar simplifies function definitions:
<pre>
stat ::= <b>function</b> funcname funcbody
stat ::= <b>local</b> <b>function</b> Name funcbody
funcname ::= Name {`<b>.</b>´ Name} [`<b>:</b>´ Name]
</pre><p>
The statement
<pre>
function f () <em>body</em> end
</pre><p>
translates to
<pre>
f = function () <em>body</em> end
</pre><p>
The statement
<pre>
function t.a.b.c.f () <em>body</em> end
</pre><p>
translates to
<pre>
t.a.b.c.f = function () <em>body</em> end
</pre><p>
The statement
<pre>
local function f () <em>body</em> end
</pre><p>
translates to
<pre>
local f; f = function () <em>body</em> end
</pre><p>
<em>not</em> to
<pre>
local f = function () <em>body</em> end
</pre><p>
(This only makes a difference when the body of the function
contains references to <code>f</code>.)
<p>
A function definition is an executable expression,
whose value has type <em>function</em>.
When Lua pre-compiles a chunk,
all its function bodies are pre-compiled too.
Then, whenever Lua executes the function definition,
the function is <em>instantiated</em> (or <em>closed</em>).
This function instance (or <em>closure</em>)
is the final value of the expression.
Different instances of the same function
may refer to different external local variables
and may have different environment tables.
<p>
Parameters act as local variables that are
initialized with the argument values:
<pre>
parlist1 ::= namelist [`<b>,</b>´ `<b>...</b>´] | `<b>...</b>´
</pre><p>
When a function is called,
the list of arguments is adjusted to
the length of the list of parameters,
unless the function is a variadic or <em>vararg function</em>,
which is
indicated by three dots ('<code>...</code>') at the end of its parameter list.
A vararg function does not adjust its argument list;
instead, it collects all extra arguments and supplies them
to the function through a <em>vararg expression</em>,
which is also written as three dots.
The value of this expression is a list of all actual extra arguments,
similar to a function with multiple results.
If a vararg expression is used inside another expression
or in the middle of a list of expressions,
then its return list is adjusted to one element.
If the expression is used as the last element of a list of expressions,
then no adjustment is made
(unless the call is enclosed in parentheses).
<p>
As an example, consider the following definitions:
<pre>
function f(a, b) end
function g(a, b, ...) end
function r() return 1,2,3 end
</pre><p>
Then, we have the following mapping from arguments to parameters and
to the vararg expression:
<pre>
CALL PARAMETERS
f(3) a=3, b=nil
f(3, 4) a=3, b=4
f(3, 4, 5) a=3, b=4
f(r(), 10) a=1, b=10
f(r()) a=1, b=2
g(3) a=3, b=nil, ... --> (nothing)
g(3, 4) a=3, b=4, ... --> (nothing)
g(3, 4, 5, 8) a=3, b=4, ... --> 5 8
g(5, r()) a=5, b=1, ... --> 2 3
</pre>
<p>
Results are returned using the <b>return</b> statement (see <a href="#2.4.4">§2.4.4</a>).
If control reaches the end of a function
without encountering a <b>return</b> statement,
then the function returns with no results.
<p>
The <em>colon</em> syntax
is used for defining <em>methods</em>,
that is, functions that have an implicit extra parameter <code>self</code>.
Thus, the statement
<pre>
function t.a.b.c:f (<em>params</em>) <em>body</em> end
</pre><p>
is syntactic sugar for
<pre>
t.a.b.c.f = function (self, <em>params</em>) <em>body</em> end
</pre>
<h2>2.6 - <a name="2.6">Visibility Rules</a></h2>
<p>
Lua is a lexically scoped language.
The scope of variables begins at the first statement <em>after</em>
their declaration and lasts until the end of the innermost block that
includes the declaration.
Consider the following example:
<pre>
x = 10 -- global variable
do -- new block
local x = x -- new 'x', with value 10
print(x) --> 10
x = x+1
do -- another block
local x = x+1 -- another 'x'
print(x) --> 12
end
print(x) --> 11
end
print(x) --> 10 (the global one)
</pre>
<p>
Notice that, in a declaration like <code>local x = x</code>,
the new <code>x</code> being declared is not in scope yet,
and so the second <code>x</code> refers to the outside variable.
<p>
Because of the lexical scoping rules,
local variables can be freely accessed by functions
defined inside their scope.
A local variable used by an inner function is called
an <em>upvalue</em>, or <em>external local variable</em>,
inside the inner function.
<p>
Notice that each execution of a <b>local</b> statement
defines new local variables.
Consider the following example:
<pre>
a = {}
local x = 20
for i=1,10 do
local y = 0
a[i] = function () y=y+1; return x+y end
end
</pre><p>
The loop creates ten closures
(that is, ten instances of the anonymous function).
Each of these closures uses a different <code>y</code> variable,
while all of them share the same <code>x</code>.
<h2>2.7 - <a name="2.7">Error Handling</a></h2>
<p>
Because Lua is an embedded extension language,
all Lua actions start from C code in the host program
calling a function from the Lua library (see <a href="#lua_pcall"><code>lua_pcall</code></a>).
Whenever an error occurs during Lua compilation or execution,
control returns to C,
which can take appropriate measures
(such as printing an error message).
<p>
Lua code can explicitly generate an error by calling the
<a href="#pdf-error"><code>error</code></a> function.
If you need to catch errors in Lua,
you can use the <a href="#pdf-pcall"><code>pcall</code></a> function.
<h2>2.8 - <a name="2.8">Metatables</a></h2>
<p>
Every value in Lua may have a <em>metatable</em>.
This <em>metatable</em> is an ordinary Lua table
that defines the behavior of the original value
under certain special operations.
You can change several aspects of the behavior
of operations over a value by setting specific fields in its metatable.
For instance, when a non-numeric value is the operand of an addition,
Lua checks for a function in the field <code>"__add"</code> in its metatable.
If it finds one,
Lua calls this function to perform the addition.
<p>
We call the keys in a metatable <em>events</em>
and the values <em>metamethods</em>.
In the previous example, the event is <code>"add"</code>
and the metamethod is the function that performs the addition.
<p>
You can query the metatable of any value
through the <a href="#pdf-getmetatable"><code>getmetatable</code></a> function.
<p>
You can replace the metatable of tables
through the <a href="#pdf-setmetatable"><code>setmetatable</code></a>
function.
You cannot change the metatable of other types from Lua
(except using the debug library);
you must use the C API for that.
<p>
Tables and userdata have individual metatables
(although multiple tables and userdata can share
a same table as their metatable);
values of all other types share one single metatable per type.
So, there is one single metatable for all numbers,
and for all strings, etc.
<p>
A metatable may control how an object behaves in arithmetic operations,
order comparisons, concatenation, length operation, and indexing.
A metatable can also define a function to be called when a userdata
is garbage collected.
For each of these operations Lua associates a specific key
called an <em>event</em>.
When Lua performs one of these operations over a value,
it checks whether this value has a metatable with the corresponding event.
If so, the value associated with that key (the metamethod)
controls how Lua will perform the operation.
<p>
Metatables control the operations listed next.
Each operation is identified by its corresponding name.
The key for each operation is a string with its name prefixed by
two underscores, '<code>__</code>';
for instance, the key for operation "add" is the
string <code>"__add"</code>.
The semantics of these operations is better explained by a Lua function
describing how the interpreter executes the operation.
<p>
The code shown here in Lua is only illustrative;
the real behavior is hard coded in the interpreter
and it is much more efficient than this simulation.
All functions used in these descriptions
(<a href="#pdf-rawget"><code>rawget</code></a>, <a href="#pdf-tonumber"><code>tonumber</code></a>, etc.)
are described in <a href="#5.1">§5.1</a>.
In particular, to retrieve the metamethod of a given object,
we use the expression
<pre>
metatable(obj)[event]
</pre><p>
This should be read as
<pre>
rawget(getmetatable(obj) or {}, event)
</pre><p>
That is, the access to a metamethod does not invoke other metamethods,
and the access to objects with no metatables does not fail
(it simply results in <b>nil</b>).
<ul>
<li><b>"add":</b>
the <code>+</code> operation.
<p>
The function <code>getbinhandler</code> below defines how Lua chooses a handler
for a binary operation.
First, Lua tries the first operand.
If its type does not define a handler for the operation,
then Lua tries the second operand.
<pre>
function getbinhandler (op1, op2, event)
return metatable(op1)[event] or metatable(op2)[event]
end
</pre><p>
By using this function,
the behavior of the <code>op1 + op2</code> is
<pre>
function add_event (op1, op2)
local o1, o2 = tonumber(op1), tonumber(op2)
if o1 and o2 then -- both operands are numeric?
return o1 + o2 -- '+' here is the primitive 'add'
else -- at least one of the operands is not numeric
local h = getbinhandler(op1, op2, "__add")
if h then
-- call the handler with both operands
return h(op1, op2)
else -- no handler available: default behavior
error(···)
end
end
end
</pre><p>
</li>
<li><b>"sub":</b>
the <code>-</code> operation.
Behavior similar to the "add" operation.
</li>
<li><b>"mul":</b>
the <code>*</code> operation.
Behavior similar to the "add" operation.
</li>
<li><b>"div":</b>
the <code>/</code> operation.
Behavior similar to the "add" operation.
</li>
<li><b>"mod":</b>
the <code>%</code> operation.
Behavior similar to the "add" operation,
with the operation
<code>o1 - floor(o1/o2)*o2</code> as the primitive operation.
</li>
<li><b>"pow":</b>
the <code>^</code> (exponentiation) operation.
Behavior similar to the "add" operation,
with the function <code>pow</code> (from the C math library)
as the primitive operation.
</li>
<li><b>"unm":</b>
the unary <code>-</code> operation.
<pre>
function unm_event (op)
local o = tonumber(op)
if o then -- operand is numeric?
return -o -- '-' here is the primitive 'unm'
else -- the operand is not numeric.
-- Try to get a handler from the operand
local h = metatable(op).__unm
if h then
-- call the handler with the operand
return h(op)
else -- no handler available: default behavior
error(···)
end
end
end
</pre><p>
</li>
<li><b>"concat":</b>
the <code>..</code> (concatenation) operation.
<pre>
function concat_event (op1, op2)
if (type(op1) == "string" or type(op1) == "number") and
(type(op2) == "string" or type(op2) == "number") then
return op1 .. op2 -- primitive string concatenation
else
local h = getbinhandler(op1, op2, "__concat")
if h then
return h(op1, op2)
else
error(···)
end
end
end
</pre><p>
</li>
<li><b>"len":</b>
the <code>#</code> operation.
<pre>
function len_event (op)
if type(op) == "string" then
return strlen(op) -- primitive string length
elseif type(op) == "table" then
return #op -- primitive table length
else
local h = metatable(op).__len
if h then
-- call the handler with the operand
return h(op)
else -- no handler available: default behavior
error(···)
end
end
end
</pre><p>
See <a href="#2.5.5">§2.5.5</a> for a description of the length of a table.
</li>
<li><b>"eq":</b>
the <code>==</code> operation.
The function <code>getcomphandler</code> defines how Lua chooses a metamethod
for comparison operators.
A metamethod only is selected when both objects
being compared have the same type
and the same metamethod for the selected operation.
<pre>
function getcomphandler (op1, op2, event)
if type(op1) ~= type(op2) then return nil end
local mm1 = metatable(op1)[event]
local mm2 = metatable(op2)[event]
if mm1 == mm2 then return mm1 else return nil end
end
</pre><p>
The "eq" event is defined as follows:
<pre>
function eq_event (op1, op2)
if type(op1) ~= type(op2) then -- different types?
return false -- different objects
end
if op1 == op2 then -- primitive equal?
return true -- objects are equal
end
-- try metamethod
local h = getcomphandler(op1, op2, "__eq")
if h then
return h(op1, op2)
else
return false
end
end
</pre><p>
<code>a ~= b</code> is equivalent to <code>not (a == b)</code>.
</li>
<li><b>"lt":</b>
the <code><</code> operation.
<pre>
function lt_event (op1, op2)
if type(op1) == "number" and type(op2) == "number" then
return op1 < op2 -- numeric comparison
elseif type(op1) == "string" and type(op2) == "string" then
return op1 < op2 -- lexicographic comparison
else
local h = getcomphandler(op1, op2, "__lt")
if h then
return h(op1, op2)
else
error(···);
end
end
end
</pre><p>
<code>a > b</code> is equivalent to <code>b < a</code>.
</li>
<li><b>"le":</b>
the <code><=</code> operation.
<pre>
function le_event (op1, op2)
if type(op1) == "number" and type(op2) == "number" then
return op1 <= op2 -- numeric comparison
elseif type(op1) == "string" and type(op2) == "string" then
return op1 <= op2 -- lexicographic comparison
else
local h = getcomphandler(op1, op2, "__le")
if h then
return h(op1, op2)
else
h = getcomphandler(op1, op2, "__lt")
if h then
return not h(op2, op1)
else
error(···);
end
end
end
end
</pre><p>
<code>a >= b</code> is equivalent to <code>b <= a</code>.
Note that, in the absence of a "le" metamethod,
Lua tries the "lt", assuming that <code>a <= b</code> is
equivalent to <code>not (b < a)</code>.
</li>
<li><b>"index":</b>
The indexing access <code>table[key]</code>.
<pre>
function gettable_event (table, key)
local h
if type(table) == "table" then
local v = rawget(table, key)
if v ~= nil then return v end
h = metatable(table).__index
if h == nil then return nil end
else
h = metatable(table).__index
if h == nil then
error(···);
end
end
if type(h) == "function" then
return h(table, key) -- call the handler
else return h[key] -- or repeat operation on it
end
end
</pre><p>
</li>
<li><b>"newindex":</b>
The indexing assignment <code>table[key] = value</code>.
<pre>
function settable_event (table, key, value)
local h
if type(table) == "table" then
local v = rawget(table, key)
if v ~= nil then rawset(table, key, value); return end
h = metatable(table).__newindex
if h == nil then rawset(table, key, value); return end
else
h = metatable(table).__newindex
if h == nil then
error(···);
end
end
if type(h) == "function" then
return h(table, key,value) -- call the handler
else h[key] = value -- or repeat operation on it
end
end
</pre><p>
</li>
<li><b>"call":</b>
called when Lua calls a value.
<pre>
function function_event (func, ...)
if type(func) == "function" then
return func(...) -- primitive call
else
local h = metatable(func).__call
if h then
return h(func, ...)
else
error(···)
end
end
end
</pre><p>
</li>
</ul>
<h2>2.9 - <a name="2.9">Environments</a></h2>
<p>
Besides metatables,
objects of types thread, function, and userdata
have another table associated with them,
called their <em>environment</em>.
Like metatables, environments are regular tables and
multiple objects can share the same environment.
<p>
Environments associated with userdata have no meaning for Lua.
It is only a convenience feature for programmers to associate a table to
a userdata.
<p>
Environments associated with threads are called
<em>global environments</em>.
They are used as the default environment for their threads and
non-nested functions created by the thread
(through <a href="#pdf-loadfile"><code>loadfile</code></a>, <a href="#pdf-loadstring"><code>loadstring</code></a> or <a href="#pdf-load"><code>load</code></a>)
and can be directly accessed by C code (see <a href="#3.3">§3.3</a>).
<p>
Environments associated with C functions can be directly
accessed by C code (see <a href="#3.3">§3.3</a>).
They are used as the default environment for other C functions
created by the function.
<p>
Environments associated with Lua functions are used to resolve
all accesses to global variables within the function (see <a href="#2.3">§2.3</a>).
They are used as the default environment for other Lua functions
created by the function.
<p>
You can change the environment of a Lua function or the
running thread by calling <a href="#pdf-setfenv"><code>setfenv</code></a>.
You can get the environment of a Lua function or the running thread
by calling <a href="#pdf-getfenv"><code>getfenv</code></a>.
To manipulate the environment of other objects
(userdata, C functions, other threads) you must
use the C API.
<h2>2.10 - <a name="2.10">Garbage Collection</a></h2>
<p>
Lua performs automatic memory management.
This means that
you have to worry neither about allocating memory for new objects
nor about freeing it when the objects are no longer needed.
Lua manages memory automatically by running
a <em>garbage collector</em> from time to time
to collect all <em>dead objects</em>
(that is, these objects that are no longer accessible from Lua).
All objects in Lua are subject to automatic management:
tables, userdata, functions, threads, and strings.
<p>
Lua implements an incremental mark-and-sweep collector.
It uses two numbers to control its garbage-collection cycles:
the <em>garbage-collector pause</em> and
the <em>garbage-collector step multiplier</em>.
<p>
The garbage-collector pause
controls how long the collector waits before starting a new cycle.
Larger values make the collector less aggressive.
Values smaller than 1 mean the collector will not wait to
start a new cycle.
A value of 2 means that the collector waits for the total memory in use
to double before starting a new cycle.
<p>
The step multiplier
controls the relative speed of the collector relative to
memory allocation.
Larger values make the collector more aggressive but also increase
the size of each incremental step.
Values smaller than 1 make the collector too slow and
may result in the collector never finishing a cycle.
The default, 2, means that the collector runs at "twice"
the speed of memory allocation.
<p>
You can change these numbers by calling <a href="#lua_gc"><code>lua_gc</code></a> in C
or <a href="#pdf-collectgarbage"><code>collectgarbage</code></a> in Lua.
Both get percentage points as arguments
(so an argument of 100 means a real value of 1).
With these functions you can also control
the collector directly (e.g., stop and restart it).
<h3>2.10.1 - <a name="2.10.1">Garbage-Collection Metamethods</a></h3>
<p>
Using the C API,
you can set garbage-collector metamethods for userdata (see <a href="#2.8">§2.8</a>).
These metamethods are also called <em>finalizers</em>.
Finalizers allow you to coordinate Lua's garbage collection
with external resource management
(such as closing files, network or database connections,
or freeing your own memory).
<p>
Garbage userdata with a field <code>__gc</code> in their metatables are not
collected immediately by the garbage collector.
Instead, Lua puts them in a list.
After the collection,
Lua does the equivalent of the following function
for each userdata in that list:
<pre>
function gc_event (udata)
local h = metatable(udata).__gc
if h then
h(udata)
end
end
</pre>
<p>
At the end of each garbage-collection cycle,
the finalizers for userdata are called in <em>reverse</em>
order of their creation,
among those collected in that cycle.
That is, the first finalizer to be called is the one associated
with the userdata created last in the program.
<h3>2.10.2 - <a name="2.10.2">Weak Tables</a></h3>
<p>
A <em>weak table</em> is a table whose elements are
<em>weak references</em>.
A weak reference is ignored by the garbage collector.
In other words,
if the only references to an object are weak references,
then the garbage collector will collect this object.
<p>
A weak table can have weak keys, weak values, or both.
A table with weak keys allows the collection of its keys,
but prevents the collection of its values.
A table with both weak keys and weak values allows the collection of
both keys and values.
In any case, if either the key or the value is collected,
the whole pair is removed from the table.
The weakness of a table is controlled by the value of the
<code>__mode</code> field of its metatable.
If the <code>__mode</code> field is a string containing the character '<code>k</code>',
the keys in the table are weak.
If <code>__mode</code> contains '<code>v</code>',
the values in the table are weak.
<p>
After you use a table as a metatable,
you should not change the value of its field <code>__mode</code>.
Otherwise, the weak behavior of the tables controlled by this
metatable is undefined.
<h2>2.11 - <a name="2.11">Coroutines</a></h2>
<p>
Lua supports coroutines,
also called <em>collaborative multithreading</em>.
A coroutine in Lua represents an independent thread of execution.
Unlike threads in multithread systems, however,
a coroutine only suspends its execution by explicitly calling
a yield function.
<p>
You create a coroutine with a call to <a href="#pdf-coroutine.create"><code>coroutine.create</code></a>.
Its sole argument is a function
that is the main function of the coroutine.
The <code>create</code> function only creates a new coroutine and
returns a handle to it (an object of type <em>thread</em>);
it does not start the coroutine execution.
<p>
When you first call <a href="#pdf-coroutine.resume"><code>coroutine.resume</code></a>,
passing as its first argument
the thread returned by <a href="#pdf-coroutine.create"><code>coroutine.create</code></a>,
the coroutine starts its execution,
at the first line of its main function.
Extra arguments passed to <a href="#pdf-coroutine.resume"><code>coroutine.resume</code></a> are passed on
to the coroutine main function.
After the coroutine starts running,
it runs until it terminates or <em>yields</em>.
<p>
A coroutine can terminate its execution in two ways:
normally, when its main function returns
(explicitly or implicitly, after the last instruction);
and abnormally, if there is an unprotected error.
In the first case, <a href="#pdf-coroutine.resume"><code>coroutine.resume</code></a> returns <b>true</b>,
plus any values returned by the coroutine main function.
In case of errors, <a href="#pdf-coroutine.resume"><code>coroutine.resume</code></a> returns <b>false</b>
plus an error message.
<p>
A coroutine yields by calling <a href="#pdf-coroutine.yield"><code>coroutine.yield</code></a>.
When a coroutine yields,
the corresponding <a href="#pdf-coroutine.resume"><code>coroutine.resume</code></a> returns immediately,
even if the yield happens inside nested function calls
(that is, not in the main function,
but in a function directly or indirectly called by the main function).
In the case of a yield, <a href="#pdf-coroutine.resume"><code>coroutine.resume</code></a> also returns <b>true</b>,
plus any values passed to <a href="#pdf-coroutine.yield"><code>coroutine.yield</code></a>.
The next time you resume the same coroutine,
it continues its execution from the point where it yielded,
with the call to <a href="#pdf-coroutine.yield"><code>coroutine.yield</code></a> returning any extra
arguments passed to <a href="#pdf-coroutine.resume"><code>coroutine.resume</code></a>.
<p>
The <a href="#pdf-coroutine.wrap"><code>coroutine.wrap</code></a> function creates a coroutine,
just like <a href="#pdf-coroutine.create"><code>coroutine.create</code></a>,
but instead of returning the coroutine itself,
it returns a function that, when called, resumes the coroutine.
Any arguments passed to this function
go as extra arguments to <a href="#pdf-coroutine.resume"><code>coroutine.resume</code></a>.
<a href="#pdf-coroutine.wrap"><code>coroutine.wrap</code></a> returns all the values returned by <a href="#pdf-coroutine.resume"><code>coroutine.resume</code></a>,
except the first one (the boolean error code).
Unlike <a href="#pdf-coroutine.resume"><code>coroutine.resume</code></a>,
<a href="#pdf-coroutine.wrap"><code>coroutine.wrap</code></a> does not catch errors;
any error is propagated to the caller.
<p>
As an example,
consider the following code:
<pre>
function foo (a)
print("foo", a)
return coroutine.yield(2*a)
end
co = coroutine.create(function (a,b)
print("co-body", a, b)
local r = foo(a+1)
print("co-body", r)
local r, s = coroutine.yield(a+b, a-b)
print("co-body", r, s)
return b, "end"
end)
print("main", coroutine.resume(co, 1, 10))
print("main", coroutine.resume(co, "r"))
print("main", coroutine.resume(co, "x", "y"))
print("main", coroutine.resume(co, "x", "y"))
</pre><p>
When you run it, it produces the following output:
<pre>
co-body 1 10
foo 2
main true 4
co-body r
main true 11 -9
co-body x y
main true 10 end
main false cannot resume dead coroutine
</pre>
<h1>3 - <a name="3">The Application Program Interface</a></h1>
<p>
This section describes the C API for Lua, that is,
the set of C functions available to the host program to communicate
with Lua.
All API functions and related types and constants
are declared in the header file <a name="pdf-lua.h"><code>lua.h</code></a>.
<p>
Even when we use the term "function",
any facility in the API may be provided as a macro instead.
All such macros use each of their arguments exactly once
(except for the first argument, which is always a Lua state),
and so do not generate any hidden side-effects.
<p>
As in most C libraries,
the Lua API functions do not check their arguments for validity or consistency.
However, you can change this behavior by compiling Lua
with a proper definition for the macro <a name="pdf-luai_apicheck"><code>luai_apicheck</code></a>,
in file <code>luaconf.h</code>.
<h2>3.1 - <a name="3.1">The Stack</a></h2>
<p>
Lua uses a <em>virtual stack</em> to pass values to and from C.
Each element in this stack represents a Lua value
(<b>nil</b>, number, string, etc.).
<p>
Whenever Lua calls C, the called function gets a new stack,
which is independent of previous stacks and of stacks of
C functions that are still active.
This stack initially contains any arguments to the C function
and it is where the C function pushes its results
to be returned to the caller (see <a href="#lua_CFunction"><code>lua_CFunction</code></a>).
<p>
For convenience,
most query operations in the API do not follow a strict stack discipline.
Instead, they can refer to any element in the stack
by using an <em>index</em>:
A positive index represents an <em>absolute</em> stack position
(starting at 1);
a negative index represents an <em>offset</em> relative to the top of the stack.
More specifically, if the stack has <em>n</em> elements,
then index 1 represents the first element
(that is, the element that was pushed onto the stack first)
and
index <em>n</em> represents the last element;
index -1 also represents the last element
(that is, the element at the top)
and index <em>-n</em> represents the first element.
We say that an index is <em>valid</em>
if it lies between 1 and the stack top
(that is, if <code>1 ≤ abs(index) ≤ top</code>).
<h2>3.2 - <a name="3.2">Stack Size</a></h2>
<p>
When you interact with Lua API,
you are responsible for ensuring consistency.
In particular,
<em>you are responsible for controlling stack overflow</em>.
You can use the function <a href="#lua_checkstack"><code>lua_checkstack</code></a>
to grow the stack size.
<p>
Whenever Lua calls C,
it ensures that at least <a name="pdf-LUA_MINSTACK"><code>LUA_MINSTACK</code></a> stack positions are available.
<code>LUA_MINSTACK</code> is defined as 20,
so that usually you do not have to worry about stack space
unless your code has loops pushing elements onto the stack.
<p>
Most query functions accept as indices any value inside the
available stack space, that is, indices up to the maximum stack size
you have set through <a href="#lua_checkstack"><code>lua_checkstack</code></a>.
Such indices are called <em>acceptable indices</em>.
More formally, we define an <em>acceptable index</em>
as follows:
<pre>
(index < 0 && abs(index) <= top) ||
(index > 0 && index <= stackspace)
</pre><p>
Note that 0 is never an acceptable index.
<h2>3.3 - <a name="3.3">Pseudo-Indices</a></h2>
<p>
Unless otherwise noted,
any function that accepts valid indices can also be called with
<em>pseudo-indices</em>,
which represent some Lua values that are accessible to C code
but which are not in the stack.
Pseudo-indices are used to access the thread environment,
the function environment,
the registry,
and the upvalues of a C function (see <a href="#3.4">§3.4</a>).
<p>
The thread environment (where global variables live) is
always at pseudo-index <a name="pdf-LUA_GLOBALSINDEX"><code>LUA_GLOBALSINDEX</code></a>.
The environment of the running C function is always
at pseudo-index <a name="pdf-LUA_ENVIRONINDEX"><code>LUA_ENVIRONINDEX</code></a>.
<p>
To access and change the value of global variables,
you can use regular table operations over an environment table.
For instance, to access the value of a global variable, do
<pre>
lua_getfield(L, LUA_GLOBALSINDEX, varname);
</pre>
<h2>3.4 - <a name="3.4">C Closures</a></h2>
<p>
When a C function is created,
it is possible to associate some values with it,
thus creating a <em>C closure</em>;
these values are called <em>upvalues</em> and are
accessible to the function whenever it is called
(see <a href="#lua_pushcclosure"><code>lua_pushcclosure</code></a>).
<p>
Whenever a C function is called,
its upvalues are located at specific pseudo-indices.
These pseudo-indices are produced by the macro
<a name="lua_upvalueindex"><code>lua_upvalueindex</code></a>.
The first value associated with a function is at position
<code>lua_upvalueindex(1)</code>, and so on.
Any access to <code>lua_upvalueindex(<em>n</em>)</code>,
where <em>n</em> is greater than the number of upvalues of the
current function,
produces an acceptable (but invalid) index.
<h2>3.5 - <a name="3.5">Registry</a></h2>
<p>
Lua provides a <em>registry</em>,
a pre-defined table that can be used by any C code to
store whatever Lua value it needs to store.
This table is always located at pseudo-index
<a name="pdf-LUA_REGISTRYINDEX"><code>LUA_REGISTRYINDEX</code></a>.
Any C library can store data into this table,
but it should take care to choose keys different from those used
by other libraries, to avoid collisions.
Typically, you should use as key a string containing your library name
or a light userdata with the address of a C object in your code.
<p>
The integer keys in the registry are used by the reference mechanism,
implemented by the auxiliary library,
and therefore should not be used for other purposes.
<h2>3.6 - <a name="3.6">Error Handling in C</a></h2>
<p>
Internally, Lua uses the C <code>longjmp</code> facility to handle errors.
(You can also choose to use exceptions if you use C++;
see file <code>luaconf.h</code>.)
When Lua faces any error
(such as memory allocation errors, type errors, syntax errors,
and runtime errors)
it <em>raises</em> an error;
that is, it does a long jump.
A <em>protected environment</em> uses <code>setjmp</code>
to set a recover point;
any error jumps to the most recent active recover point.
<p>
Almost any function in the API may raise an error,
for instance due to a memory allocation error.
The following functions run in protected mode
(that is, they create a protected environment to run),
so they never raise an error:
<a href="#lua_newstate"><code>lua_newstate</code></a>, <a href="#lua_close"><code>lua_close</code></a>, <a href="#lua_load"><code>lua_load</code></a>,
<a href="#lua_pcall"><code>lua_pcall</code></a>, and <a href="#lua_cpcall"><code>lua_cpcall</code></a>.
<p>
Inside a C function you can raise an error by calling <a href="#lua_error"><code>lua_error</code></a>.
<h2>3.7 - <a name="3.7">Functions and Types</a></h2>
<p>
Here we list all functions and types from the C API in
alphabetical order.
<hr><h3><a name="lua_Alloc"><code>lua_Alloc</code></a></h3>
<pre>typedef void * (*lua_Alloc) (void *ud,
void *ptr,
size_t osize,
size_t nsize);</pre>
<p>
The type of the memory-allocation function used by Lua states.
The allocator function must provide a
functionality similar to <code>realloc</code>,
but not exactly the same.
Its arguments are
<code>ud</code>, an opaque pointer passed to <a href="#lua_newstate"><code>lua_newstate</code></a>;
<code>ptr</code>, a pointer to the block being allocated/reallocated/freed;
<code>osize</code>, the original size of the block;
<code>nsize</code>, the new size of the block.
<code>ptr</code> is <code>NULL</code> if and only if <code>osize</code> is zero.
When <code>nsize</code> is zero, the allocator must return <code>NULL</code>;
if <code>osize</code> is not zero,
it should free the block pointed to by <code>ptr</code>.
When <code>nsize</code> is not zero, the allocator returns <code>NULL</code>
if and only if it cannot fill the request.
When <code>nsize</code> is not zero and <code>osize</code> is zero,
the allocator should behave like <code>malloc</code>.
When <code>nsize</code> and <code>osize</code> are not zero,
the allocator behaves like <code>realloc</code>.
Lua assumes that the allocator never fails when
<code>osize >= nsize</code>.
<p>
Here is a simple implementation for the allocator function.
It is used in the auxiliary library by <a href="#lua_newstate"><code>lua_newstate</code></a>.
<pre>
static void *l_alloc (void *ud, void *ptr, size_t osize, size_t nsize) {
(void)ud; /* not used */
(void)osize; /* not used */
if (nsize == 0) {
free(ptr); /* ANSI requires that free(NULL) has no effect */
return NULL;
}
else
/* ANSI requires that realloc(NULL, size) == malloc(size) */
return realloc(ptr, nsize);
}
</pre>
<hr><h3><a name="lua_atpanic"><code>lua_atpanic</code></a></h3>
<pre>lua_CFunction lua_atpanic (lua_State *L, lua_CFunction panicf);</pre>
<p>
Sets a new panic function and returns the old one.
<p>
If an error happens outside any protected environment,
Lua calls a <em>panic function</em>
and then calls <code>exit(EXIT_FAILURE)</code>,
thus exiting the host application.
Your panic function may avoid this exit by
never returning (e.g., doing a long jump).
<p>
The panic function can access the error message at the top of the stack.
<hr><h3><a name="lua_call"><code>lua_call</code></a></h3>
<pre>void lua_call (lua_State *L, int nargs, int nresults);</pre>
<p>
Calls a function.
<p>
To call a function you must use the following protocol:
first, the function to be called is pushed onto the stack;
then, the arguments to the function are pushed
in direct order;
that is, the first argument is pushed first.
Finally you call <a href="#lua_call"><code>lua_call</code></a>;
<code>nargs</code> is the number of arguments that you pushed onto the stack.
All arguments and the function value are popped from the stack
when the function is called.
The function results are pushed onto the stack when the function returns.
The number of results is adjusted to <code>nresults</code>,
unless <code>nresults</code> is <a name="pdf-LUA_MULTRET"><code>LUA_MULTRET</code></a>.
In this case, <em>all</em> results from the function are pushed.
Lua takes care that the returned values fit into the stack space.
The function results are pushed onto the stack in direct order
(the first result is pushed first),
so that after the call the last result is on the top of the stack.
<p>
Any error inside the called function is propagated upwards
(with a <code>longjmp</code>).
<p>
The following example shows how the host program may do the
equivalent to this Lua code:
<pre>
a = f("how", t.x, 14)
</pre><p>
Here it is in C:
<pre>
lua_getfield(L, LUA_GLOBALSINDEX, "f"); /* function to be called */
lua_pushstring(L, "how"); /* 1st argument */
lua_getfield(L, LUA_GLOBALSINDEX, "t"); /* table to be indexed */
lua_getfield(L, -1, "x"); /* push result of t.x (2nd arg) */
lua_remove(L, -2); /* remove 't' from the stack */
lua_pushinteger(L, 14); /* 3rd argument */
lua_call(L, 3, 1); /* call function with 3 arguments and 1 result */
lua_setfield(L, LUA_GLOBALSINDEX, "a"); /* set global variable 'a' */
</pre><p>
Note that the code above is "balanced":
at its end, the stack is back to its original configuration.
This is considered good programming practice.
<hr><h3><a name="lua_CFunction"><code>lua_CFunction</code></a></h3>
<pre>typedef int (*lua_CFunction) (lua_State *L);</pre>
<p>
Type for C functions.
<p>
In order to communicate properly with Lua,
a C function must use the following protocol,
which defines the way parameters and results are passed:
a C function receives its arguments from Lua in its stack
in direct order (the first argument is pushed first).
So, when the function starts,
<code>lua_gettop(L)</code> returns the number of arguments received by the function.
The first argument (if any) is at index 1
and its last argument is at index <code>lua_gettop(L)</code>.
To return values to Lua, a C function just pushes them onto the stack,
in direct order (the first result is pushed first),
and returns the number of results.
Any other value in the stack below the results will be properly
discarded by Lua.
Like a Lua function, a C function called by Lua can also return
many results.
<p>
As an example, the following function receives a variable number
of numerical arguments and returns their average and sum:
<pre>
static int foo (lua_State *L) {
int n = lua_gettop(L); /* number of arguments */
lua_Number sum = 0;
int i;
for (i = 1; i <= n; i++) {
if (!lua_isnumber(L, i)) {
lua_pushstring(L, "incorrect argument to function 'average'");
lua_error(L);
}
sum += lua_tonumber(L, i);
}
lua_pushnumber(L, sum/n); /* first result */
lua_pushnumber(L, sum); /* second result */
return 2; /* number of results */
}
</pre>
<hr><h3><a name="lua_checkstack"><code>lua_checkstack</code></a></h3>
<pre>int lua_checkstack (lua_State *L, int extra);</pre>
<p>
Ensures that there are at least <code>extra</code> free stack slots in the stack.
It returns false if it cannot grow the stack to that size.
This function never shrinks the stack;
if the stack is already larger than the new size,
it is left unchanged.
<hr><h3><a name="lua_close"><code>lua_close</code></a></h3>
<pre>void lua_close (lua_State *L);</pre>
<p>
Destroys all objects in the given Lua state
(calling the corresponding garbage-collection metamethods, if any)
and frees all dynamic memory used by this state.
On several platforms, you may not need to call this function,
because all resources are naturally released when the host program ends.
On the other hand, long-running programs,
such as a daemon or a web server,
might need to release states as soon as they are not needed,
to avoid growing too large.
<hr><h3><a name="lua_concat"><code>lua_concat</code></a></h3>
<pre>void lua_concat (lua_State *L, int n);</pre>
<p>
Concatenates the <code>n</code> values at the top of the stack,
pops them, and leaves the result at the top.
If <code>n</code> is 1, the result is the single string on the stack
(that is, the function does nothing);
if <code>n</code> is 0, the result is the empty string.
Concatenation is done following the usual semantics of Lua
(see <a href="#2.5.4">§2.5.4</a>).
<hr><h3><a name="lua_cpcall"><code>lua_cpcall</code></a></h3>
<pre>int lua_cpcall (lua_State *L, lua_CFunction func, void *ud);</pre>
<p>
Calls the C function <code>func</code> in protected mode.
<code>func</code> starts with only one element in its stack,
a light userdata containing <code>ud</code>.
In case of errors,
<a href="#lua_cpcall"><code>lua_cpcall</code></a> returns the same error codes as <a href="#lua_pcall"><code>lua_pcall</code></a>,
plus the error object on the top of the stack;
otherwise, it returns zero, and does not change the stack.
All values returned by <code>func</code> are discarded.
<hr><h3><a name="lua_createtable"><code>lua_createtable</code></a></h3>
<pre>void lua_createtable (lua_State *L, int narr, int nrec);</pre>
<p>
Creates a new empty table and pushes it onto the stack.
The new table has space pre-allocated
for <code>narr</code> array elements and <code>nrec</code> non-array elements.
This pre-allocation is useful when you know exactly how many elements
the table will have.
Otherwise you can use the function <a href="#lua_newtable"><code>lua_newtable</code></a>.
<hr><h3><a name="lua_dump"><code>lua_dump</code></a></h3>
<pre>int lua_dump (lua_State *L, lua_Writer writer, void *data);</pre>
<p>
Dumps a function as a binary chunk.
Receives a Lua function on the top of the stack
and produces a binary chunk that,
if loaded again,
results in a function equivalent to the one dumped.
As it produces parts of the chunk,
<a href="#lua_dump"><code>lua_dump</code></a> calls function <code>writer</code> (see <a href="#lua_Writer"><code>lua_Writer</code></a>)
with the given <code>data</code>
to write them.
<p>
The value returned is the error code returned by the last
call to the writer;
0 means no errors.
<p>
This function does not pop the Lua function from the stack.
<hr><h3><a name="lua_equal"><code>lua_equal</code></a></h3>
<pre>int lua_equal (lua_State *L, int index1, int index2);</pre>
<p>
Returns 1 if the two values in acceptable indices <code>index1</code> and
<code>index2</code> are equal,
following the semantics of the Lua <code>==</code> operator
(that is, may call metamethods).
Otherwise returns 0.
Also returns 0 if any of the indices is non valid.
<hr><h3><a name="lua_error"><code>lua_error</code></a></h3>
<pre>int lua_error (lua_State *L);</pre>
<p>
Generates a Lua error.
The error message (which can actually be a Lua value of any type)
must be on the stack top.
This function does a long jump,
and therefore never returns.
(see <a href="#luaL_error"><code>luaL_error</code></a>).
<hr><h3><a name="lua_gc"><code>lua_gc</code></a></h3>
<pre>int lua_gc (lua_State *L, int what, int data);</pre>
<p>
Controls the garbage collector.
<p>
This function performs several tasks,
according to the value of the parameter <code>what</code>:
<ul>
<li><b><code>LUA_GCSTOP</code>:</b>
stops the garbage collector.
</li>
<li><b><code>LUA_GCRESTART</code>:</b>
restarts the garbage collector.
</li>
<li><b><code>LUA_GCCOLLECT</code>:</b>
performs a full garbage-collection cycle.
</li>
<li><b><code>LUA_GCCOUNT</code>:</b>
returns the current amount of memory (in Kbytes) in use by Lua.
</li>
<li><b><code>LUA_GCCOUNTB</code>:</b>
returns the remainder of dividing the current amount of bytes of
memory in use by Lua by 1024.
</li>
<li><b><code>LUA_GCSTEP</code>:</b>
performs an incremental step of garbage collection.
The step "size" is controlled by <code>data</code>
(larger values mean more steps) in a non-specified way.
If you want to control the step size
you must experimentally tune the value of <code>data</code>.
The function returns 1 if the step finished a
garbage-collection cycle.
</li>
<li><b><code>LUA_GCSETPAUSE</code>:</b>
sets <code>data</code>/100 as the new value
for the <em>pause</em> of the collector (see <a href="#2.10">§2.10</a>).
The function returns the previous value of the pause.
</li>
<li><b><code>LUA_GCSETSTEPMUL</code>:</b>
sets <code>arg</code>/100 as the new value for the <em>step multiplier</em> of
the collector (see <a href="#2.10">§2.10</a>).
The function returns the previous value of the step multiplier.
</li>
</ul>
<hr><h3><a name="lua_getallocf"><code>lua_getallocf</code></a></h3>
<pre>lua_Alloc lua_getallocf (lua_State *L, void **ud);</pre>
<p>
Returns the memory-allocation function of a given state.
If <code>ud</code> is not <code>NULL</code>, Lua stores in <code>*ud</code> the
opaque pointer passed to <a href="#lua_newstate"><code>lua_newstate</code></a>.
<hr><h3><a name="lua_getfenv"><code>lua_getfenv</code></a></h3>
<pre>void lua_getfenv (lua_State *L, int index);</pre>
<p>
Pushes onto the stack the environment table of
the value at the given index.
<hr><h3><a name="lua_getfield"><code>lua_getfield</code></a></h3>
<pre>void lua_getfield (lua_State *L, int index, const char *k);</pre>
<p>
Pushes onto the stack the value <code>t[k]</code>,
where <code>t</code> is the value at the given valid index <code>index</code>.
As in Lua, this function may trigger a metamethod
for the "index" event (see <a href="#2.8">§2.8</a>).
<hr><h3><a name="lua_getglobal"><code>lua_getglobal</code></a></h3>
<pre>void lua_getglobal (lua_State *L, const char *name);</pre>
<p>
Pushes onto the stack the value of the global <code>name</code>.
It is defined as a macro:
<pre>
#define lua_getglobal(L,s) lua_getfield(L, LUA_GLOBALSINDEX, s)
</pre>
<hr><h3><a name="lua_getmetatable"><code>lua_getmetatable</code></a></h3>
<pre>int lua_getmetatable (lua_State *L, int index);</pre>
<p>
Pushes onto the stack the metatable of the value at the given
acceptable index.
If the index is not valid,
or if the value does not have a metatable,
the function returns 0 and pushes nothing on the stack.
<hr><h3><a name="lua_gettable"><code>lua_gettable</code></a></h3>
<pre>void lua_gettable (lua_State *L, int index);</pre>
<p>
Pushes onto the stack the value <code>t[k]</code>,
where <code>t</code> is the value at the given valid index <code>index</code>
and <code>k</code> is the value at the top of the stack.
<p>
This function pops the key from the stack
(putting the resulting value in its place).
As in Lua, this function may trigger a metamethod
for the "index" event (see <a href="#2.8">§2.8</a>).
<hr><h3><a name="lua_gettop"><code>lua_gettop</code></a></h3>
<pre>int lua_gettop (lua_State *L);</pre>
<p>
Returns the index of the top element in the stack.
Because indices start at 1,
this result is equal to the number of elements in the stack
(and so 0 means an empty stack).
<hr><h3><a name="lua_insert"><code>lua_insert</code></a></h3>
<pre>void lua_insert (lua_State *L, int index);</pre>
<p>
Moves the top element into the given valid index,
shifting up the elements above this index to open space.
Cannot be called with a pseudo-index,
because a pseudo-index is not an actual stack position.
<hr><h3><a name="lua_Integer"><code>lua_Integer</code></a></h3>
<pre>typedef ptrdiff_t lua_Integer;</pre>
<p>
The type used by the Lua API to represent integral values.
<p>
By default it is a <code>ptrdiff_t</code>,
which is usually the largest integral type the machine handles
"comfortably".
<hr><h3><a name="lua_isboolean"><code>lua_isboolean</code></a></h3>
<pre>int lua_isboolean (lua_State *L, int index);</pre>
<p>
Returns 1 if the value at the given acceptable index has type boolean,
and 0 otherwise.
<hr><h3><a name="lua_iscfunction"><code>lua_iscfunction</code></a></h3>
<pre>int lua_iscfunction (lua_State *L, int index);</pre>
<p>
Returns 1 if the value at the given acceptable index is a C function,
and 0 otherwise.
<hr><h3><a name="lua_isfunction"><code>lua_isfunction</code></a></h3>
<pre>int lua_isfunction (lua_State *L, int index);</pre>
<p>
Returns 1 if the value at the given acceptable index is a function
(either C or Lua), and 0 otherwise.
<hr><h3><a name="lua_islightuserdata"><code>lua_islightuserdata</code></a></h3>
<pre>int lua_islightuserdata (lua_State *L, int index);</pre>
<p>
Returns 1 if the value at the given acceptable index is a light userdata,
and 0 otherwise.
<hr><h3><a name="lua_isnil"><code>lua_isnil</code></a></h3>
<pre>int lua_isnil (lua_State *L, int index);</pre>
<p>
Returns 1 if the value at the given acceptable index is <b>nil</b>,
and 0 otherwise.
<hr><h3><a name="lua_isnumber"><code>lua_isnumber</code></a></h3>
<pre>int lua_isnumber (lua_State *L, int index);</pre>
<p>
Returns 1 if the value at the given acceptable index is a number
or a string convertible to a number,
and 0 otherwise.
<hr><h3><a name="lua_isstring"><code>lua_isstring</code></a></h3>
<pre>int lua_isstring (lua_State *L, int index);</pre>
<p>
Returns 1 if the value at the given acceptable index is a string
or a number (which is always convertible to a string),
and 0 otherwise.
<hr><h3><a name="lua_istable"><code>lua_istable</code></a></h3>
<pre>int lua_istable (lua_State *L, int index);</pre>
<p>
Returns 1 if the value at the given acceptable index is a table,
and 0 otherwise.
<hr><h3><a name="lua_isthread"><code>lua_isthread</code></a></h3>
<pre>int lua_isthread (lua_State *L, int index);</pre>
<p>
Returns 1 if the value at the given acceptable index is a thread,
and 0 otherwise.
<hr><h3><a name="lua_isuserdata"><code>lua_isuserdata</code></a></h3>
<pre>int lua_isuserdata (lua_State *L, int index);</pre>
<p>
Returns 1 if the value at the given acceptable index is a userdata
(either full or light), and 0 otherwise.
<hr><h3><a name="lua_lessthan"><code>lua_lessthan</code></a></h3>
<pre>int lua_lessthan (lua_State *L, int index1, int index2);</pre>
<p>
Returns 1 if the value at acceptable index <code>index1</code> is smaller
than the value at acceptable index <code>index2</code>,
following the semantics of the Lua <code><</code> operator
(that is, may call metamethods).
Otherwise returns 0.
Also returns 0 if any of the indices is non valid.
<hr><h3><a name="lua_load"><code>lua_load</code></a></h3>
<pre>int lua_load (lua_State *L,
lua_Reader reader,
void *data,
const char *chunkname);</pre>
<p>
Loads a Lua chunk.
If there are no errors,
<a href="#lua_load"><code>lua_load</code></a> pushes the compiled chunk as a Lua
function on top of the stack.
Otherwise, it pushes an error message.
The return values of <a href="#lua_load"><code>lua_load</code></a> are:
<ul>
<li><b>0:</b> no errors;</li>
<li><b><a name="pdf-LUA_ERRSYNTAX"><code>LUA_ERRSYNTAX</code></a>:</b>
syntax error during pre-compilation;</li>
<li><b><a href="#pdf-LUA_ERRMEM"><code>LUA_ERRMEM</code></a>:</b>
memory allocation error.</li>
</ul>
<p>
This function only loads a chunk;
it does not run it.
<p>
<a href="#lua_load"><code>lua_load</code></a> automatically detects whether the chunk is text or binary,
and loads it accordingly (see program <code>luac</code>).
<p>
<a href="#lua_load"><code>lua_load</code></a> uses a user-supplied <code>reader</code> function to read the chunk
(see <a href="#lua_Reader"><code>lua_Reader</code></a>).
The <code>data</code> argument is an opaque value passed to the reader function.
<p>
The <code>chunkname</code> argument gives a name to the chunk,
which is used for error messages and in debug information (see <a href="#3.8">§3.8</a>).
<hr><h3><a name="lua_newstate"><code>lua_newstate</code></a></h3>
<pre>lua_State *lua_newstate (lua_Alloc f, void *ud);</pre>
<p>
Creates a new, independent state.
Returns <code>NULL</code> if cannot create the state
(due to lack of memory).
The argument <code>f</code> is the allocator function;
Lua does all memory allocation for this state through this function.
The second argument, <code>ud</code>, is an opaque pointer that Lua
simply passes to the allocator in every call.
<hr><h3><a name="lua_newtable"><code>lua_newtable</code></a></h3>
<pre>void lua_newtable (lua_State *L);</pre>
<p>
Creates a new empty table and pushes it onto the stack.
It is equivalent to <code>lua_createtable(L, 0, 0)</code>.
<hr><h3><a name="lua_newthread"><code>lua_newthread</code></a></h3>
<pre>lua_State *lua_newthread (lua_State *L);</pre>
<p>
Creates a new thread, pushes it on the stack,
and returns a pointer to a <a href="#lua_State"><code>lua_State</code></a> that represents this new thread.
The new state returned by this function shares with the original state
all global objects (such as tables),
but has an independent execution stack.
<p>
There is no explicit function to close or to destroy a thread.
Threads are subject to garbage collection,
like any Lua object.
<hr><h3><a name="lua_newuserdata"><code>lua_newuserdata</code></a></h3>
<pre>void *lua_newuserdata (lua_State *L, size_t size);</pre>
<p>
This function allocates a new block of memory with the given size,
pushes onto the stack a new full userdata with the block address,
and returns this address.
<p>
Userdata represents C values in Lua.
A <em>full userdata</em> represents a block of memory.
It is an object (like a table):
you must create it, it can have its own metatable,
and you can detect when it is being collected.
A full userdata is only equal to itself (under raw equality).
<p>
When Lua collects a full userdata with a <code>gc</code> metamethod,
Lua calls the metamethod and marks the userdata as finalized.
When this userdata is collected again then
Lua frees its corresponding memory.
<hr><h3><a name="lua_next"><code>lua_next</code></a></h3>
<pre>int lua_next (lua_State *L, int index);</pre>
<p>
Pops a key from the stack,
and pushes a key-value pair from the table at the given index
(the "next" pair after the given key).
If there are no more elements in the table,
then <a href="#lua_next"><code>lua_next</code></a> returns 0 (and pushes nothing).
<p>
A typical traversal looks like this:
<pre>
/* table is in the stack at index 't' */
lua_pushnil(L); /* first key */
while (lua_next(L, t) != 0) {
/* 'key' is at index -2 and 'value' at index -1 */
printf("%s - %s\n",
lua_typename(L, lua_type(L, -2)), lua_typename(L, lua_type(L, -1)));
lua_pop(L, 1); /* removes 'value'; keeps 'key' for next iteration */
}
</pre>
<p>
While traversing a table,
do not call <a href="#lua_tolstring"><code>lua_tolstring</code></a> directly on a key,
unless you know that the key is actually a string.
Recall that <a href="#lua_tolstring"><code>lua_tolstring</code></a> <em>changes</em>
the value at the given index;
this confuses the next call to <a href="#lua_next"><code>lua_next</code></a>.
<hr><h3><a name="lua_Number"><code>lua_Number</code></a></h3>
<pre>typedef double lua_Number;</pre>
<p>
The type of numbers in Lua.
By default, it is double, but that can be changed in <code>luaconf.h</code>.
<p>
Through the configuration file you can change
Lua to operate with another type for numbers (e.g., float or long).
<hr><h3><a name="lua_objlen"><code>lua_objlen</code></a></h3>
<pre>size_t lua_objlen (lua_State *L, int index);</pre>
<p>
Returns the "length" of the value at the given acceptable index:
for strings, this is the string length;
for tables, this is the result of the length operator ('<code>#</code>');
for userdata, this is the size of the block of memory allocated
for the userdata;
for other values, it is 0.
<hr><h3><a name="lua_pcall"><code>lua_pcall</code></a></h3>
<pre>lua_pcall (lua_State *L, int nargs, int nresults, int errfunc);</pre>
<p>
Calls a function in protected mode.
<p>
Both <code>nargs</code> and <code>nresults</code> have the same meaning as
in <a href="#lua_call"><code>lua_call</code></a>.
If there are no errors during the call,
<a href="#lua_pcall"><code>lua_pcall</code></a> behaves exactly like <a href="#lua_call"><code>lua_call</code></a>.
However, if there is any error,
<a href="#lua_pcall"><code>lua_pcall</code></a> catches it,
pushes a single value on the stack (the error message),
and returns an error code.
Like <a href="#lua_call"><code>lua_call</code></a>,
<a href="#lua_pcall"><code>lua_pcall</code></a> always removes the function
and its arguments from the stack.
<p>
If <code>errfunc</code> is 0,
then the error message returned on the stack
is exactly the original error message.
Otherwise, <code>errfunc</code> is the stack index of an
<em>error handler function</em>.
(In the current implementation, this index cannot be a pseudo-index.)
In case of runtime errors,
this function will be called with the error message
and its return value will be the message returned on the stack by <a href="#lua_pcall"><code>lua_pcall</code></a>.
<p>
Typically, the error handler function is used to add more debug
information to the error message, such as a stack traceback.
Such information cannot be gathered after the return of <a href="#lua_pcall"><code>lua_pcall</code></a>,
since by then the stack has unwound.
<p>
The <a href="#lua_pcall"><code>lua_pcall</code></a> function returns 0 in case of success
or one of the following error codes
(defined in <code>lua.h</code>):
<ul>
<li><b><a name="pdf-LUA_ERRRUN"><code>LUA_ERRRUN</code></a>:</b>
a runtime error.
</li>
<li><b><a name="pdf-LUA_ERRMEM"><code>LUA_ERRMEM</code></a>:</b>
memory allocation error.
For such errors, Lua does not call the error handler function.
</li>
<li><b><a name="pdf-LUA_ERRERR"><code>LUA_ERRERR</code></a>:</b>
error while running the error handler function.
</li>
</ul>
<hr><h3><a name="lua_pop"><code>lua_pop</code></a></h3>
<pre>void lua_pop (lua_State *L, int n);</pre>
<p>
Pops <code>n</code> elements from the stack.
<hr><h3><a name="lua_pushboolean"><code>lua_pushboolean</code></a></h3>
<pre>void lua_pushboolean (lua_State *L, int b);</pre>
<p>
Pushes a boolean value with value <code>b</code> onto the stack.
<hr><h3><a name="lua_pushcclosure"><code>lua_pushcclosure</code></a></h3>
<pre>void lua_pushcclosure (lua_State *L, lua_CFunction fn, int n);</pre>
<p>
Pushes a new C closure onto the stack.
<p>
When a C function is created,
it is possible to associate some values with it,
thus creating a C closure (see <a href="#3.4">§3.4</a>);
these values are then accessible to the function whenever it is called.
To associate values with a C function,
first these values should be pushed onto the stack
(when there are multiple values, the first value is pushed first).
Then <a href="#lua_pushcclosure"><code>lua_pushcclosure</code></a>
is called to create and push the C function onto the stack,
with the argument <code>n</code> telling how many values should be
associated with the function.
<a href="#lua_pushcclosure"><code>lua_pushcclosure</code></a> also pops these values from the stack.
<hr><h3><a name="lua_pushcfunction"><code>lua_pushcfunction</code></a></h3>
<pre>void lua_pushcfunction (lua_State *L, lua_CFunction f);</pre>
<p>
Pushes a C function onto the stack.
This function receives a pointer to a C function
and pushes onto the stack a Lua value of type <code>function</code> that,
when called, invokes the corresponding C function.
<p>
Any function to be registered in Lua must
follow the correct protocol to receive its parameters
and return its results (see <a href="#lua_CFunction"><code>lua_CFunction</code></a>).
<p>
The call <code>lua_pushcfunction(L, f)</code> is equivalent to
<code>lua_pushcclosure(L, f, 0)</code>.
<hr><h3><a name="lua_pushfstring"><code>lua_pushfstring</code></a></h3>
<pre>const char *lua_pushfstring (lua_State *L, const char *fmt, ...);</pre>
<p>
Pushes onto the stack a formatted string
and returns a pointer to this string.
It is similar to the C function <code>sprintf</code>,
but has some important differences:
<ul>
<li>
You do not have to allocate space for the result:
the result is a Lua string and Lua takes care of memory allocation
(and deallocation, through garbage collection).
</li>
<li>
The conversion specifiers are quite restricted.
There are no flags, widths, or precisions.
The conversion specifiers can only be
'<code>%%</code>' (inserts a '<code>%</code>' in the string),
'<code>%s</code>' (inserts a zero-terminated string, with no size restrictions),
'<code>%f</code>' (inserts a <a href="#lua_Number"><code>lua_Number</code></a>),
'<code>%p</code>' (inserts a pointer as a hexadecimal numeral),
'<code>%d</code>' (inserts an <code>int</code>), and
'<code>%c</code>' (inserts an <code>int</code> as a character).
</li>
</ul>
<hr><h3><a name="lua_pushinteger"><code>lua_pushinteger</code></a></h3>
<pre>void lua_pushinteger (lua_State *L, lua_Integer n);</pre>
<p>
Pushes a number with value <code>n</code> onto the stack.
<hr><h3><a name="lua_pushlightuserdata"><code>lua_pushlightuserdata</code></a></h3>
<pre>void lua_pushlightuserdata (lua_State *L, void *p);</pre>
<p>
Pushes a light userdata onto the stack.
<p>
Userdata represents C values in Lua.
A <em>light userdata</em> represents a pointer.
It is a value (like a number):
you do not create it, it has no individual metatable,
and it is not collected (as it was never created).
A light userdata is equal to "any"
light userdata with the same C address.
<hr><h3><a name="lua_pushlstring"><code>lua_pushlstring</code></a></h3>
<pre>void lua_pushlstring (lua_State *L, const char *s, size_t len);</pre>
<p>
Pushes the string pointed to by <code>s</code> with size <code>len</code>
onto the stack.
Lua makes (or reuses) an internal copy of the given string,
so the memory at <code>s</code> can be freed or reused immediately after
the function returns.
The string can contain embedded zeros.
<hr><h3><a name="lua_pushnil"><code>lua_pushnil</code></a></h3>
<pre>void lua_pushnil (lua_State *L);</pre>
<p>
Pushes a nil value onto the stack.
<hr><h3><a name="lua_pushnumber"><code>lua_pushnumber</code></a></h3>
<pre>void lua_pushnumber (lua_State *L, lua_Number n);</pre>
<p>
Pushes a number with value <code>n</code> onto the stack.
<hr><h3><a name="lua_pushstring"><code>lua_pushstring</code></a></h3>
<pre>void lua_pushstring (lua_State *L, const char *s);</pre>
<p>
Pushes the zero-terminated string pointed to by <code>s</code>
onto the stack.
Lua makes (or reuses) an internal copy of the given string,
so the memory at <code>s</code> can be freed or reused immediately after
the function returns.
The string cannot contain embedded zeros;
it is assumed to end at the first zero.
<hr><h3><a name="lua_pushthread"><code>lua_pushthread</code></a></h3>
<pre>int lua_pushthread (lua_State *L);</pre>
<p>
Pushes the thread represented by <code>L</code> onto the stack.
Returns 1 if this thread is the main thread of its state.
<hr><h3><a name="lua_pushvalue"><code>lua_pushvalue</code></a></h3>
<pre>void lua_pushvalue (lua_State *L, int index);</pre>
<p>
Pushes a copy of the element at the given valid index
onto the stack.
<hr><h3><a name="lua_pushvfstring"><code>lua_pushvfstring</code></a></h3>
<pre>const char *lua_pushvfstring (lua_State *L,
const char *fmt,
va_list argp);</pre>
<p>
Equivalent to <a href="#lua_pushfstring"><code>lua_pushfstring</code></a>, except that it receives a <code>va_list</code>
instead of a variable number of arguments.
<hr><h3><a name="lua_rawequal"><code>lua_rawequal</code></a></h3>
<pre>int lua_rawequal (lua_State *L, int index1, int index2);</pre>
<p>
Returns 1 if the two values in acceptable indices <code>index1</code> and
<code>index2</code> are primitively equal
(that is, without calling metamethods).
Otherwise returns 0.
Also returns 0 if any of the indices are non valid.
<hr><h3><a name="lua_rawget"><code>lua_rawget</code></a></h3>
<pre>void lua_rawget (lua_State *L, int index);</pre>
<p>
Similar to <a href="#lua_gettable"><code>lua_gettable</code></a>, but does a raw access
(i.e., without metamethods).
<hr><h3><a name="lua_rawgeti"><code>lua_rawgeti</code></a></h3>
<pre>void lua_rawgeti (lua_State *L, int index, int n);</pre>
<p>
Pushes onto the stack the value <code>t[n]</code>,
where <code>t</code> is the value at the given valid index <code>index</code>.
The access is raw;
that is, it does not invoke metamethods.
<hr><h3><a name="lua_rawset"><code>lua_rawset</code></a></h3>
<pre>void lua_rawset (lua_State *L, int index);</pre>
<p>
Similar to <a href="#lua_settable"><code>lua_settable</code></a>, but does a raw assignment
(i.e., without metamethods).
<hr><h3><a name="lua_rawseti"><code>lua_rawseti</code></a></h3>
<pre>void lua_rawseti (lua_State *L, int index, int n);</pre>
<p>
Does the equivalent of <code>t[n] = v</code>,
where <code>t</code> is the value at the given valid index <code>index</code>
and <code>v</code> is the value at the top of the stack,
<p>
This function pops the value from the stack.
The assignment is raw;
that is, it does not invoke metamethods.
<hr><h3><a name="lua_Reader"><code>lua_Reader</code></a></h3>
<pre>typedef const char * (*lua_Reader) (lua_State *L,
void *data,
size_t *size);</pre>
<p>
The reader function used by <a href="#lua_load"><code>lua_load</code></a>.
Every time it needs another piece of the chunk,
<a href="#lua_load"><code>lua_load</code></a> calls the reader,
passing along its <code>data</code> parameter.
The reader must return a pointer to a block of memory
with a new piece of the chunk
and set <code>size</code> to the block size.
The block must exist until the reader function is called again.
To signal the end of the chunk, the reader must return <code>NULL</code>.
The reader function may return pieces of any size greater than zero.
<hr><h3><a name="lua_register"><code>lua_register</code></a></h3>
<pre>void lua_register (lua_State *L, const char *name, lua_CFunction f);</pre>
<p>
Sets the C function <code>f</code> as the new value of global <code>name</code>.
It is defined as a macro:
<pre>
#define lua_register(L,n,f) (lua_pushcfunction(L, f), lua_setglobal(L, n))
</pre>
<hr><h3><a name="lua_remove"><code>lua_remove</code></a></h3>
<pre>void lua_remove (lua_State *L, int index);</pre>
<p>
Removes the element at the given valid index,
shifting down the elements above this index to fill the gap.
Cannot be called with a pseudo-index,
because a pseudo-index is not an actual stack position.
<hr><h3><a name="lua_replace"><code>lua_replace</code></a></h3>
<pre>void lua_replace (lua_State *L, int index);</pre>
<p>
Moves the top element into the given position (and pops it),
without shifting any element
(therefore replacing the value at the given position).
<hr><h3><a name="lua_resume"><code>lua_resume</code></a></h3>
<pre>int lua_resume (lua_State *L, int narg);</pre>
<p>
Starts and resumes a coroutine in a given thread.
<p>
To start a coroutine, you first create a new thread
(see <a href="#lua_newthread"><code>lua_newthread</code></a>);
then you push onto its stack the main function plus any arguments;
then you call <a href="#lua_resume"><code>lua_resume</code></a>,
with <code>narg</code> being the number of arguments.
This call returns when the coroutine suspends or finishes its execution.
When it returns, the stack contains all values passed to <a href="#lua_yield"><code>lua_yield</code></a>,
or all values returned by the body function.
<a href="#lua_resume"><code>lua_resume</code></a> returns
<a href="#pdf-LUA_YIELD"><code>LUA_YIELD</code></a> if the coroutine yields,
0 if the coroutine finishes its execution
without errors,
or an error code in case of errors (see <a href="#lua_pcall"><code>lua_pcall</code></a>).
In case of errors,
the stack is not unwound,
so you can use the debug API over it.
The error message is on the top of the stack.
To restart a coroutine, you put on its stack only the values to
be passed as results from <code>yield</code>,
and then call <a href="#lua_resume"><code>lua_resume</code></a>.
<hr><h3><a name="lua_setallocf"><code>lua_setallocf</code></a></h3>
<pre>void lua_setallocf (lua_State *L, lua_Alloc f, void *ud);</pre>
<p>
Changes the allocator function of a given state to <code>f</code>
with user data <code>ud</code>.
<hr><h3><a name="lua_setfenv"><code>lua_setfenv</code></a></h3>
<pre>int lua_setfenv (lua_State *L, int index);</pre>
<p>
Pops a table from the stack and sets it as
the new environment for the value at the given index.
If the value at the given index is
neither a function nor a thread nor a userdata,
<a href="#lua_setfenv"><code>lua_setfenv</code></a> returns 0.
Otherwise it returns 1.
<hr><h3><a name="lua_setfield"><code>lua_setfield</code></a></h3>
<pre>void lua_setfield (lua_State *L, int index, const char *k);</pre>
<p>
Does the equivalent to <code>t[k] = v</code>,
where <code>t</code> is the value at the given valid index <code>index</code>
and <code>v</code> is the value at the top of the stack,
<p>
This function pops the value from the stack.
As in Lua, this function may trigger a metamethod
for the "newindex" event (see <a href="#2.8">§2.8</a>).
<hr><h3><a name="lua_setglobal"><code>lua_setglobal</code></a></h3>
<pre>void lua_setglobal (lua_State *L, const char *name);</pre>
<p>
Pops a value from the stack and
sets it as the new value of global <code>name</code>.
It is defined as a macro:
<pre>
#define lua_setglobal(L,s) lua_setfield(L, LUA_GLOBALSINDEX, s)
</pre>
<hr><h3><a name="lua_setmetatable"><code>lua_setmetatable</code></a></h3>
<pre>int lua_setmetatable (lua_State *L, int index);</pre>
<p>
Pops a table from the stack and
sets it as the new metatable for the value at the given
acceptable index.
<hr><h3><a name="lua_settable"><code>lua_settable</code></a></h3>
<pre>void lua_settable (lua_State *L, int index);</pre>
<p>
Does the equivalent to <code>t[k] = v</code>,
where <code>t</code> is the value at the given valid index <code>index</code>,
<code>v</code> is the value at the top of the stack,
and <code>k</code> is the value just below the top.
<p>
This function pops both the key and the value from the stack.
As in Lua, this function may trigger a metamethod
for the "newindex" event (see <a href="#2.8">§2.8</a>).
<hr><h3><a name="lua_settop"><code>lua_settop</code></a></h3>
<pre>void lua_settop (lua_State *L, int index);</pre>
<p>
Accepts any acceptable index, or 0,
and sets the stack top to this index.
If the new top is larger than the old one,
then the new elements are filled with <b>nil</b>.
If <code>index</code> is 0, then all stack elements are removed.
<hr><h3><a name="lua_State"><code>lua_State</code></a></h3>
<pre>typedef struct lua_State lua_State;</pre>
<p>
Opaque structure that keeps the whole state of a Lua interpreter.
The Lua library is fully reentrant:
it has no global variables.
All information about a state is kept in this structure.
<p>
A pointer to this state must be passed as the first argument to
every function in the library, except to <a href="#lua_newstate"><code>lua_newstate</code></a>,
which creates a Lua state from scratch.
<hr><h3><a name="lua_status"><code>lua_status</code></a></h3>
<pre>int lua_status (lua_State *L);</pre>
<p>
Returns the status of the thread <code>L</code>.
<p>
The status can be 0 for a normal thread,
an error code if the thread finished its execution with an error,
or <a name="pdf-LUA_YIELD"><code>LUA_YIELD</code></a> if the thread is suspended.
<hr><h3><a name="lua_toboolean"><code>lua_toboolean</code></a></h3>
<pre>int lua_toboolean (lua_State *L, int index);</pre>
<p>
Converts the Lua value at the given acceptable index to a C boolean
value (0 or 1).
Like all tests in Lua,
<a href="#lua_toboolean"><code>lua_toboolean</code></a> returns 1 for any Lua value
different from <b>false</b> and <b>nil</b>;
otherwise it returns 0.
It also returns 0 when called with a non-valid index.
(If you want to accept only actual boolean values,
use <a href="#lua_isboolean"><code>lua_isboolean</code></a> to test the value's type.)
<hr><h3><a name="lua_tocfunction"><code>lua_tocfunction</code></a></h3>
<pre>lua_CFunction lua_tocfunction (lua_State *L, int index);</pre>
<p>
Converts a value at the given acceptable index to a C function.
That value must be a C function;
otherwise, returns <code>NULL</code>.
<hr><h3><a name="lua_tointeger"><code>lua_tointeger</code></a></h3>
<pre>lua_Integer lua_tointeger (lua_State *L, int idx);</pre>
<p>
Converts the Lua value at the given acceptable index
to the signed integral type <a href="#lua_Integer"><code>lua_Integer</code></a>.
The Lua value must be a number or a string convertible to a number
(see <a href="#2.2.1">§2.2.1</a>);
otherwise, <a href="#lua_tointeger"><code>lua_tointeger</code></a> returns 0.
<p>
If the number is not an integer,
it is truncated in some non-specified way.
<hr><h3><a name="lua_tolstring"><code>lua_tolstring</code></a></h3>
<pre>const char *lua_tolstring (lua_State *L, int index, size_t *len);</pre>
<p>
Converts the Lua value at the given acceptable index to a string
(<code>const char*</code>).
If <code>len</code> is not <code>NULL</code>,
it also sets <code>*len</code> with the string length.
The Lua value must be a string or a number;
otherwise, the function returns <code>NULL</code>.
If the value is a number,
then <a href="#lua_tolstring"><code>lua_tolstring</code></a> also
<em>changes the actual value in the stack to a string</em>.
(This change confuses <a href="#lua_next"><code>lua_next</code></a>
when <a href="#lua_tolstring"><code>lua_tolstring</code></a> is applied to keys during a table traversal.)
<p>
<a href="#lua_tolstring"><code>lua_tolstring</code></a> returns a fully aligned pointer
to a string inside the Lua state.
This string always has a zero ('<code>\0</code>')
after its last character (as in C),
but may contain other zeros in its body.
Because Lua has garbage collection,
there is no guarantee that the pointer returned by <a href="#lua_tolstring"><code>lua_tolstring</code></a>
will be valid after the corresponding value is removed from the stack.
<hr><h3><a name="lua_tonumber"><code>lua_tonumber</code></a></h3>
<pre>lua_Number lua_tonumber (lua_State *L, int index);</pre>
<p>
Converts the Lua value at the given acceptable index
to a number (see <a href="#lua_Number"><code>lua_Number</code></a>).
The Lua value must be a number or a string convertible to a number
(see <a href="#2.2.1">§2.2.1</a>);
otherwise, <a href="#lua_tonumber"><code>lua_tonumber</code></a> returns 0.
<hr><h3><a name="lua_topointer"><code>lua_topointer</code></a></h3>
<pre>const void *lua_topointer (lua_State *L, int index);</pre>
<p>
Converts the value at the given acceptable index to a generic
C pointer (<code>void*</code>).
The value may be a userdata, a table, a thread, or a function;
otherwise, <a href="#lua_topointer"><code>lua_topointer</code></a> returns <code>NULL</code>.
Different objects will give different pointers.
There is no way to convert the pointer back to its original value.
<p>
Typically this function is used only for debug information.
<hr><h3><a name="lua_tostring"><code>lua_tostring</code></a></h3>
<pre>const char *lua_tostring (lua_State *L, int index);</pre>
<p>
Equivalent to <a href="#lua_tolstring"><code>lua_tolstring</code></a> with <code>len</code> equal to <code>NULL</code>.
<hr><h3><a name="lua_tothread"><code>lua_tothread</code></a></h3>
<pre>lua_State *lua_tothread (lua_State *L, int index);</pre>
<p>
Converts the value at the given acceptable index to a Lua thread
(represented as <code>lua_State*</code>).
This value must be a thread;
otherwise, the function returns <code>NULL</code>.
<hr><h3><a name="lua_touserdata"><code>lua_touserdata</code></a></h3>
<pre>void *lua_touserdata (lua_State *L, int index);</pre>
<p>
If the value at the given acceptable index is a full userdata,
returns its block address.
If the value is a light userdata,
returns its pointer.
Otherwise, returns <code>NULL</code>.
<hr><h3><a name="lua_type"><code>lua_type</code></a></h3>
<pre>int lua_type (lua_State *L, int index);</pre>
<p>
Returns the type of the value in the given acceptable index,
or <code>LUA_TNONE</code> for a non-valid index
(that is, an index to an "empty" stack position).
The types returned by <a href="#lua_type"><code>lua_type</code></a> are coded by the following constants
defined in <code>lua.h</code>:
<code>LUA_TNIL</code>,
<code>LUA_TNUMBER</code>,
<code>LUA_TBOOLEAN</code>,
<code>LUA_TSTRING</code>,
<code>LUA_TTABLE</code>,
<code>LUA_TFUNCTION</code>,
<code>LUA_TUSERDATA</code>,
<code>LUA_TTHREAD</code>,
and
<code>LUA_TLIGHTUSERDATA</code>.
<hr><h3><a name="lua_typename"><code>lua_typename</code></a></h3>
<pre>const char *lua_typename (lua_State *L, int tp);</pre>
<p>
Returns the name of the type encoded by the value <code>tp</code>,
which must be one the values returned by <a href="#lua_type"><code>lua_type</code></a>.
<hr><h3><a name="lua_Writer"><code>lua_Writer</code></a></h3>
<pre>typedef int (*lua_Writer) (lua_State *L,
const void* p,
size_t sz,
void* ud);</pre>
<p>
The writer function used by <a href="#lua_dump"><code>lua_dump</code></a>.
Every time it produces another piece of chunk,
<a href="#lua_dump"><code>lua_dump</code></a> calls the writer,
passing along the buffer to be written (<code>p</code>),
its size (<code>sz</code>),
and the <code>data</code> parameter supplied to <a href="#lua_dump"><code>lua_dump</code></a>.
<p>
The writer returns an error code:
0 means no errors;
any other value means an error and stops <a href="#lua_dump"><code>lua_dump</code></a> from
calling the writer again.
<hr><h3><a name="lua_xmove"><code>lua_xmove</code></a></h3>
<pre>void lua_xmove (lua_State *from, lua_State *to, int n);</pre>
<p>
Exchange values between different threads of the <em>same</em> global state.
<p>
This function pops <code>n</code> values from the stack <code>from</code>,
and pushes them onto the stack <code>to</code>.
<hr><h3><a name="lua_yield"><code>lua_yield</code></a></h3>
<pre>int lua_yield (lua_State *L, int nresults);</pre>
<p>
Yields a coroutine.
<p>
This function should only be called as the
return expression of a C function, as follows:
<pre>
return lua_yield (L, nresults);
</pre><p>
When a C function calls <a href="#lua_yield"><code>lua_yield</code></a> in that way,
the running coroutine suspends its execution,
and the call to <a href="#lua_resume"><code>lua_resume</code></a> that started this coroutine returns.
The parameter <code>nresults</code> is the number of values from the stack
that are passed as results to <a href="#lua_resume"><code>lua_resume</code></a>.
<h2>3.8 - <a name="3.8">The Debug Interface</a></h2>
<p>
Lua has no built-in debugging facilities.
Instead, it offers a special interface
by means of functions and <em>hooks</em>.
This interface allows the construction of different
kinds of debuggers, profilers, and other tools
that need "inside information" from the interpreter.
<hr><h3><a name="lua_Debug"><code>lua_Debug</code></a></h3>
<pre>typedef struct lua_Debug {
int event;
const char *name; /* (n) */
const char *namewhat; /* (n) */
const char *what; /* (S) */
const char *source; /* (S) */
int currentline; /* (l) */
int nups; /* (u) number of upvalues */
int linedefined; /* (S) */
int lastlinedefined; /* (S) */
char short_src[LUA_IDSIZE]; /* (S) */
/* private part */
<em>other fields</em>
} lua_Debug;</pre>
<p>
A structure used to carry different pieces of
information about an active function.
<a href="#lua_getstack"><code>lua_getstack</code></a> fills only the private part
of this structure, for later use.
To fill the other fields of <a href="#lua_Debug"><code>lua_Debug</code></a> with useful information,
call <a href="#lua_getinfo"><code>lua_getinfo</code></a>.
<p>
The fields of <a href="#lua_Debug"><code>lua_Debug</code></a> have the following meaning:
<ul>
<li><b><code>source</code>:</b>
If the function was defined in a string,
then <code>source</code> is that string.
If the function was defined in a file,
then <code>source</code> starts with a '<code>@</code>' followed by the file name.
</li>
<li><b><code>short_src</code>:</b>
a "printable" version of <code>source</code>, to be used in error messages.
</li>
<li><b><code>linedefined</code>:</b>
the line number where the definition of the function starts.
</li>
<li><b><code>lastlinedefined</code>:</b>
the line number where the definition of the function ends.
</li>
<li><b><code>what</code>:</b>
the string <code>"Lua"</code> if the function is a Lua function,
<code>"C"</code> if it is a C function,
<code>"main"</code> if it is the main part of a chunk,
and <code>"tail"</code> if it was a function that did a tail call.
In the latter case,
Lua has no other information about the function.
</li>
<li><b><code>currentline</code>:</b>
the current line where the given function is executing.
When no line information is available,
<code>currentline</code> is set to -1.
</li>
<li><b><code>name</code>:</b>
a reasonable name for the given function.
Because functions in Lua are first-class values,
they do not have a fixed name:
some functions may be the value of multiple global variables,
while others may be stored only in a table field.
The <code>lua_getinfo</code> function checks how the function was
called to find a suitable name.
If it cannot find a name,
then <code>name</code> is set to <code>NULL</code>.
</li>
<li><b><code>namewhat</code>:</b>
explains the <code>name</code> field.
The value of <code>namewhat</code> can be
<code>"global"</code>, <code>"local"</code>, <code>"method"</code>,
<code>"field"</code>, <code>"upvalue"</code>, or <code>""</code> (the empty string),
according to how the function was called.
(Lua uses the empty string when no other option seems to apply.)
</li>
<li><b><code>nups</code>:</b>
the number of upvalues of the function.
</li>
</ul>
<hr><h3><a name="lua_gethook"><code>lua_gethook</code></a></h3>
<pre>lua_Hook lua_gethook (lua_State *L);</pre>
<p>
Returns the current hook function.
<hr><h3><a name="lua_gethookcount"><code>lua_gethookcount</code></a></h3>
<pre>int lua_gethookcount (lua_State *L);</pre>
<p>
Returns the current hook count.
<hr><h3><a name="lua_gethookmask"><code>lua_gethookmask</code></a></h3>
<pre>int lua_gethookmask (lua_State *L);</pre>
<p>
Returns the current hook mask.
<hr><h3><a name="lua_getinfo"><code>lua_getinfo</code></a></h3>
<pre>int lua_getinfo (lua_State *L, const char *what, lua_Debug *ar);</pre>
<p>
Returns information about a specific function or function invocation.
<p>
To get information about a function invocation,
the parameter <code>ar</code> must be a valid activation record that was
filled by a previous call to <a href="#lua_getstack"><code>lua_getstack</code></a> or
given as argument to a hook (see <a href="#lua_Hook"><code>lua_Hook</code></a>).
<p>
To get information about a function you push it onto the stack
and start the <code>what</code> string with the character '<code>></code>'.
(In that case,
<code>lua_getinfo</code> pops the function in the top of the stack.)
For instance, to know in which line a function <code>f</code> was defined,
you can write the following code:
<pre>
lua_Debug ar;
lua_getfield(L, LUA_GLOBALSINDEX, "f"); /* get global 'f' */
lua_getinfo(L, ">S", &ar);
printf("%d\n", ar.linedefined);
</pre>
<p>
Each character in the string <code>what</code>
selects some fields of the structure <code>ar</code> to be filled or
a value to be pushed on the stack:
<ul>
<li><b>'<code>n</code>':</b> fills in the field <code>name</code> and <code>namewhat</code>;
</li>
<li><b>'<code>S</code>':</b>
fills in the fields <code>source</code>, <code>linedefined</code>,
<code>lastlinedefined</code>, <code>what</code>, and <code>short_src</code>;
</li>
<li><b>'<code>l</code>':</b> fills in the field <code>currentline</code>;
</li>
<li><b>'<code>u</code>':</b> fills in the field <code>nups</code>;
</li>
<li><b>'<code>f</code>':</b>
pushes onto the stack the function that is
running at the given level;
</li>
<li><b>'<code>L</code>':</b>
pushes onto the stack a table whose indices are the
numbers of the lines that are valid on the function.
(A <em>valid line</em> is a line with some associated code,
that is, a line where you can put a break point.
Non-valid lines include empty lines and comments.)
</li>
</ul>
<p>
This function returns 0 on error
(for instance, an invalid option in <code>what</code>).
<hr><h3><a name="lua_getlocal"><code>lua_getlocal</code></a></h3>
<pre>const char *lua_getlocal (lua_State *L, const lua_Debug *ar, int n);</pre>
<p>
Gets information about a local variable of a given activation record.
The parameter <code>ar</code> must be a valid activation record that was
filled by a previous call to <a href="#lua_getstack"><code>lua_getstack</code></a> or
given as argument to a hook (see <a href="#lua_Hook"><code>lua_Hook</code></a>).
The index <code>n</code> selects which local variable to inspect
(1 is the first parameter or active local variable, and so on,
until the last active local variable).
<a href="#lua_getlocal"><code>lua_getlocal</code></a> pushes the variable's value onto the stack
and returns its name.
<p>
Variable names starting with '<code>(</code>' (open parentheses)
represent internal variables
(loop control variables, temporaries, and C function locals).
<p>
Returns <code>NULL</code> (and pushes nothing)
when the index is greater than
the number of active local variables.
<hr><h3><a name="lua_getstack"><code>lua_getstack</code></a></h3>
<pre>int lua_getstack (lua_State *L, int level, lua_Debug *ar);</pre>
<p>
Get information about the interpreter runtime stack.
<p>
This function fills parts of a <a href="#lua_Debug"><code>lua_Debug</code></a> structure with
an identification of the <em>activation record</em>
of the function executing at a given level.
Level 0 is the current running function,
whereas level <em>n+1</em> is the function that has called level <em>n</em>.
When there are no errors, <a href="#lua_getstack"><code>lua_getstack</code></a> returns 1;
when called with a level greater than the stack depth,
it returns 0.
<hr><h3><a name="lua_getupvalue"><code>lua_getupvalue</code></a></h3>
<pre>const char *lua_getupvalue (lua_State *L, int funcindex, int n);</pre>
<p>
Gets information about a closure's upvalue.
(For Lua functions,
upvalues are the external local variables that the function uses,
and that are consequently included in its closure.)
<a href="#lua_getupvalue"><code>lua_getupvalue</code></a> gets the index <code>n</code> of an upvalue,
pushes the upvalue's value onto the stack,
and returns its name.
<code>funcindex</code> points to the closure in the stack.
(Upvalues have no particular order,
as they are active through the whole function.
So, they are numbered in an arbitrary order.)
<p>
Returns <code>NULL</code> (and pushes nothing)
when the index is greater than the number of upvalues.
For C functions, this function uses the empty string <code>""</code>
as a name for all upvalues.
<hr><h3><a name="lua_Hook"><code>lua_Hook</code></a></h3>
<pre>typedef void (*lua_Hook) (lua_State *L, lua_Debug *ar);</pre>
<p>
Type for debugging hook functions.
<p>
Whenever a hook is called, its <code>ar</code> argument has its field
<code>event</code> set to the specific event that triggered the hook.
Lua identifies these events with the following constants:
<a name="pdf-LUA_HOOKCALL"><code>LUA_HOOKCALL</code></a>, <a name="pdf-LUA_HOOKRET"><code>LUA_HOOKRET</code></a>,
<a name="pdf-LUA_HOOKTAILRET"><code>LUA_HOOKTAILRET</code></a>, <a name="pdf-LUA_HOOKLINE"><code>LUA_HOOKLINE</code></a>,
and <a name="pdf-LUA_HOOKCOUNT"><code>LUA_HOOKCOUNT</code></a>.
Moreover, for line events, the field <code>currentline</code> is also set.
To get the value of any other field in <code>ar</code>,
the hook must call <a href="#lua_getinfo"><code>lua_getinfo</code></a>.
For return events, <code>event</code> may be <code>LUA_HOOKRET</code>,
the normal value, or <code>LUA_HOOKTAILRET</code>.
In the latter case, Lua is simulating a return from
a function that did a tail call;
in this case, it is useless to call <a href="#lua_getinfo"><code>lua_getinfo</code></a>.
<p>
While Lua is running a hook, it disables other calls to hooks.
Therefore, if a hook calls back Lua to execute a function or a chunk,
this execution occurs without any calls to hooks.
<hr><h3><a name="lua_sethook"><code>lua_sethook</code></a></h3>
<pre>int lua_sethook (lua_State *L, lua_Hook func, int mask, int count);</pre>
<p>
Sets the debugging hook function.
<p>
<code>func</code> is the hook function.
<code>mask</code> specifies on which events the hook will be called:
it is formed by a bitwise or of the constants
<a name="pdf-LUA_MASKCALL"><code>LUA_MASKCALL</code></a>,
<a name="pdf-LUA_MASKRET"><code>LUA_MASKRET</code></a>,
<a name="pdf-LUA_MASKLINE"><code>LUA_MASKLINE</code></a>,
and <a name="pdf-LUA_MASKCOUNT"><code>LUA_MASKCOUNT</code></a>.
The <code>count</code> argument is only meaningful when the mask
includes <code>LUA_MASKCOUNT</code>.
For each event, the hook is called as explained below:
<ul>
<li><b>The call hook:</b> is called when the interpreter calls a function.
The hook is called just after Lua enters the new function,
before the function gets its arguments.
</li>
<li><b>The return hook:</b> is called when the interpreter returns from a function.
The hook is called just before Lua leaves the function.
You have no access to the values to be returned by the function.
</li>
<li><b>The line hook:</b> is called when the interpreter is about to
start the execution of a new line of code,
or when it jumps back in the code (even to the same line).
(This event only happens while Lua is executing a Lua function.)
</li>
<li><b>The count hook:</b> is called after the interpreter executes every
<code>count</code> instructions.
(This event only happens while Lua is executing a Lua function.)
</li>
</ul>
<p>
A hook is disabled by setting <code>mask</code> to zero.
<hr><h3><a name="lua_setlocal"><code>lua_setlocal</code></a></h3>
<pre>const char *lua_setlocal (lua_State *L, const lua_Debug *ar, int n);</pre>
<p>
Sets the value of a local variable of a given activation record.
Parameters <code>ar</code> and <code>n</code> are as in <a href="#lua_getlocal"><code>lua_getlocal</code></a>
(see <a href="#lua_getlocal"><code>lua_getlocal</code></a>).
<a href="#lua_setlocal"><code>lua_setlocal</code></a> assigns the value at the top of the stack
to the variable and returns its name.
It also pops the value from the stack.
<p>
Returns <code>NULL</code> (and pops nothing)
when the index is greater than
the number of active local variables.
<hr><h3><a name="lua_setupvalue"><code>lua_setupvalue</code></a></h3>
<pre>const char *lua_setupvalue (lua_State *L, int funcindex, int n);</pre>
<p>
Sets the value of a closure's upvalue.
Parameters <code>funcindex</code> and <code>n</code> are as in <a href="#lua_getupvalue"><code>lua_getupvalue</code></a>
(see <a href="#lua_getupvalue"><code>lua_getupvalue</code></a>).
It assigns the value at the top of the stack
to the upvalue and returns its name.
It also pops the value from the stack.
<p>
Returns <code>NULL</code> (and pops nothing)
when the index is greater than the number of upvalues.
<h1>4 - <a name="4">The Auxiliary Library</a></h1>
<p>
The <em>auxiliary library</em> provides several convenient functions
to interface C with Lua.
While the basic API provides the primitive functions for all
interactions between C and Lua,
the auxiliary library provides higher-level functions for some
common tasks.
<p>
All functions from the auxiliary library
are defined in header file <code>lauxlib.h</code> and
have a prefix <code>luaL_</code>.
<p>
All functions in the auxiliary library are built on
top of the basic API,
and so they provide nothing that cannot be done with this API.
<p>
Several functions in the auxiliary library are used to
check C function arguments.
Their names are always <code>luaL_check*</code> or <code>luaL_opt*</code>.
All of these functions raise an error if the check is not satisfied.
Because the error message is formatted for arguments
(e.g., "<code>bad argument #1</code>"),
you should not use these functions for other stack values.
<h2>4.1 - <a name="4.1">Functions and Types</a></h2>
<p>
Here we list all functions and types from the auxiliary library
in alphabetical order.
<hr><h3><a name="luaL_addchar"><code>luaL_addchar</code></a></h3>
<pre>void luaL_addchar (luaL_Buffer *B, char c);</pre>
<p>
Adds the character <code>c</code> to the buffer <code>B</code>
(see <a href="#luaL_Buffer"><code>luaL_Buffer</code></a>).
<hr><h3><a name="luaL_addlstring"><code>luaL_addlstring</code></a></h3>
<pre>void luaL_addlstring (luaL_Buffer *B, const char *s, size_t l);</pre>
<p>
Adds the string pointed to by <code>s</code> with length <code>l</code> to
the buffer <code>B</code>
(see <a href="#luaL_Buffer"><code>luaL_Buffer</code></a>).
The string may contain embedded zeros.
<hr><h3><a name="luaL_addsize"><code>luaL_addsize</code></a></h3>
<pre>void luaL_addsize (luaL_Buffer *B, size_t n);</pre>
<p>
Adds a string of length <code>n</code> previously copied to the
buffer area (see <a href="#luaL_prepbuffer"><code>luaL_prepbuffer</code></a>) to the buffer <code>B</code>
(see <a href="#luaL_Buffer"><code>luaL_Buffer</code></a>).
<hr><h3><a name="luaL_addstring"><code>luaL_addstring</code></a></h3>
<pre>void luaL_addstring (luaL_Buffer *B, const char *s);</pre>
<p>
Adds the zero-terminated string pointed to by <code>s</code>
to the buffer <code>B</code>
(see <a href="#luaL_Buffer"><code>luaL_Buffer</code></a>).
The string may not contain embedded zeros.
<hr><h3><a name="luaL_addvalue"><code>luaL_addvalue</code></a></h3>
<pre>void luaL_addvalue (luaL_Buffer *B);</pre>
<p>
Adds the value at the top of the stack
to the buffer <code>B</code>
(see <a href="#luaL_Buffer"><code>luaL_Buffer</code></a>).
Pops the value.
<p>
This is the only function on string buffers that can (and must)
be called with an extra element on the stack,
which is the value to be added to the buffer.
<hr><h3><a name="luaL_argcheck"><code>luaL_argcheck</code></a></h3>
<pre>void luaL_argcheck (lua_State *L,
int cond,
int numarg,
const char *extramsg);</pre>
<p>
Checks whether <code>cond</code> is true.
If not, raises an error with the following message,
where <code>func</code> is retrieved from the call stack:
<pre>
bad argument #<numarg> to <func> (<extramsg>)
</pre>
<hr><h3><a name="luaL_argerror"><code>luaL_argerror</code></a></h3>
<pre>int luaL_argerror (lua_State *L, int numarg, const char *extramsg);</pre>
<p>
Raises an error with the following message,
where <code>func</code> is retrieved from the call stack:
<pre>
bad argument #<numarg> to <func> (<extramsg>)
</pre>
<p>
This function never returns,
but it is an idiom to use it in C functions
as <code>return luaL_argerror(<em>args</em>)</code>.
<hr><h3><a name="luaL_Buffer"><code>luaL_Buffer</code></a></h3>
<pre>typedef struct luaL_Buffer luaL_Buffer;</pre>
<p>
Type for a <em>string buffer</em>.
<p>
A string buffer allows C code to build Lua strings piecemeal.
Its pattern of use is as follows:
<ul>
<li>First you declare a variable <code>b</code> of type <a href="#luaL_Buffer"><code>luaL_Buffer</code></a>.</li>
<li>Then you initialize it with a call <code>luaL_buffinit(L, &b)</code>.</li>
<li>
Then you add string pieces to the buffer calling any of
the <code>luaL_add*</code> functions.
</li>
<li>
You finish by calling <code>luaL_pushresult(&b)</code>.
This call leaves the final string on the top of the stack.
</li>
</ul>
<p>
During its normal operation,
a string buffer uses a variable number of stack slots.
So, while using a buffer, you cannot assume that you know where
the top of the stack is.
You can use the stack between successive calls to buffer operations
as long as that use is balanced;
that is,
when you call a buffer operation,
the stack is at the same level
it was immediately after the previous buffer operation.
(The only exception to this rule is <a href="#luaL_addvalue"><code>luaL_addvalue</code></a>.)
After calling <a href="#luaL_pushresult"><code>luaL_pushresult</code></a> the stack is back to its
level when the buffer was initialized,
plus the final string on its top.
<hr><h3><a name="luaL_buffinit"><code>luaL_buffinit</code></a></h3>
<pre>void luaL_buffinit (lua_State *L, luaL_Buffer *B);</pre>
<p>
Initializes a buffer <code>B</code>.
This function does not allocate any space;
the buffer must be declared as a variable
(see <a href="#luaL_Buffer"><code>luaL_Buffer</code></a>).
<hr><h3><a name="luaL_callmeta"><code>luaL_callmeta</code></a></h3>
<pre>int luaL_callmeta (lua_State *L, int obj, const char *e);</pre>
<p>
Calls a metamethod.
<p>
If the object at index <code>obj</code> has a metatable and this
metatable has a field <code>e</code>,
this function calls this field and passes the object as its only argument.
In this case this function returns 1 and pushes onto the
stack the value returned by the call.
If there is no metatable or no metamethod,
this function returns 0 (without pushing any value on the stack).
<hr><h3><a name="luaL_checkany"><code>luaL_checkany</code></a></h3>
<pre>void luaL_checkany (lua_State *L, int narg);</pre>
<p>
Checks whether the function has an argument
of any type (including <b>nil</b>) at position <code>narg</code>.
<hr><h3><a name="luaL_checkint"><code>luaL_checkint</code></a></h3>
<pre>int luaL_checkint (lua_State *L, int narg);</pre>
<p>
Checks whether the function argument <code>narg</code> is a number
and returns this number cast to an <code>int</code>.
<hr><h3><a name="luaL_checkinteger"><code>luaL_checkinteger</code></a></h3>
<pre>lua_Integer luaL_checkinteger (lua_State *L, int narg);</pre>
<p>
Checks whether the function argument <code>narg</code> is a number
and returns this number cast to a <a href="#lua_Integer"><code>lua_Integer</code></a>.
<hr><h3><a name="luaL_checklong"><code>luaL_checklong</code></a></h3>
<pre>long luaL_checklong (lua_State *L, int narg);</pre>
<p>
Checks whether the function argument <code>narg</code> is a number
and returns this number cast to a <code>long</code>.
<hr><h3><a name="luaL_checklstring"><code>luaL_checklstring</code></a></h3>
<pre>const char *luaL_checklstring (lua_State *L, int narg, size_t *l);</pre>
<p>
Checks whether the function argument <code>narg</code> is a string
and returns this string;
if <code>l</code> is not <code>NULL</code> fills <code>*l</code>
with the string's length.
<hr><h3><a name="luaL_checknumber"><code>luaL_checknumber</code></a></h3>
<pre>lua_Number luaL_checknumber (lua_State *L, int narg);</pre>
<p>
Checks whether the function argument <code>narg</code> is a number
and returns this number.
<hr><h3><a name="luaL_checkoption"><code>luaL_checkoption</code></a></h3>
<pre>int luaL_checkoption (lua_State *L,
int narg,
const char *def,
const char *const lst[]);</pre>
<p>
Checks whether the function argument <code>narg</code> is a string and
searches for this string in the array <code>lst</code>
(which must be NULL-terminated).
Returns the index in the array where the string was found.
Raises an error if the argument is not a string or
if the string cannot be found.
<p>
If <code>def</code> is not <code>NULL</code>,
the function uses <code>def</code> as a default value when
there is no argument <code>narg</code> or if this argument is <b>nil</b>.
<p>
This is a useful function for mapping strings to C enums.
(The usual convention in Lua libraries is
to use strings instead of numbers to select options.)
<hr><h3><a name="luaL_checkstack"><code>luaL_checkstack</code></a></h3>
<pre>void luaL_checkstack (lua_State *L, int sz, const char *msg);</pre>
<p>
Grows the stack size to <code>top + sz</code> elements,
raising an error if the stack cannot grow to that size.
<code>msg</code> is an additional text to go into the error message.
<hr><h3><a name="luaL_checkstring"><code>luaL_checkstring</code></a></h3>
<pre>const char *luaL_checkstring (lua_State *L, int narg);</pre>
<p>
Checks whether the function argument <code>narg</code> is a string
and returns this string.
<hr><h3><a name="luaL_checktype"><code>luaL_checktype</code></a></h3>
<pre>void luaL_checktype (lua_State *L, int narg, int t);</pre>
<p>
Checks whether the function argument <code>narg</code> has type <code>t</code>.
<hr><h3><a name="luaL_checkudata"><code>luaL_checkudata</code></a></h3>
<pre>void *luaL_checkudata (lua_State *L, int narg, const char *tname);</pre>
<p>
Checks whether the function argument <code>narg</code> is a userdata
of the type <code>tname</code> (see <a href="#luaL_newmetatable"><code>luaL_newmetatable</code></a>).
<hr><h3><a name="luaL_dofile"><code>luaL_dofile</code></a></h3>
<pre>int luaL_dofile (lua_State *L, const char *filename);</pre>
<p>
Loads and runs the given file.
It is defined as the following macro:
<pre>
(luaL_loadfile(L, filename) || lua_pcall(L, 0, LUA_MULTRET, 0))
</pre><p>
It returns 0 if there are no errors
or 1 in case of errors.
<hr><h3><a name="luaL_dostring"><code>luaL_dostring</code></a></h3>
<pre>int luaL_dostring (lua_State *L, const char *str);</pre>
<p>
Loads and runs the given string.
It is defined as the following macro:
<pre>
(luaL_loadstring(L, str) || lua_pcall(L, 0, LUA_MULTRET, 0))
</pre><p>
It returns 0 if there are no errors
or 1 in case of errors.
<hr><h3><a name="luaL_error"><code>luaL_error</code></a></h3>
<pre>int luaL_error (lua_State *L, const char *fmt, ...);</pre>
<p>
Raises an error.
The error message format is given by <code>fmt</code>
plus any extra arguments,
following the same rules of <a href="#lua_pushfstring"><code>lua_pushfstring</code></a>.
It also adds at the beginning of the message the file name and
the line number where the error occurred,
if this information is available.
<p>
This function never returns,
but it is an idiom to use it in C functions
as <code>return luaL_error(<em>args</em>)</code>.
<hr><h3><a name="luaL_getmetafield"><code>luaL_getmetafield</code></a></h3>
<pre>int luaL_getmetafield (lua_State *L, int obj, const char *e);</pre>
<p>
Pushes onto the stack the field <code>e</code> from the metatable
of the object at index <code>obj</code>.
If the object does not have a metatable,
or if the metatable does not have this field,
returns 0 and pushes nothing.
<hr><h3><a name="luaL_getmetatable"><code>luaL_getmetatable</code></a></h3>
<pre>void luaL_getmetatable (lua_State *L, const char *tname);</pre>
<p>
Pushes onto the stack the metatable associated with name <code>tname</code>
in the registry (see <a href="#luaL_newmetatable"><code>luaL_newmetatable</code></a>).
<hr><h3><a name="luaL_gsub"><code>luaL_gsub</code></a></h3>
<pre>const char *luaL_gsub (lua_State *L,
const char *s,
const char *p,
const char *r);</pre>
<p>
Creates a copy of string <code>s</code> by replacing
any occurrence of the string <code>p</code>
with the string <code>r</code>.
Pushes the resulting string on the stack and returns it.
<hr><h3><a name="luaL_loadbuffer"><code>luaL_loadbuffer</code></a></h3>
<pre>int luaL_loadbuffer (lua_State *L,
const char *buff,
size_t sz,
const char *name);</pre>
<p>
Loads a buffer as a Lua chunk.
This function uses <a href="#lua_load"><code>lua_load</code></a> to load the chunk in the
buffer pointed to by <code>buff</code> with size <code>sz</code>.
<p>
This function returns the same results as <a href="#lua_load"><code>lua_load</code></a>.
<code>name</code> is the chunk name,
used for debug information and error messages.
<hr><h3><a name="luaL_loadfile"><code>luaL_loadfile</code></a></h3>
<pre>int luaL_loadfile (lua_State *L, const char *filename);</pre>
<p>
Loads a file as a Lua chunk.
This function uses <a href="#lua_load"><code>lua_load</code></a> to load the chunk in the file
named <code>filename</code>.
If <code>filename</code> is <code>NULL</code>,
then it loads from the standard input.
The first line in the file is ignored if it starts with a <code>#</code>.
<p>
This function returns the same results as <a href="#lua_load"><code>lua_load</code></a>,
but it has an extra error code <a name="pdf-LUA_ERRFILE"><code>LUA_ERRFILE</code></a>
if it cannot open/read the file.
<p>
As <a href="#lua_load"><code>lua_load</code></a>, this function only loads the chunk;
it does not run it.
<hr><h3><a name="luaL_loadstring"><code>luaL_loadstring</code></a></h3>
<pre>int luaL_loadstring (lua_State *L, const char *s);</pre>
<p>
Loads a string as a Lua chunk.
This function uses <a href="#lua_load"><code>lua_load</code></a> to load the chunk in
the zero-terminated string <code>s</code>.
<p>
This function returns the same results as <a href="#lua_load"><code>lua_load</code></a>.
<p>
Also as <a href="#lua_load"><code>lua_load</code></a>, this function only loads the chunk;
it does not run it.
<hr><h3><a name="luaL_newmetatable"><code>luaL_newmetatable</code></a></h3>
<pre>int luaL_newmetatable (lua_State *L, const char *tname);</pre>
<p>
If the registry already has the key <code>tname</code>,
returns 0.
Otherwise,
creates a new table to be used as a metatable for userdata,
adds it to the registry with key <code>tname</code>,
and returns 1.
<p>
In both cases pushes onto the stack the final value associated
with <code>tname</code> in the registry.
<hr><h3><a name="luaL_newstate"><code>luaL_newstate</code></a></h3>
<pre>lua_State *luaL_newstate (void);</pre>
<p>
Creates a new Lua state, calling <a href="#lua_newstate"><code>lua_newstate</code></a> with an
allocation function based on the standard C <code>realloc</code> function
and setting a panic function (see <a href="#lua_atpanic"><code>lua_atpanic</code></a>) that prints
an error message to the standard error output in case of fatal
errors.
<p>
Returns the new state,
or <code>NULL</code> if there is a memory allocation error.
<hr><h3><a name="luaL_openlibs"><code>luaL_openlibs</code></a></h3>
<pre>void luaL_openlibs (lua_State *L);</pre>
<p>
Opens all standard Lua libraries into the given state.
<hr><h3><a name="luaL_optint"><code>luaL_optint</code></a></h3>
<pre>int luaL_optint (lua_State *L, int narg, int d);</pre>
<p>
If the function argument <code>narg</code> is a number,
returns this number cast to an <code>int</code>.
If this argument is absent or is <b>nil</b>,
returns <code>d</code>.
Otherwise, raises an error.
<hr><h3><a name="luaL_optinteger"><code>luaL_optinteger</code></a></h3>
<pre>lua_Integer luaL_optinteger (lua_State *L, int narg, lua_Integer d);</pre>
<p>
If the function argument <code>narg</code> is a number,
returns this number cast to a <a href="#lua_Integer"><code>lua_Integer</code></a>.
If this argument is absent or is <b>nil</b>,
returns <code>d</code>.
Otherwise, raises an error.
<hr><h3><a name="luaL_optlong"><code>luaL_optlong</code></a></h3>
<pre>long luaL_optlong (lua_State *L, int narg, long d);</pre>
<p>
If the function argument <code>narg</code> is a number,
returns this number cast to a <code>long</code>.
If this argument is absent or is <b>nil</b>,
returns <code>d</code>.
Otherwise, raises an error.
<hr><h3><a name="luaL_optlstring"><code>luaL_optlstring</code></a></h3>
<pre>const char *luaL_optlstring (lua_State *L,
int narg,
const char *d,
size_t *l);</pre>
<p>
If the function argument <code>narg</code> is a string,
returns this string.
If this argument is absent or is <b>nil</b>,
returns <code>d</code>.
Otherwise, raises an error.
<p>
If <code>l</code> is not <code>NULL</code>,
fills the position <code>*l</code> with the results's length.
<hr><h3><a name="luaL_optnumber"><code>luaL_optnumber</code></a></h3>
<pre>lua_Number luaL_optnumber (lua_State *L, int narg, lua_Number d);</pre>
<p>
If the function argument <code>narg</code> is a number,
returns this number.
If this argument is absent or is <b>nil</b>,
returns <code>d</code>.
Otherwise, raises an error.
<hr><h3><a name="luaL_optstring"><code>luaL_optstring</code></a></h3>
<pre>const char *luaL_optstring (lua_State *L, int narg, const char *d);</pre>
<p>
If the function argument <code>narg</code> is a string,
returns this string.
If this argument is absent or is <b>nil</b>,
returns <code>d</code>.
Otherwise, raises an error.
<hr><h3><a name="luaL_prepbuffer"><code>luaL_prepbuffer</code></a></h3>
<pre>char *luaL_prepbuffer (luaL_Buffer *B);</pre>
<p>
Returns an address to a space of size <a name="pdf-LUAL_BUFFERSIZE"><code>LUAL_BUFFERSIZE</code></a>
where you can copy a string to be added to buffer <code>B</code>
(see <a href="#luaL_Buffer"><code>luaL_Buffer</code></a>).
After copying the string into this space you must call
<a href="#luaL_addsize"><code>luaL_addsize</code></a> with the size of the string to actually add
it to the buffer.
<hr><h3><a name="luaL_pushresult"><code>luaL_pushresult</code></a></h3>
<pre>void luaL_pushresult (luaL_Buffer *B);</pre>
<p>
Finishes the use of buffer <code>B</code> leaving the final string on
the top of the stack.
<hr><h3><a name="luaL_ref"><code>luaL_ref</code></a></h3>
<pre>int luaL_ref (lua_State *L, int t);</pre>
<p>
Creates and returns a <em>reference</em>,
in the table at index <code>t</code>,
for the object at the top of the stack (and pops the object).
<p>
A reference is a unique integer key.
As long as you do not manually add integer keys into table <code>t</code>,
<a href="#luaL_ref"><code>luaL_ref</code></a> ensures the uniqueness of the key it returns.
You can retrieve an object referred by reference <code>r</code>
by calling <code>lua_rawgeti(L, t, r)</code>.
Function <a href="#luaL_unref"><code>luaL_unref</code></a> frees a reference and its associated object.
<p>
If the object at the top of the stack is <b>nil</b>,
<a href="#luaL_ref"><code>luaL_ref</code></a> returns the constant <a name="pdf-LUA_REFNIL"><code>LUA_REFNIL</code></a>.
The constant <a name="pdf-LUA_NOREF"><code>LUA_NOREF</code></a> is guaranteed to be different
from any reference returned by <a href="#luaL_ref"><code>luaL_ref</code></a>.
<hr><h3><a name="luaL_Reg"><code>luaL_Reg</code></a></h3>
<pre>typedef struct luaL_Reg {
const char *name;
lua_CFunction func;
} luaL_Reg;</pre>
<p>
Type for arrays of functions to be registered by
<a href="#luaL_register"><code>luaL_register</code></a>.
<code>name</code> is the function name and <code>func</code> is a pointer to
the function.
Any array of <a href="#luaL_Reg"><code>luaL_Reg</code></a> must end with an sentinel entry
in which both <code>name</code> and <code>func</code> are <code>NULL</code>.
<hr><h3><a name="luaL_register"><code>luaL_register</code></a></h3>
<pre>void luaL_register (lua_State *L,
const char *libname,
const luaL_Reg *l);</pre>
<p>
Opens a library.
<p>
When called with <code>libname</code> equal to <code>NULL</code>,
it simply registers all functions in the list <code>l</code>
(see <a href="#luaL_Reg"><code>luaL_Reg</code></a>) into the table on the top of the stack.
<p>
When called with a non-null <code>libname</code>,
creates a new table <code>t</code>,
sets it as the value of the global variable <code>libname</code>,
sets it as the value of <code>package.loaded[libname]</code>,
and registers on it all functions in the list <code>l</code>.
If there is a table in <code>package.loaded[libname]</code> or in
variable <code>libname</code>,
reuses this table instead of creating a new one.
<p>
In any case the function leaves the table
on the top of the stack.
<hr><h3><a name="luaL_typename"><code>luaL_typename</code></a></h3>
<pre>const char *luaL_typename (lua_State *L, int idx);</pre>
<p>
Returns the name of the type of the value at index <code>idx</code>.
<hr><h3><a name="luaL_typerror"><code>luaL_typerror</code></a></h3>
<pre>int luaL_typerror (lua_State *L, int narg, const char *tname);</pre>
<p>
Generates an error with a message like
<pre>
<location>: bad argument <narg> to <function> (<tname> expected, got <realt>)
</pre><p>
where <code><location></code> is produced by <a href="#luaL_where"><code>luaL_where</code></a>,
<code><function></code> is the name of the current function,
and <code><realt></code> is the type name of the actual argument.
<hr><h3><a name="luaL_unref"><code>luaL_unref</code></a></h3>
<pre>void luaL_unref (lua_State *L, int t, int ref);</pre>
<p>
Releases reference <code>ref</code> from the table at index <code>t</code>
(see <a href="#luaL_ref"><code>luaL_ref</code></a>).
The entry is removed from the table,
so that the referred object can be collected.
The reference <code>ref</code> is also freed to be used again.
<p>
If <code>ref</code> is <a href="#pdf-LUA_NOREF"><code>LUA_NOREF</code></a> or <a href="#pdf-LUA_REFNIL"><code>LUA_REFNIL</code></a>,
<a href="#luaL_unref"><code>luaL_unref</code></a> does nothing.
<hr><h3><a name="luaL_where"><code>luaL_where</code></a></h3>
<pre>void luaL_where (lua_State *L, int lvl);</pre>
<p>
Pushes onto the stack a string identifying the current position
of the control at level <code>lvl</code> in the call stack.
Typically this string has the format <code><chunkname>:<currentline>:</code>.
Level 0 is the running function,
level 1 is the function that called the running function,
etc.
<p>
This function is used to build a prefix for error messages.
<h1>5 - <a name="5">Standard Libraries</a></h1>
<p>
The standard Lua libraries provide useful functions
that are implemented directly through the C API.
Some of these functions provide essential services to the language
(e.g., <a href="#pdf-type"><code>type</code></a> and <a href="#pdf-getmetatable"><code>getmetatable</code></a>);
others provide access to "outside" services (e.g., I/O);
and others could be implemented in Lua itself,
but are quite useful or have critical performance requirements that
deserve an implementation in C (e.g., <code>sort</code>).
<p>
All libraries are implemented through the official C API
and are provided as separate C modules.
Currently, Lua has the following standard libraries:
<ul>
<li>basic library;</li>
<li>package library;</li>
<li>string manipulation;</li>
<li>table manipulation;</li>
<li>mathematical functions (sin, log, etc.);</li>
<li>input and output;</li>
<li>operating system facilities;</li>
<li>debug facilities.</li>
</ul><p>
Except for the basic and package libraries,
each library provides all its functions as fields of a global table
or as methods of its objects.
<p>
To have access to these libraries,
the C host program must call
<a href="#luaL_openlibs"><code>luaL_openlibs</code></a>,
which open all standard libraries.
Alternatively,
it can open them individually by calling
<a name="pdf-luaopen_base"><code>luaopen_base</code></a> (for the basic library),
<a name="pdf-luaopen_package"><code>luaopen_package</code></a> (for the package library),
<a name="pdf-luaopen_string"><code>luaopen_string</code></a> (for the string library),
<a name="pdf-luaopen_table"><code>luaopen_table</code></a> (for the table library),
<a name="pdf-luaopen_math"><code>luaopen_math</code></a> (for the mathematical library),
<a name="pdf-luaopen_io"><code>luaopen_io</code></a> (for the I/O and the Operating System libraries),
and <a name="pdf-luaopen_debug"><code>luaopen_debug</code></a> (for the debug library).
These functions are declared in <a name="pdf-lualib.h"><code>lualib.h</code></a>
and should not be called directly:
you must call them like any other Lua C function,
e.g., by using <a href="#lua_call"><code>lua_call</code></a>.
<h2>5.1 - <a name="5.1">Basic Functions</a></h2>
<p>
The basic library provides some core functions to Lua.
If you do not include this library in your application,
you should check carefully whether you need to provide
implementations for some of its facilities.
<p>
<hr><h3><a name="pdf-assert"><code>assert (v [, message])</code></a></h3>
Issues an error when
the value of its argument <code>v</code> is false (i.e., <b>nil</b> or <b>false</b>);
otherwise, returns all its arguments.
<code>message</code> is an error message;
when absent, it defaults to "assertion failed!"
<p>
<hr><h3><a name="pdf-collectgarbage"><code>collectgarbage (opt [, arg])</code></a></h3>
<p>
This function is a generic interface to the garbage collector.
It performs different functions according to its first argument, <code>opt</code>:
<ul>
<li><b>"stop":</b>
stops the garbage collector.
</li>
<li><b>"restart":</b>
restarts the garbage collector.
</li>
<li><b>"collect":</b>
performs a full garbage-collection cycle.
</li>
<li><b>"count":</b>
returns the total memory in use by Lua (in Kbytes).
</li>
<li><b>"step":</b>
performs a garbage-collection step.
The step "size" is controlled by <code>arg</code>
(larger values mean more steps) in a non-specified way.
If you want to control the step size
you must experimentally tune the value of <code>arg</code>.
Returns <b>true</b> if the step finished a collection cycle.
</li>
<li><b>"setpause":</b>
sets <code>arg</code>/100 as the new value for the <em>pause</em> of
the collector (see <a href="#2.10">§2.10</a>).
</li>
<li><b>"setstepmul":</b>
sets <code>arg</code>/100 as the new value for the <em>step multiplier</em> of
the collector (see <a href="#2.10">§2.10</a>).
</li>
</ul>
<p>
<hr><h3><a name="pdf-dofile"><code>dofile (filename)</code></a></h3>
Opens the named file and executes its contents as a Lua chunk.
When called without arguments,
<code>dofile</code> executes the contents of the standard input (<code>stdin</code>).
Returns all values returned by the chunk.
In case of errors, <code>dofile</code> propagates the error
to its caller (that is, <code>dofile</code> does not run in protected mode).
<p>
<hr><h3><a name="pdf-error"><code>error (message [, level])</code></a></h3>
Terminates the last protected function called
and returns <code>message</code> as the error message.
Function <code>error</code> never returns.
<p>
Usually, <code>error</code> adds some information about the error position
at the beginning of the message.
The <code>level</code> argument specifies how to get the error position.
With level 1 (the default), the error position is where the
<code>error</code> function was called.
Level 2 points the error to where the function
that called <code>error</code> was called; and so on.
Passing a level 0 avoids the addition of error position information
to the message.
<p>
<hr><h3><a name="pdf-_G"><code>_G</code></a></h3>
A global variable (not a function) that
holds the global environment (that is, <code>_G._G = _G</code>).
Lua itself does not use this variable;
changing its value does not affect any environment,
nor vice-versa.
(Use <a href="#pdf-setfenv"><code>setfenv</code></a> to change environments.)
<p>
<hr><h3><a name="pdf-getfenv"><code>getfenv (f)</code></a></h3>
Returns the current environment in use by the function.
<code>f</code> can be a Lua function or a number
that specifies the function at that stack level:
Level 1 is the function calling <code>getfenv</code>.
If the given function is not a Lua function,
or if <code>f</code> is 0,
<code>getfenv</code> returns the global environment.
The default for <code>f</code> is 1.
<p>
<hr><h3><a name="pdf-getmetatable"><code>getmetatable (object)</code></a></h3>
<p>
If <code>object</code> does not have a metatable, returns <b>nil</b>.
Otherwise,
if the object's metatable has a <code>"__metatable"</code> field,
returns the associated value.
Otherwise, returns the metatable of the given object.
<p>
<hr><h3><a name="pdf-ipairs"><code>ipairs (t)</code></a></h3>
<p>
Returns three values: an iterator function, the table <code>t</code>, and 0,
so that the construction
<pre>
for i,v in ipairs(t) do <em>body</em> end
</pre><p>
will iterate over the pairs (<code>1,t[1]</code>), (<code>2,t[2]</code>), ···,
up to the first integer key absent from the table.
<p>
See <a href="#pdf-next"><code>next</code></a> for the caveats of modifying the table during its traversal.
<p>
<hr><h3><a name="pdf-load"><code>load (func [, chunkname])</code></a></h3>
<p>
Loads a chunk using function <code>func</code> to get its pieces.
Each call to <code>func</code> must return a string that concatenates
with previous results.
A return of <b>nil</b> (or no value) signals the end of the chunk.
<p>
If there are no errors,
returns the compiled chunk as a function;
otherwise, returns <b>nil</b> plus the error message.
The environment of the returned function is the global environment.
<p>
<code>chunkname</code> is used as the chunk name for error messages
and debug information.
<p>
<hr><h3><a name="pdf-loadfile"><code>loadfile ([filename])</code></a></h3>
<p>
Similar to <a href="#pdf-load"><code>load</code></a>,
but gets the chunk from file <code>filename</code>
or from the standard input,
if no file name is given.
<p>
<hr><h3><a name="pdf-loadstring"><code>loadstring (string [, chunkname])</code></a></h3>
<p>
Similar to <a href="#pdf-load"><code>load</code></a>,
but gets the chunk from the given string.
<p>
To load and run a given string, use the idiom
<pre>
assert(loadstring(s))()
</pre>
<p>
<hr><h3><a name="pdf-next"><code>next (table [, index])</code></a></h3>
<p>
Allows a program to traverse all fields of a table.
Its first argument is a table and its second argument
is an index in this table.
<code>next</code> returns the next index of the table
and its associated value.
When called with <b>nil</b> as its second argument,
<code>next</code> returns an initial index
and its associated value.
When called with the last index,
or with <b>nil</b> in an empty table,
<code>next</code> returns <b>nil</b>.
If the second argument is absent, then it is interpreted as <b>nil</b>.
In particular,
you can use <code>next(t)</code> to check whether a table is empty.
<p>
The order in which the indices are enumerated is not specified,
<em>even for numeric indices</em>.
(To traverse a table in numeric order,
use a numerical <b>for</b> or the <a href="#pdf-ipairs"><code>ipairs</code></a> function.)
<p>
The behavior of <code>next</code> is <em>undefined</em> if,
during the traversal,
you assign any value to a non-existent field in the table.
You may however modify existing fields.
In particular, you may clear existing fields.
<p>
<hr><h3><a name="pdf-pairs"><code>pairs (t)</code></a></h3>
<p>
Returns three values: the <a href="#pdf-next"><code>next</code></a> function, the table <code>t</code>, and <b>nil</b>,
so that the construction
<pre>
for k,v in pairs(t) do <em>body</em> end
</pre><p>
will iterate over all key–value pairs of table <code>t</code>.
<p>
See <a href="#pdf-next"><code>next</code></a> for the caveats of modifying the table during its traversal.
<p>
<hr><h3><a name="pdf-pcall"><code>pcall (f, arg1, ···)</code></a></h3>
<p>
Calls function <code>f</code> with
the given arguments in <em>protected mode</em>.
This means that any error inside <code>f</code> is not propagated;
instead, <code>pcall</code> catches the error
and returns a status code.
Its first result is the status code (a boolean),
which is true if the call succeeds without errors.
In such case, <code>pcall</code> also returns all results from the call,
after this first result.
In case of any error, <code>pcall</code> returns <b>false</b> plus the error message.
<p>
<hr><h3><a name="pdf-print"><code>print (···)</code></a></h3>
Receives any number of arguments,
and prints their values to <code>stdout</code>,
using the <a href="#pdf-tostring"><code>tostring</code></a> function to convert them to strings.
<code>print</code> is not intended for formatted output,
but only as a quick way to show a value,
typically for debugging.
For formatted output, use <a href="#pdf-string.format"><code>string.format</code></a>.
<p>
<hr><h3><a name="pdf-rawequal"><code>rawequal (v1, v2)</code></a></h3>
Checks whether <code>v1</code> is equal to <code>v2</code>,
without invoking any metamethod.
Returns a boolean.
<p>
<hr><h3><a name="pdf-rawget"><code>rawget (table, index)</code></a></h3>
Gets the real value of <code>table[index]</code>,
without invoking any metamethod.
<code>table</code> must be a table;
<code>index</code> may be any value.
<p>
<hr><h3><a name="pdf-rawset"><code>rawset (table, index, value)</code></a></h3>
Sets the real value of <code>table[index]</code> to <code>value</code>,
without invoking any metamethod.
<code>table</code> must be a table,
<code>index</code> any value different from <b>nil</b>,
and <code>value</code> any Lua value.
<p>
This function returns <code>table</code>.
<p>
<hr><h3><a name="pdf-select"><code>select (index, ···)</code></a></h3>
<p>
If <code>index</code> is a number,
returns all arguments after argument number <code>index</code>.
Otherwise, <code>index</code> must be the string <code>"#"</code>,
and <code>select</code> returns the total number of extra arguments it received.
<p>
<hr><h3><a name="pdf-setfenv"><code>setfenv (f, table)</code></a></h3>
<p>
Sets the environment to be used by the given function.
<code>f</code> can be a Lua function or a number
that specifies the function at that stack level:
Level 1 is the function calling <code>setfenv</code>.
<code>setfenv</code> returns the given function.
<p>
As a special case, when <code>f</code> is 0 <code>setfenv</code> changes
the environment of the running thread.
In this case, <code>setfenv</code> returns no values.
<p>
<hr><h3><a name="pdf-setmetatable"><code>setmetatable (table, metatable)</code></a></h3>
<p>
Sets the metatable for the given table.
(You cannot change the metatable of other types from Lua, only from C.)
If <code>metatable</code> is <b>nil</b>,
removes the metatable of the given table.
If the original metatable has a <code>"__metatable"</code> field,
raises an error.
<p>
This function returns <code>table</code>.
<p>
<hr><h3><a name="pdf-tonumber"><code>tonumber (e [, base])</code></a></h3>
Tries to convert its argument to a number.
If the argument is already a number or a string convertible
to a number, then <code>tonumber</code> returns this number;
otherwise, it returns <b>nil</b>.
<p>
An optional argument specifies the base to interpret the numeral.
The base may be any integer between 2 and 36, inclusive.
In bases above 10, the letter '<code>A</code>' (in either upper or lower case)
represents 10, '<code>B</code>' represents 11, and so forth,
with '<code>Z</code>' representing 35.
In base 10 (the default), the number may have a decimal part,
as well as an optional exponent part (see <a href="#2.1">§2.1</a>).
In other bases, only unsigned integers are accepted.
<p>
<hr><h3><a name="pdf-tostring"><code>tostring (e)</code></a></h3>
Receives an argument of any type and
converts it to a string in a reasonable format.
For complete control of how numbers are converted,
use <a href="#pdf-string.format"><code>string.format</code></a>.
<p>
If the metatable of <code>e</code> has a <code>"__tostring"</code> field,
then <code>tostring</code> calls the corresponding value
with <code>e</code> as argument,
and uses the result of the call as its result.
<p>
<hr><h3><a name="pdf-type"><code>type (v)</code></a></h3>
Returns the type of its only argument, coded as a string.
The possible results of this function are
"<code>nil</code>" (a string, not the value <b>nil</b>),
"<code>number</code>",
"<code>string</code>",
"<code>boolean</code>",
"<code>table</code>",
"<code>function</code>",
"<code>thread</code>",
and "<code>userdata</code>".
<p>
<hr><h3><a name="pdf-unpack"><code>unpack (list [, i [, j]])</code></a></h3>
Returns the elements from the given table.
This function is equivalent to
<pre>
return list[i], list[i+1], ···, list[j]
</pre><p>
except that the above code can be written only for a fixed number
of elements.
By default, <code>i</code> is 1 and <code>j</code> is the length of the list,
as defined by the length operator (see <a href="#2.5.5">§2.5.5</a>).
<p>
<hr><h3><a name="pdf-_VERSION"><code>_VERSION</code></a></h3>
A global variable (not a function) that
holds a string containing the current interpreter version.
The current contents of this variable is "<code>Lua 5.1</code>".
<p>
<hr><h3><a name="pdf-xpcall"><code>xpcall (f, err)</code></a></h3>
<p>
This function is similar to <code>pcall</code>,
except that you can set a new error handler.
<p>
<code>xpcall</code> calls function <code>f</code> in protected mode,
using <code>err</code> as the error handler.
Any error inside <code>f</code> is not propagated;
instead, <code>xpcall</code> catches the error,
calls the <code>err</code> function with the original error object,
and returns a status code.
Its first result is the status code (a boolean),
which is true if the call succeeds without errors.
In this case, <code>xpcall</code> also returns all results from the call,
after this first result.
In case of any error,
<code>xpcall</code> returns <b>false</b> plus the result from <code>err</code>.
<h2>5.2 - <a name="5.2">Coroutine Manipulation</a></h2>
<p>
The operations related to coroutines comprise a sub-library of
the basic library and come inside the table <a name="pdf-coroutine"><code>coroutine</code></a>.
See <a href="#2.11">§2.11</a> for a general description of coroutines.
<p>
<hr><h3><a name="pdf-coroutine.create"><code>coroutine.create (f)</code></a></h3>
<p>
Creates a new coroutine, with body <code>f</code>.
<code>f</code> must be a Lua function.
Returns this new coroutine,
an object with type <code>"thread"</code>.
<p>
<hr><h3><a name="pdf-coroutine.resume"><code>coroutine.resume (co [, val1, ···])</code></a></h3>
<p>
Starts or continues the execution of coroutine <code>co</code>.
The first time you resume a coroutine,
it starts running its body.
The values <code>val1</code>, ··· are passed
as the arguments to the body function.
If the coroutine has yielded,
<code>resume</code> restarts it;
the values <code>val1</code>, ··· are passed
as the results from the yield.
<p>
If the coroutine runs without any errors,
<code>resume</code> returns <b>true</b> plus any values passed to <code>yield</code>
(if the coroutine yields) or any values returned by the body function
(if the coroutine terminates).
If there is any error,
<code>resume</code> returns <b>false</b> plus the error message.
<p>
<hr><h3><a name="pdf-coroutine.running"><code>coroutine.running ()</code></a></h3>
<p>
Returns the running coroutine,
or <b>nil</b> when called by the main thread.
<p>
<hr><h3><a name="pdf-coroutine.status"><code>coroutine.status (co)</code></a></h3>
<p>
Returns the status of coroutine <code>co</code>, as a string:
<code>"running"</code>,
if the coroutine is running (that is, it called <code>status</code>);
<code>"suspended"</code>, if the coroutine is suspended in a call to <code>yield</code>,
or if it has not started running yet;
<code>"normal"</code> if the coroutine is active but not running
(that is, it has resumed another coroutine);
and <code>"dead"</code> if the coroutine has finished its body function,
or if it has stopped with an error.
<p>
<hr><h3><a name="pdf-coroutine.wrap"><code>coroutine.wrap (f)</code></a></h3>
<p>
Creates a new coroutine, with body <code>f</code>.
<code>f</code> must be a Lua function.
Returns a function that resumes the coroutine each time it is called.
Any arguments passed to the function behave as the
extra arguments to <code>resume</code>.
Returns the same values returned by <code>resume</code>,
except the first boolean.
In case of error, propagates the error.
<p>
<hr><h3><a name="pdf-coroutine.yield"><code>coroutine.yield (···)</code></a></h3>
<p>
Suspends the execution of the calling coroutine.
The coroutine cannot be running a C function,
a metamethod, or an iterator.
Any arguments to <code>yield</code> are passed as extra results to <code>resume</code>.
<h2>5.3 - <a name="5.3">Modules</a></h2>
<p>
The package library provides basic
facilities for loading and building modules in Lua.
It exports two of its functions directly in the global environment:
<a href="#pdf-require"><code>require</code></a> and <a href="#pdf-module"><code>module</code></a>.
Everything else is exported in a table <a name="pdf-package"><code>package</code></a>.
<p>
<hr><h3><a name="pdf-module"><code>module (name [, ···])</code></a></h3>
<p>
Creates a module.
If there is a table in <code>package.loaded[name]</code>,
this table is the module.
Otherwise, if there is a global table <code>t</code> with the given name,
this table is the module.
Otherwise creates a new table <code>t</code> and
sets it as the value of the global <code>name</code> and
the value of <code>package.loaded[name]</code>.
This function also initializes <code>t._NAME</code> with the given name,
<code>t._M</code> with the module (<code>t</code> itself),
and <code>t._PACKAGE</code> with the package name
(the full module name minus last component; see below).
Finally, <code>module</code> sets <code>t</code> as the new environment
of the current function and the new value of <code>package.loaded[name]</code>,
so that <a href="#pdf-require"><code>require</code></a> returns <code>t</code>.
<p>
If <code>name</code> is a compound name
(that is, one with components separated by dots),
<code>module</code> creates (or reuses, if they already exist)
tables for each component.
For instance, if <code>name</code> is <code>a.b.c</code>,
then <code>module</code> stores the module table in field <code>c</code> of
field <code>b</code> of global <code>a</code>.
<p>
This function may receive optional <em>options</em> after
the module name,
where each option is a function to be applied over the module.
<p>
<hr><h3><a name="pdf-require"><code>require (modname)</code></a></h3>
<p>
Loads the given module.
The function starts by looking into the table <a href="#pdf-package.loaded"><code>package.loaded</code></a>
to determine whether <code>modname</code> is already loaded.
If it is, then <code>require</code> returns the value stored
at <code>package.loaded[modname]</code>.
Otherwise, it tries to find a <em>loader</em> for the module.
<p>
To find a loader,
first <code>require</code> queries <code>package.preload[modname]</code>.
If it has a value,
this value (which should be a function) is the loader.
Otherwise <code>require</code> searches for a Lua loader using the
path stored in <a href="#pdf-package.path"><code>package.path</code></a>.
If that also fails, it searches for a C loader using the
path stored in <a href="#pdf-package.cpath"><code>package.cpath</code></a>.
If that also fails,
it tries an <em>all-in-one</em> loader (see below).
<p>
When loading a C library,
<code>require</code> first uses a dynamic link facility to link the
application with the library.
Then it tries to find a C function inside this library to
be used as the loader.
The name of this C function is the string "<code>luaopen_</code>"
concatenated with a copy of the module name where each dot
is replaced by an underscore.
Moreover, if the module name has a hyphen,
its prefix up to (and including) the first hyphen is removed.
For instance, if the module name is <code>a.v1-b.c</code>,
the function name will be <code>luaopen_b_c</code>.
<p>
If <code>require</code> finds neither a Lua library nor a
C library for a module,
it calls the <em>all-in-one loader</em>.
This loader searches the C path for a library for
the root name of the given module.
For instance, when requiring <code>a.b.c</code>,
it will search for a C library for <code>a</code>.
If found, it looks into it for an open function for
the submodule;
in our example, that would be <code>luaopen_a_b_c</code>.
With this facility, a package can pack several C submodules
into one single library,
with each submodule keeping its original open function.
<p>
Once a loader is found,
<code>require</code> calls the loader with a single argument, <code>modname</code>.
If the loader returns any value,
<code>require</code> assigns it to <code>package.loaded[modname]</code>.
If the loader returns no value and
has not assigned any value to <code>package.loaded[modname]</code>,
then <code>require</code> assigns <b>true</b> to this entry.
In any case, <code>require</code> returns the
final value of <code>package.loaded[modname]</code>.
<p>
If there is any error loading or running the module,
or if it cannot find any loader for the module,
then <code>require</code> signals an error.
<p>
<hr><h3><a name="pdf-package.cpath"><code>package.cpath</code></a></h3>
<p>
The path used by <a href="#pdf-require"><code>require</code></a> to search for a C loader.
<p>
Lua initializes the C path <a href="#pdf-package.cpath"><code>package.cpath</code></a> in the same way
it initializes the Lua path <a href="#pdf-package.path"><code>package.path</code></a>,
using the environment variable <a name="pdf-LUA_CPATH"><code>LUA_CPATH</code></a>
(plus another default path defined in <code>luaconf.h</code>).
<p>
<hr><h3><a name="pdf-package.loaded"><code>package.loaded</code></a></h3>
<p>
A table used by <a href="#pdf-require"><code>require</code></a> to control which
modules are already loaded.
When you require a module <code>modname</code> and
<code>package.loaded[modname]</code> is not false,
<a href="#pdf-require"><code>require</code></a> simply returns the value stored there.
<p>
<hr><h3><a name="pdf-package.loadlib"><code>package.loadlib (libname, funcname)</code></a></h3>
<p>
Dynamically links the host program with the C library <code>libname</code>.
Inside this library, looks for a function <code>funcname</code>
and returns this function as a C function.
(So, <code>funcname</code> must follow the protocol (see <a href="#lua_CFunction"><code>lua_CFunction</code></a>)).
<p>
This is a low-level function.
It completely bypasses the package and module system.
Unlike <a href="#pdf-require"><code>require</code></a>,
it does not perform any path searching and
does not automatically adds extensions.
<code>libname</code> must be the complete file name of the C library,
including if necessary a path and extension.
<code>funcname</code> must be the exact name exported by the C library
(which may depend on the C compiler and linker used).
<p>
This function is not supported by ANSI C.
As such, it is only available on some platforms
(Windows, Linux, Mac OS X, Solaris, BSD,
plus other Unix systems that support the <code>dlfcn</code> standard).
<p>
<hr><h3><a name="pdf-package.path"><code>package.path</code></a></h3>
<p>
The path used by <a href="#pdf-require"><code>require</code></a> to search for a Lua loader.
<p>
At start-up, Lua initializes this variable with
the value of the environment variable <a name="pdf-LUA_PATH"><code>LUA_PATH</code></a> or
with a default path defined in <code>luaconf.h</code>,
if the environment variable is not defined.
Any "<code>;;</code>" in the value of the environment variable
is replaced by the default path.
<p>
A path is a sequence of <em>templates</em> separated by semicolons.
For each template, <a href="#pdf-require"><code>require</code></a> will change each interrogation
mark in the template by <code>filename</code>,
which is <code>modname</code> with each dot replaced by a
"directory separator" (such as "<code>/</code>" in Unix);
then it will try to load the resulting file name.
So, for instance, if the Lua path is
<pre>
"./?.lua;./?.lc;/usr/local/?/init.lua"
</pre><p>
the search for a Lua loader for module <code>foo</code>
will try to load the files
<code>./foo.lua</code>, <code>./foo.lc</code>, and
<code>/usr/local/foo/init.lua</code>, in that order.
<p>
<hr><h3><a name="pdf-package.preload"><code>package.preload</code></a></h3>
<p>
A table to store loaders for specific modules
(see <a href="#pdf-require"><code>require</code></a>).
<p>
<hr><h3><a name="pdf-package.seeall"><code>package.seeall (module)</code></a></h3>
<p>
Sets a metatable for <code>module</code> with
its <code>__index</code> field referring to the global environment,
so that this module inherits values
from the global environment.
To be used as an option to function <a href="#pdf-module"><code>module</code></a>.
<h2>5.4 - <a name="5.4">String Manipulation</a></h2>
<p>
This library provides generic functions for string manipulation,
such as finding and extracting substrings, and pattern matching.
When indexing a string in Lua, the first character is at position 1
(not at 0, as in C).
Indices are allowed to be negative and are interpreted as indexing backwards,
from the end of the string.
Thus, the last character is at position -1, and so on.
<p>
The string library provides all its functions inside the table
<a name="pdf-string"><code>string</code></a>.
It also sets a metatable for strings
where the <code>__index</code> field points to the <code>string</code> table.
Therefore, you can use the string functions in object-oriented style.
For instance, <code>string.byte(s, i)</code>
can be written as <code>s:byte(i)</code>.
<p>
<hr><h3><a name="pdf-string.byte"><code>string.byte (s [, i [, j]])</code></a></h3>
Returns the internal numerical codes of the characters <code>s[i]</code>,
<code>s[i+1]</code>, ···, <code>s[j]</code>.
The default value for <code>i</code> is 1;
the default value for <code>j</code> is <code>i</code>.
<p>
Note that numerical codes are not necessarily portable across platforms.
<p>
<hr><h3><a name="pdf-string.char"><code>string.char (···)</code></a></h3>
Receives zero or more integers.
Returns a string with length equal to the number of arguments,
in which each character has the internal numerical code equal
to its corresponding argument.
<p>
Note that numerical codes are not necessarily portable across platforms.
<p>
<hr><h3><a name="pdf-string.dump"><code>string.dump (function)</code></a></h3>
<p>
Returns a string containing a binary representation of the given function,
so that a later <a href="#pdf-loadstring"><code>loadstring</code></a> on this string returns
a copy of the function.
<code>function</code> must be a Lua function without upvalues.
<p>
<hr><h3><a name="pdf-string.find"><code>string.find (s, pattern [, init [, plain]])</code></a></h3>
Looks for the first match of
<code>pattern</code> in the string <code>s</code>.
If it finds a match, then <code>find</code> returns the indices of <code>s</code>
where this occurrence starts and ends;
otherwise, it returns <b>nil</b>.
A third, optional numerical argument <code>init</code> specifies
where to start the search;
its default value is 1 and may be negative.
A value of <b>true</b> as a fourth, optional argument <code>plain</code>
turns off the pattern matching facilities,
so the function does a plain "find substring" operation,
with no characters in <code>pattern</code> being considered "magic".
Note that if <code>plain</code> is given, then <code>init</code> must be given as well.
<p>
If the pattern has captures,
then in a successful match
the captured values are also returned,
after the two indices.
<p>
<hr><h3><a name="pdf-string.format"><code>string.format (formatstring, ···)</code></a></h3>
Returns a formatted version of its variable number of arguments
following the description given in its first argument (which must be a string).
The format string follows the same rules as the <code>printf</code> family of
standard C functions.
The only differences are that the options/modifiers
<code>*</code>, <code>l</code>, <code>L</code>, <code>n</code>, <code>p</code>,
and <code>h</code> are not supported
and that there is an extra option, <code>q</code>.
The <code>q</code> option formats a string in a form suitable to be safely read
back by the Lua interpreter:
the string is written between double quotes,
and all double quotes, newlines, embedded zeros,
and backslashes in the string
are correctly escaped when written.
For instance, the call
<pre>
string.format('%q', 'a string with "quotes" and \n new line')
</pre><p>
will produce the string:
<pre>
"a string with \"quotes\" and \
new line"
</pre>
<p>
The options <code>c</code>, <code>d</code>, <code>E</code>, <code>e</code>, <code>f</code>,
<code>g</code>, <code>G</code>, <code>i</code>, <code>o</code>, <code>u</code>, <code>X</code>, and <code>x</code> all
expect a number as argument,
whereas <code>q</code> and <code>s</code> expect a string.
<p>
This function does not accept string values
containing embedded zeros.
<p>
<hr><h3><a name="pdf-string.gmatch"><code>string.gmatch (s, pattern)</code></a></h3>
Returns an iterator function that,
each time it is called,
returns the next captures from <code>pattern</code> over string <code>s</code>.
<p>
If <code>pattern</code> specifies no captures,
then the whole match is produced in each
Showing preview only (272K chars total). Download the full file or copy to clipboard to get everything.
gitextract_savsuflw/
├── .gitignore
├── .gitmodules
├── AddAutoExp.bat
├── AddAutoExp.lua
├── AutoExpAdditions.txt
├── BootstrapJamPlus-linux64
├── BootstrapJamPlus-macosx64
├── BootstrapJamPlus-win64.bat
├── CreateJamLinuxWorkspace.config
├── CreateJamLinuxWorkspace.sh
├── CreateJamWindowsWorkspace.config
├── CreateJamXcodeWorkspace.config
├── CreateJamXcodeWorkspace.sh
├── CreateVS2017Workspace.bat
├── CreateVS2019Workspace.bat
├── Docs/
│ ├── LuaCopyright
│ ├── LuaManual.html
│ ├── LuaPlus.html
│ ├── LuaPlusBuilds.html
│ └── LuaPlusCallDispatcher.html
├── Jamfile.jam
├── LUAPLUS.jamrules
├── License.txt
├── README.md
├── Samples/
│ ├── ManagedLuaPlusTest/
│ │ ├── AssemblyInfo.cs
│ │ ├── Class1.cs
│ │ ├── ManagedLuaPlusTest.csproj
│ │ ├── ManagedLuaPlusTest.sln
│ │ ├── ManagedLuaPlusTest.slnenv
│ │ └── ManagedLuaPlusTest.snk
│ ├── MinimalTestLib/
│ │ ├── MinimalTestLib.cpp
│ │ ├── MinimalTestLib.jam
│ │ ├── TestANSI.lua
│ │ └── TestUnicode.lua
│ ├── Simple/
│ │ ├── Jamfile.jam
│ │ └── Simple.cpp
│ ├── TestClass/
│ │ ├── TestClass.cpp
│ │ └── TestClass.jam
│ ├── TestScript/
│ │ ├── .gitignore
│ │ ├── CompileMe.lc
│ │ ├── CompileMe.lua
│ │ ├── CreateVS2017Workspace.bat
│ │ ├── Jamfile.jam
│ │ ├── ReadUnicodeFile.lua
│ │ ├── ScriptArrayTest.lua
│ │ ├── ScriptCallbackTest.lua
│ │ ├── ScriptDumpTest.lua
│ │ ├── ScriptSaveTest.lua
│ │ ├── ScriptVectorDump.lua
│ │ ├── SimpleHeap.cpp
│ │ ├── SimpleHeap.h
│ │ ├── TestANSI.lua
│ │ ├── TestScript.cpp
│ │ ├── TestScript.jam
│ │ ├── TestUnicode.lua
│ │ ├── Timer.h
│ │ └── testgc.lua
│ ├── TestSuite/
│ │ ├── .gitignore
│ │ ├── BogusCharacters.lua
│ │ ├── CompileMe.lua
│ │ ├── TestANSI.lua
│ │ ├── TestSuite.cpp
│ │ ├── TestSuite.jam
│ │ ├── TestUnicode.lua
│ │ ├── stdafx.cpp
│ │ └── stdafx.h
│ └── UnitTest++/
│ ├── COPYING
│ ├── Makefile
│ ├── README
│ ├── TestUnitTest++.vsnet2003.vcproj
│ ├── TestUnitTest++.vsnet2005.vcproj
│ ├── TestUnitTestPP_vs6.dsp
│ ├── UnitTest++.jam
│ ├── UnitTest++.vsnet2003.sln
│ ├── UnitTest++.vsnet2003.vcproj
│ ├── UnitTest++.vsnet2005.sln
│ ├── UnitTest++.vsnet2005.vcproj
│ ├── UnitTestPP_vs6.dsp
│ ├── UnitTestPP_vs6.dsw
│ ├── docs/
│ │ └── UnitTest++.html
│ └── src/
│ ├── AssertException.cpp
│ ├── AssertException.h
│ ├── CheckMacros.h
│ ├── Checks.cpp
│ ├── Checks.h
│ ├── Config.h
│ ├── CurrentTest.cpp
│ ├── CurrentTest.h
│ ├── DeferredTestReporter.cpp
│ ├── DeferredTestReporter.h
│ ├── DeferredTestResult.cpp
│ ├── DeferredTestResult.h
│ ├── ExecuteTest.h
│ ├── MemoryOutStream.cpp
│ ├── MemoryOutStream.h
│ ├── Posix/
│ │ ├── SignalTranslator.cpp
│ │ ├── SignalTranslator.h
│ │ ├── TimeHelpers.cpp
│ │ └── TimeHelpers.h
│ ├── ReportAssert.cpp
│ ├── ReportAssert.h
│ ├── Test.cpp
│ ├── Test.h
│ ├── TestDetails.cpp
│ ├── TestDetails.h
│ ├── TestList.cpp
│ ├── TestList.h
│ ├── TestMacros.h
│ ├── TestReporter.cpp
│ ├── TestReporter.h
│ ├── TestReporterStdout.cpp
│ ├── TestReporterStdout.h
│ ├── TestResults.cpp
│ ├── TestResults.h
│ ├── TestRunner.cpp
│ ├── TestRunner.h
│ ├── TestSuite.h
│ ├── TimeConstraint.cpp
│ ├── TimeConstraint.h
│ ├── TimeHelpers.h
│ ├── UnitTest++.h
│ ├── Win32/
│ │ ├── TimeHelpers.cpp
│ │ └── TimeHelpers.h
│ ├── XmlTestReporter.cpp
│ ├── XmlTestReporter.h
│ └── tests/
│ ├── Main.cpp
│ ├── RecordingReporter.h
│ ├── ScopedCurrentTest.h
│ ├── TestAssertHandler.cpp
│ ├── TestCheckMacros.cpp
│ ├── TestChecks.cpp
│ ├── TestCurrentTest.cpp
│ ├── TestDeferredTestReporter.cpp
│ ├── TestMemoryOutStream.cpp
│ ├── TestTest.cpp
│ ├── TestTestList.cpp
│ ├── TestTestMacros.cpp
│ ├── TestTestResults.cpp
│ ├── TestTestRunner.cpp
│ ├── TestTestSuite.cpp
│ ├── TestTimeConstraint.cpp
│ ├── TestTimeConstraintMacro.cpp
│ ├── TestUnitTest++.cpp
│ └── TestXmlTestReporter.cpp
├── Src/
│ ├── Lua51Proxy/
│ │ ├── Lua51Proxy.jam
│ │ └── mkforwardlib-vc.lua
│ ├── LuaPlus/
│ │ ├── Lua.jam
│ │ ├── LuaAutoBlock.h
│ │ ├── LuaC.jam
│ │ ├── LuaCall.h
│ │ ├── LuaCall.inl
│ │ ├── LuaFunction.h
│ │ ├── LuaHelper.h
│ │ ├── LuaHelper_Object.h
│ │ ├── LuaHelper_StackObject.h
│ │ ├── LuaObject.h
│ │ ├── LuaObject.inl
│ │ ├── LuaPlus.cpp
│ │ ├── LuaPlus.h
│ │ ├── LuaPlusAddons.c
│ │ ├── LuaPlusCD.h
│ │ ├── LuaPlusConfig.h
│ │ ├── LuaPlusInternal.h
│ │ ├── LuaPlusSharedLib.jam
│ │ ├── LuaPlusStaticLib.jam
│ │ ├── LuaStackObject.h
│ │ ├── LuaStackObject.inl
│ │ ├── LuaStackTableIterator.h
│ │ ├── LuaStackTableIterator.inl
│ │ ├── LuaState.h
│ │ ├── LuaState.inl
│ │ ├── LuaStateCD.h
│ │ ├── LuaStateOutFile.h
│ │ ├── LuaStateOutString.h
│ │ ├── LuaState_DumpObject.cpp
│ │ ├── LuaTableIterator.h
│ │ ├── lua51/
│ │ │ ├── COPYRIGHT
│ │ │ ├── HISTORY
│ │ │ ├── INSTALL
│ │ │ ├── Makefile
│ │ │ ├── README
│ │ │ ├── doc/
│ │ │ │ ├── contents.html
│ │ │ │ ├── lua.1
│ │ │ │ ├── lua.css
│ │ │ │ ├── lua.html
│ │ │ │ ├── luac.1
│ │ │ │ ├── luac.html
│ │ │ │ ├── manual.css
│ │ │ │ ├── manual.html
│ │ │ │ └── readme.html
│ │ │ ├── etc/
│ │ │ │ ├── Makefile
│ │ │ │ ├── README
│ │ │ │ ├── all.c
│ │ │ │ ├── lua.hpp
│ │ │ │ ├── lua.pc
│ │ │ │ ├── luavs.bat
│ │ │ │ ├── min.c
│ │ │ │ ├── noparser.c
│ │ │ │ └── strict.lua
│ │ │ ├── src/
│ │ │ │ ├── Makefile
│ │ │ │ ├── lapi.c
│ │ │ │ ├── lapi.h
│ │ │ │ ├── lauxlib.c
│ │ │ │ ├── lauxlib.h
│ │ │ │ ├── lbaselib.c
│ │ │ │ ├── lcode.c
│ │ │ │ ├── lcode.h
│ │ │ │ ├── ldblib.c
│ │ │ │ ├── ldebug.c
│ │ │ │ ├── ldebug.h
│ │ │ │ ├── ldo.c
│ │ │ │ ├── ldo.h
│ │ │ │ ├── ldump.c
│ │ │ │ ├── lfunc.c
│ │ │ │ ├── lfunc.h
│ │ │ │ ├── lgc.c
│ │ │ │ ├── lgc.h
│ │ │ │ ├── linit.c
│ │ │ │ ├── liolib.c
│ │ │ │ ├── llex.c
│ │ │ │ ├── llex.h
│ │ │ │ ├── llimits.h
│ │ │ │ ├── lmathlib.c
│ │ │ │ ├── lmem.c
│ │ │ │ ├── lmem.h
│ │ │ │ ├── loadlib.c
│ │ │ │ ├── lobject.c
│ │ │ │ ├── lobject.h
│ │ │ │ ├── lopcodes.c
│ │ │ │ ├── lopcodes.h
│ │ │ │ ├── loslib.c
│ │ │ │ ├── lparser.c
│ │ │ │ ├── lparser.h
│ │ │ │ ├── lstate.c
│ │ │ │ ├── lstate.h
│ │ │ │ ├── lstring.c
│ │ │ │ ├── lstring.h
│ │ │ │ ├── lstrlib.c
│ │ │ │ ├── ltable.c
│ │ │ │ ├── ltable.h
│ │ │ │ ├── ltablib.c
│ │ │ │ ├── ltm.c
│ │ │ │ ├── ltm.h
│ │ │ │ ├── lua.c
│ │ │ │ ├── lua.h
│ │ │ │ ├── luac.c
│ │ │ │ ├── luaconf.h
│ │ │ │ ├── lualib.h
│ │ │ │ ├── lundump.c
│ │ │ │ ├── lundump.h
│ │ │ │ ├── lvm.c
│ │ │ │ ├── lvm.h
│ │ │ │ ├── lzio.c
│ │ │ │ ├── lzio.h
│ │ │ │ └── print.c
│ │ │ └── test/
│ │ │ ├── README
│ │ │ ├── bisect.lua
│ │ │ ├── cf.lua
│ │ │ ├── echo.lua
│ │ │ ├── env.lua
│ │ │ ├── factorial.lua
│ │ │ ├── fib.lua
│ │ │ ├── fibfor.lua
│ │ │ ├── globals.lua
│ │ │ ├── hello.lua
│ │ │ ├── life.lua
│ │ │ ├── luac.lua
│ │ │ ├── printf.lua
│ │ │ ├── readonly.lua
│ │ │ ├── sieve.lua
│ │ │ ├── sort.lua
│ │ │ ├── table.lua
│ │ │ ├── trace-calls.lua
│ │ │ ├── trace-globals.lua
│ │ │ └── xd.lua
│ │ ├── lua51-luaplus/
│ │ │ ├── COPYRIGHT
│ │ │ ├── HISTORY
│ │ │ ├── INSTALL
│ │ │ ├── Makefile
│ │ │ ├── README
│ │ │ ├── doc/
│ │ │ │ ├── contents.html
│ │ │ │ ├── lua.1
│ │ │ │ ├── lua.css
│ │ │ │ ├── lua.html
│ │ │ │ ├── luac.1
│ │ │ │ ├── luac.html
│ │ │ │ ├── manual.css
│ │ │ │ ├── manual.html
│ │ │ │ └── readme.html
│ │ │ ├── etc/
│ │ │ │ ├── Makefile
│ │ │ │ ├── README
│ │ │ │ ├── all.c
│ │ │ │ ├── lua.hpp
│ │ │ │ ├── lua.pc
│ │ │ │ ├── luavs.bat
│ │ │ │ ├── min.c
│ │ │ │ ├── noparser.c
│ │ │ │ └── strict.lua
│ │ │ ├── src/
│ │ │ │ ├── Makefile
│ │ │ │ ├── lapi.c
│ │ │ │ ├── lapi.h
│ │ │ │ ├── lauxlib.c
│ │ │ │ ├── lauxlib.h
│ │ │ │ ├── lbaselib.c
│ │ │ │ ├── lcode.c
│ │ │ │ ├── lcode.h
│ │ │ │ ├── ldblib.c
│ │ │ │ ├── ldebug.c
│ │ │ │ ├── ldebug.h
│ │ │ │ ├── ldo.c
│ │ │ │ ├── ldo.h
│ │ │ │ ├── ldump.c
│ │ │ │ ├── lfunc.c
│ │ │ │ ├── lfunc.h
│ │ │ │ ├── lgc.c
│ │ │ │ ├── lgc.h
│ │ │ │ ├── linit.c
│ │ │ │ ├── liolib.c
│ │ │ │ ├── llex.c
│ │ │ │ ├── llex.h
│ │ │ │ ├── llimits.h
│ │ │ │ ├── lmathlib.c
│ │ │ │ ├── lmem.c
│ │ │ │ ├── lmem.h
│ │ │ │ ├── loadlib.c
│ │ │ │ ├── lobject.c
│ │ │ │ ├── lobject.h
│ │ │ │ ├── lopcodes.c
│ │ │ │ ├── lopcodes.h
│ │ │ │ ├── loslib.c
│ │ │ │ ├── lparser.c
│ │ │ │ ├── lparser.h
│ │ │ │ ├── lstate.c
│ │ │ │ ├── lstate.h
│ │ │ │ ├── lstring.c
│ │ │ │ ├── lstring.h
│ │ │ │ ├── lstrlib.c
│ │ │ │ ├── ltable.c
│ │ │ │ ├── ltable.h
│ │ │ │ ├── ltablib.c
│ │ │ │ ├── ltm.c
│ │ │ │ ├── ltm.h
│ │ │ │ ├── lua.c
│ │ │ │ ├── lua.cpp
│ │ │ │ ├── lua.h
│ │ │ │ ├── luac.c
│ │ │ │ ├── luaconf.h
│ │ │ │ ├── lualib.h
│ │ │ │ ├── lundump.c
│ │ │ │ ├── lundump.h
│ │ │ │ ├── lvm.c
│ │ │ │ ├── lvm.h
│ │ │ │ ├── lzio.c
│ │ │ │ ├── lzio.h
│ │ │ │ └── print.c
│ │ │ └── test/
│ │ │ ├── README
│ │ │ ├── bisect.lua
│ │ │ ├── cf.lua
│ │ │ ├── echo.lua
│ │ │ ├── env.lua
│ │ │ ├── factorial.lua
│ │ │ ├── fib.lua
│ │ │ ├── fibfor.lua
│ │ │ ├── globals.lua
│ │ │ ├── hello.lua
│ │ │ ├── life.lua
│ │ │ ├── luac.lua
│ │ │ ├── printf.lua
│ │ │ ├── readonly.lua
│ │ │ ├── sieve.lua
│ │ │ ├── sort.lua
│ │ │ ├── table.lua
│ │ │ ├── trace-calls.lua
│ │ │ ├── trace-globals.lua
│ │ │ └── xd.lua
│ │ ├── lua52/
│ │ │ ├── Makefile
│ │ │ ├── README
│ │ │ ├── doc/
│ │ │ │ ├── contents.html
│ │ │ │ ├── lua.1
│ │ │ │ ├── lua.css
│ │ │ │ ├── luac.1
│ │ │ │ ├── manual.css
│ │ │ │ ├── manual.html
│ │ │ │ └── readme.html
│ │ │ └── src/
│ │ │ ├── Makefile
│ │ │ ├── lapi.c
│ │ │ ├── lapi.h
│ │ │ ├── lauxlib.c
│ │ │ ├── lauxlib.h
│ │ │ ├── lbaselib.c
│ │ │ ├── lbitlib.c
│ │ │ ├── lcode.c
│ │ │ ├── lcode.h
│ │ │ ├── lcorolib.c
│ │ │ ├── lctype.c
│ │ │ ├── lctype.h
│ │ │ ├── ldblib.c
│ │ │ ├── ldebug.c
│ │ │ ├── ldebug.h
│ │ │ ├── ldo.c
│ │ │ ├── ldo.h
│ │ │ ├── ldump.c
│ │ │ ├── lfunc.c
│ │ │ ├── lfunc.h
│ │ │ ├── lgc.c
│ │ │ ├── lgc.h
│ │ │ ├── linit.c
│ │ │ ├── liolib.c
│ │ │ ├── llex.c
│ │ │ ├── llex.h
│ │ │ ├── llimits.h
│ │ │ ├── lmathlib.c
│ │ │ ├── lmem.c
│ │ │ ├── lmem.h
│ │ │ ├── loadlib.c
│ │ │ ├── lobject.c
│ │ │ ├── lobject.h
│ │ │ ├── lopcodes.c
│ │ │ ├── lopcodes.h
│ │ │ ├── loslib.c
│ │ │ ├── lparser.c
│ │ │ ├── lparser.h
│ │ │ ├── lstate.c
│ │ │ ├── lstate.h
│ │ │ ├── lstring.c
│ │ │ ├── lstring.h
│ │ │ ├── lstrlib.c
│ │ │ ├── ltable.c
│ │ │ ├── ltable.h
│ │ │ ├── ltablib.c
│ │ │ ├── ltm.c
│ │ │ ├── ltm.h
│ │ │ ├── lua.c
│ │ │ ├── lua.h
│ │ │ ├── lua.hpp
│ │ │ ├── luac.c
│ │ │ ├── luaconf.h
│ │ │ ├── lualib.h
│ │ │ ├── lundump.c
│ │ │ ├── lundump.h
│ │ │ ├── lvm.c
│ │ │ ├── lvm.h
│ │ │ ├── lzio.c
│ │ │ └── lzio.h
│ │ ├── lua52-luaplus/
│ │ │ ├── Makefile
│ │ │ ├── README
│ │ │ ├── doc/
│ │ │ │ ├── contents.html
│ │ │ │ ├── lua.1
│ │ │ │ ├── lua.css
│ │ │ │ ├── luac.1
│ │ │ │ ├── manual.css
│ │ │ │ ├── manual.html
│ │ │ │ └── readme.html
│ │ │ └── src/
│ │ │ ├── Makefile
│ │ │ ├── lapi.c
│ │ │ ├── lapi.h
│ │ │ ├── lauxlib.c
│ │ │ ├── lauxlib.h
│ │ │ ├── lbaselib.c
│ │ │ ├── lbitlib.c
│ │ │ ├── lcode.c
│ │ │ ├── lcode.h
│ │ │ ├── lcorolib.c
│ │ │ ├── lctype.c
│ │ │ ├── lctype.h
│ │ │ ├── ldblib.c
│ │ │ ├── ldebug.c
│ │ │ ├── ldebug.h
│ │ │ ├── ldo.c
│ │ │ ├── ldo.h
│ │ │ ├── ldump.c
│ │ │ ├── lfunc.c
│ │ │ ├── lfunc.h
│ │ │ ├── lgc.c
│ │ │ ├── lgc.h
│ │ │ ├── linit.c
│ │ │ ├── liolib.c
│ │ │ ├── llex.c
│ │ │ ├── llex.h
│ │ │ ├── llimits.h
│ │ │ ├── lmathlib.c
│ │ │ ├── lmem.c
│ │ │ ├── lmem.h
│ │ │ ├── loadlib.c
│ │ │ ├── lobject.c
│ │ │ ├── lobject.h
│ │ │ ├── lopcodes.c
│ │ │ ├── lopcodes.h
│ │ │ ├── loslib.c
│ │ │ ├── lparser.c
│ │ │ ├── lparser.h
│ │ │ ├── lstate.c
│ │ │ ├── lstate.h
│ │ │ ├── lstring.c
│ │ │ ├── lstring.h
│ │ │ ├── lstrlib.c
│ │ │ ├── ltable.c
│ │ │ ├── ltable.h
│ │ │ ├── ltablib.c
│ │ │ ├── ltm.c
│ │ │ ├── ltm.h
│ │ │ ├── lua.c
│ │ │ ├── lua.h
│ │ │ ├── lua.hpp
│ │ │ ├── luac.c
│ │ │ ├── luaconf.h
│ │ │ ├── lualib.h
│ │ │ ├── lundump.c
│ │ │ ├── lundump.h
│ │ │ ├── lvm.c
│ │ │ ├── lvm.h
│ │ │ ├── lzio.c
│ │ │ └── lzio.h
│ │ ├── lua53/
│ │ │ ├── Makefile
│ │ │ ├── README
│ │ │ ├── doc/
│ │ │ │ ├── contents.html
│ │ │ │ ├── index.css
│ │ │ │ ├── lua.1
│ │ │ │ ├── lua.css
│ │ │ │ ├── luac.1
│ │ │ │ ├── manual.css
│ │ │ │ ├── manual.html
│ │ │ │ └── readme.html
│ │ │ └── src/
│ │ │ ├── Makefile
│ │ │ ├── lapi.c
│ │ │ ├── lapi.h
│ │ │ ├── lauxlib.c
│ │ │ ├── lauxlib.h
│ │ │ ├── lbaselib.c
│ │ │ ├── lbitlib.c
│ │ │ ├── lcode.c
│ │ │ ├── lcode.h
│ │ │ ├── lcorolib.c
│ │ │ ├── lctype.c
│ │ │ ├── lctype.h
│ │ │ ├── ldblib.c
│ │ │ ├── ldebug.c
│ │ │ ├── ldebug.h
│ │ │ ├── ldo.c
│ │ │ ├── ldo.h
│ │ │ ├── ldump.c
│ │ │ ├── lfunc.c
│ │ │ ├── lfunc.h
│ │ │ ├── lgc.c
│ │ │ ├── lgc.h
│ │ │ ├── linit.c
│ │ │ ├── liolib.c
│ │ │ ├── llex.c
│ │ │ ├── llex.h
│ │ │ ├── llimits.h
│ │ │ ├── lmathlib.c
│ │ │ ├── lmem.c
│ │ │ ├── lmem.h
│ │ │ ├── loadlib.c
│ │ │ ├── lobject.c
│ │ │ ├── lobject.h
│ │ │ ├── lopcodes.c
│ │ │ ├── lopcodes.h
│ │ │ ├── loslib.c
│ │ │ ├── lparser.c
│ │ │ ├── lparser.h
│ │ │ ├── lprefix.h
│ │ │ ├── lstate.c
│ │ │ ├── lstate.h
│ │ │ ├── lstring.c
│ │ │ ├── lstring.h
│ │ │ ├── lstrlib.c
│ │ │ ├── ltable.c
│ │ │ ├── ltable.h
│ │ │ ├── ltablib.c
│ │ │ ├── ltm.c
│ │ │ ├── ltm.h
│ │ │ ├── lua.c
│ │ │ ├── lua.h
│ │ │ ├── lua.hpp
│ │ │ ├── luac.c
│ │ │ ├── luaconf.h
│ │ │ ├── lualib.h
│ │ │ ├── lundump.c
│ │ │ ├── lundump.h
│ │ │ ├── lutf8lib.c
│ │ │ ├── lvm.c
│ │ │ ├── lvm.h
│ │ │ ├── lzio.c
│ │ │ └── lzio.h
│ │ └── lua53-luaplus/
│ │ ├── Makefile
│ │ ├── README
│ │ ├── doc/
│ │ │ ├── contents.html
│ │ │ ├── index.css
│ │ │ ├── lua.1
│ │ │ ├── lua.css
│ │ │ ├── luac.1
│ │ │ ├── manual.css
│ │ │ ├── manual.html
│ │ │ └── readme.html
│ │ └── src/
│ │ ├── Makefile
│ │ ├── lapi.c
│ │ ├── lapi.h
│ │ ├── lauxlib.c
│ │ ├── lauxlib.h
│ │ ├── lbaselib.c
│ │ ├── lbitlib.c
│ │ ├── lcode.c
│ │ ├── lcode.h
│ │ ├── lcorolib.c
│ │ ├── lctype.c
│ │ ├── lctype.h
│ │ ├── ldblib.c
│ │ ├── ldebug.c
│ │ ├── ldebug.h
│ │ ├── ldo.c
│ │ ├── ldo.h
│ │ ├── ldump.c
│ │ ├── lfunc.c
│ │ ├── lfunc.h
│ │ ├── lgc.c
│ │ ├── lgc.h
│ │ ├── linit.c
│ │ ├── liolib.c
│ │ ├── llex.c
│ │ ├── llex.h
│ │ ├── llimits.h
│ │ ├── lmathlib.c
│ │ ├── lmem.c
│ │ ├── lmem.h
│ │ ├── loadlib.c
│ │ ├── lobject.c
│ │ ├── lobject.h
│ │ ├── lopcodes.c
│ │ ├── lopcodes.h
│ │ ├── loslib.c
│ │ ├── lparser.c
│ │ ├── lparser.h
│ │ ├── lprefix.h
│ │ ├── lstate.c
│ │ ├── lstate.h
│ │ ├── lstring.c
│ │ ├── lstring.h
│ │ ├── lstrlib.c
│ │ ├── ltable.c
│ │ ├── ltable.h
│ │ ├── ltablib.c
│ │ ├── ltm.c
│ │ ├── ltm.h
│ │ ├── lua.c
│ │ ├── lua.h
│ │ ├── lua.hpp
│ │ ├── luac.c
│ │ ├── luaconf.h
│ │ ├── lualib.h
│ │ ├── lundump.c
│ │ ├── lundump.h
│ │ ├── lutf8lib.c
│ │ ├── lvm.c
│ │ ├── lvm.h
│ │ ├── lzio.c
│ │ └── lzio.h
│ ├── ManagedLuaPlus/
│ │ ├── AssemblyInfo.cpp
│ │ ├── DllMain.cpp
│ │ ├── LuaPlusClrPure.jam
│ │ ├── ManagedLuaPlus.cpp
│ │ ├── ManagedLuaPlus.h
│ │ ├── ManagedLuaPlus.jam
│ │ ├── ManagedLuaPlus.sln
│ │ ├── ManagedLuaPlus.snk
│ │ └── Stdafx.h
│ ├── ManagedLuaPlus-oldsyntax/
│ │ ├── AssemblyInfo.cpp
│ │ ├── DllMain.cpp
│ │ ├── ManagedLuaPlus.cpp
│ │ ├── ManagedLuaPlus.h
│ │ ├── ManagedLuaPlus.jam
│ │ ├── ManagedLuaPlus.sln
│ │ ├── ManagedLuaPlus.snk
│ │ └── Stdafx.h
│ ├── Modules/
│ │ ├── .gitignore
│ │ ├── LuaMacro/
│ │ │ ├── config.ld
│ │ │ ├── docgen
│ │ │ ├── docgen.bat
│ │ │ ├── luam
│ │ │ ├── luam.lua
│ │ │ ├── macro/
│ │ │ │ ├── Getter.lua
│ │ │ │ ├── TokenList.lua
│ │ │ │ ├── all.lua
│ │ │ │ ├── assert.lua
│ │ │ │ ├── builtin.lua
│ │ │ │ ├── clexer.lua
│ │ │ │ ├── do.lua
│ │ │ │ ├── forall.lua
│ │ │ │ ├── lambda.lua
│ │ │ │ ├── lc.lua
│ │ │ │ ├── lexer.lua
│ │ │ │ ├── lib/
│ │ │ │ │ ├── class.lua
│ │ │ │ │ └── test.lua
│ │ │ │ ├── module.lua
│ │ │ │ ├── try.lua
│ │ │ │ └── with.lua
│ │ │ ├── macro.lua
│ │ │ ├── readme.md
│ │ │ └── tests/
│ │ │ ├── cexport.lua
│ │ │ ├── class1.lc
│ │ │ ├── const.lua
│ │ │ ├── cskin.lua
│ │ │ ├── dll.c
│ │ │ ├── dollar.lua
│ │ │ ├── exit.tmp
│ │ │ ├── forall1.lua
│ │ │ ├── lc.lua
│ │ │ ├── list.lua
│ │ │ ├── mmath.lua
│ │ │ ├── mod.m.lua
│ │ │ ├── proto.lua
│ │ │ ├── qw.lua
│ │ │ ├── rawhash.lua
│ │ │ ├── readme.md
│ │ │ ├── run-tests.lua
│ │ │ ├── str.lc
│ │ │ ├── test-assert.lua
│ │ │ ├── test-block.lua
│ │ │ ├── test-case.lua
│ │ │ ├── test-const.lua
│ │ │ ├── test-cskin.lua
│ │ │ ├── test-do.lua
│ │ │ ├── test-dollar.lua
│ │ │ ├── test-forall.lua
│ │ │ ├── test-forall1.lua
│ │ │ ├── test-include.lua
│ │ │ ├── test-lambda.lua
│ │ │ ├── test-list.lua
│ │ │ ├── test-macro.lua
│ │ │ ├── test-mod.lua
│ │ │ ├── test-pl-list.lua
│ │ │ ├── test-proto.lua
│ │ │ ├── test-qw.lua
│ │ │ ├── test-rawhash.lua
│ │ │ ├── test-require.lua
│ │ │ ├── test-scope.lua
│ │ │ ├── test-test.lua
│ │ │ ├── test-try.lua
│ │ │ ├── test-with.lua
│ │ │ ├── test.inc
│ │ │ ├── tests.bat
│ │ │ └── winapi.lc
│ │ ├── StackTracePlus/
│ │ │ ├── .travis.yml
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── rockspecs/
│ │ │ │ ├── stacktraceplus-0.1.0-1.rockspec
│ │ │ │ ├── stacktraceplus-0.1.1-1.rockspec
│ │ │ │ └── stacktraceplus-sscm-1.rockspec
│ │ │ ├── src/
│ │ │ │ └── StackTracePlus.lua
│ │ │ ├── test/
│ │ │ │ ├── test.lua
│ │ │ │ └── test_questionmark.lua
│ │ │ └── unittest/
│ │ │ ├── run.lua
│ │ │ └── test.lua
│ │ ├── alien/
│ │ │ ├── Makefile
│ │ │ ├── Makefile.win
│ │ │ ├── Makefile.win64
│ │ │ ├── README
│ │ │ ├── doc/
│ │ │ │ ├── .git-darcs-dir
│ │ │ │ ├── alien.md
│ │ │ │ └── index.html
│ │ │ ├── executables
│ │ │ ├── index.html
│ │ │ ├── libffi/
│ │ │ │ ├── ChangeLog
│ │ │ │ ├── ChangeLog.libffi
│ │ │ │ ├── ChangeLog.libgcj
│ │ │ │ ├── ChangeLog.v1
│ │ │ │ ├── LICENSE
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── README
│ │ │ │ ├── acinclude.m4
│ │ │ │ ├── aclocal.m4
│ │ │ │ ├── compile
│ │ │ │ ├── config.guess
│ │ │ │ ├── config.sub
│ │ │ │ ├── configure
│ │ │ │ ├── configure.ac
│ │ │ │ ├── configure.host
│ │ │ │ ├── depcomp
│ │ │ │ ├── doc/
│ │ │ │ │ ├── libffi.info
│ │ │ │ │ ├── libffi.texi
│ │ │ │ │ ├── stamp-vti
│ │ │ │ │ └── version.texi
│ │ │ │ ├── fficonfig.h.in
│ │ │ │ ├── include/
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── Makefile.in
│ │ │ │ │ ├── ffi.h.in
│ │ │ │ │ └── ffi_common.h
│ │ │ │ ├── install-sh
│ │ │ │ ├── libffi.pc.in
│ │ │ │ ├── libtool-version
│ │ │ │ ├── ltmain.sh
│ │ │ │ ├── m4/
│ │ │ │ │ ├── libtool.m4
│ │ │ │ │ ├── ltoptions.m4
│ │ │ │ │ ├── ltsugar.m4
│ │ │ │ │ ├── ltversion.m4
│ │ │ │ │ └── lt~obsolete.m4
│ │ │ │ ├── man/
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── Makefile.in
│ │ │ │ │ ├── ffi.3
│ │ │ │ │ ├── ffi_call.3
│ │ │ │ │ └── ffi_prep_cif.3
│ │ │ │ ├── mdate-sh
│ │ │ │ ├── missing
│ │ │ │ ├── src/
│ │ │ │ │ ├── alpha/
│ │ │ │ │ │ ├── ffi.c
│ │ │ │ │ │ ├── ffitarget.h
│ │ │ │ │ │ └── osf.S
│ │ │ │ │ ├── arm/
│ │ │ │ │ │ ├── ffi.c
│ │ │ │ │ │ ├── ffitarget.h
│ │ │ │ │ │ └── sysv.S
│ │ │ │ │ ├── avr32/
│ │ │ │ │ │ ├── ffi.c
│ │ │ │ │ │ ├── ffitarget.h
│ │ │ │ │ │ └── sysv.S
│ │ │ │ │ ├── closures.c
│ │ │ │ │ ├── cris/
│ │ │ │ │ │ ├── ffi.c
│ │ │ │ │ │ ├── ffitarget.h
│ │ │ │ │ │ └── sysv.S
│ │ │ │ │ ├── debug.c
│ │ │ │ │ ├── dlmalloc.c
│ │ │ │ │ ├── frv/
│ │ │ │ │ │ ├── eabi.S
│ │ │ │ │ │ ├── ffi.c
│ │ │ │ │ │ └── ffitarget.h
│ │ │ │ │ ├── ia64/
│ │ │ │ │ │ ├── ffi.c
│ │ │ │ │ │ ├── ffitarget.h
│ │ │ │ │ │ ├── ia64_flags.h
│ │ │ │ │ │ └── unix.S
│ │ │ │ │ ├── java_raw_api.c
│ │ │ │ │ ├── m32r/
│ │ │ │ │ │ ├── ffi.c
│ │ │ │ │ │ ├── ffitarget.h
│ │ │ │ │ │ └── sysv.S
│ │ │ │ │ ├── m68k/
│ │ │ │ │ │ ├── ffi.c
│ │ │ │ │ │ ├── ffitarget.h
│ │ │ │ │ │ └── sysv.S
│ │ │ │ │ ├── mips/
│ │ │ │ │ │ ├── ffi.c
│ │ │ │ │ │ ├── ffitarget.h
│ │ │ │ │ │ ├── n32.S
│ │ │ │ │ │ └── o32.S
│ │ │ │ │ ├── pa/
│ │ │ │ │ │ ├── ffi.c
│ │ │ │ │ │ ├── ffitarget.h
│ │ │ │ │ │ ├── hpux32.S
│ │ │ │ │ │ └── linux.S
│ │ │ │ │ ├── powerpc/
│ │ │ │ │ │ ├── aix.S
│ │ │ │ │ │ ├── aix_closure.S
│ │ │ │ │ │ ├── asm.h
│ │ │ │ │ │ ├── darwin.S
│ │ │ │ │ │ ├── darwin_closure.S
│ │ │ │ │ │ ├── ffi.c
│ │ │ │ │ │ ├── ffi_darwin.c
│ │ │ │ │ │ ├── ffitarget.h
│ │ │ │ │ │ ├── linux64.S
│ │ │ │ │ │ ├── linux64_closure.S
│ │ │ │ │ │ ├── ppc_closure.S
│ │ │ │ │ │ └── sysv.S
│ │ │ │ │ ├── prep_cif.c
│ │ │ │ │ ├── raw_api.c
│ │ │ │ │ ├── s390/
│ │ │ │ │ │ ├── ffi.c
│ │ │ │ │ │ ├── ffitarget.h
│ │ │ │ │ │ └── sysv.S
│ │ │ │ │ ├── sh/
│ │ │ │ │ │ ├── ffi.c
│ │ │ │ │ │ ├── ffitarget.h
│ │ │ │ │ │ └── sysv.S
│ │ │ │ │ ├── sh64/
│ │ │ │ │ │ ├── ffi.c
│ │ │ │ │ │ ├── ffitarget.h
│ │ │ │ │ │ └── sysv.S
│ │ │ │ │ ├── sparc/
│ │ │ │ │ │ ├── ffi.c
│ │ │ │ │ │ ├── ffitarget.h
│ │ │ │ │ │ ├── v8.S
│ │ │ │ │ │ └── v9.S
│ │ │ │ │ ├── types.c
│ │ │ │ │ └── x86/
│ │ │ │ │ ├── darwin.S
│ │ │ │ │ ├── darwin64.S
│ │ │ │ │ ├── ffi.c
│ │ │ │ │ ├── ffi64.c
│ │ │ │ │ ├── ffitarget.h
│ │ │ │ │ ├── freebsd.S
│ │ │ │ │ ├── sysv.S
│ │ │ │ │ ├── unix64.S
│ │ │ │ │ ├── win32.S
│ │ │ │ │ └── win64.S
│ │ │ │ ├── testsuite/
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── Makefile.in
│ │ │ │ │ ├── config/
│ │ │ │ │ │ └── default.exp
│ │ │ │ │ ├── lib/
│ │ │ │ │ │ ├── libffi-dg.exp
│ │ │ │ │ │ ├── target-libpath.exp
│ │ │ │ │ │ └── wrapper.exp
│ │ │ │ │ ├── libffi.call/
│ │ │ │ │ │ ├── call.exp
│ │ │ │ │ │ ├── closure_fn0.c
│ │ │ │ │ │ ├── closure_fn1.c
│ │ │ │ │ │ ├── closure_fn2.c
│ │ │ │ │ │ ├── closure_fn3.c
│ │ │ │ │ │ ├── closure_fn4.c
│ │ │ │ │ │ ├── closure_fn5.c
│ │ │ │ │ │ ├── closure_fn6.c
│ │ │ │ │ │ ├── closure_loc_fn0.c
│ │ │ │ │ │ ├── closure_stdcall.c
│ │ │ │ │ │ ├── cls_12byte.c
│ │ │ │ │ │ ├── cls_16byte.c
│ │ │ │ │ │ ├── cls_18byte.c
│ │ │ │ │ │ ├── cls_19byte.c
│ │ │ │ │ │ ├── cls_1_1byte.c
│ │ │ │ │ │ ├── cls_20byte.c
│ │ │ │ │ │ ├── cls_20byte1.c
│ │ │ │ │ │ ├── cls_24byte.c
│ │ │ │ │ │ ├── cls_2byte.c
│ │ │ │ │ │ ├── cls_3_1byte.c
│ │ │ │ │ │ ├── cls_3byte1.c
│ │ │ │ │ │ ├── cls_3byte2.c
│ │ │ │ │ │ ├── cls_4_1byte.c
│ │ │ │ │ │ ├── cls_4byte.c
│ │ │ │ │ │ ├── cls_5_1_byte.c
│ │ │ │ │ │ ├── cls_5byte.c
│ │ │ │ │ │ ├── cls_64byte.c
│ │ │ │ │ │ ├── cls_6_1_byte.c
│ │ │ │ │ │ ├── cls_6byte.c
│ │ │ │ │ │ ├── cls_7_1_byte.c
│ │ │ │ │ │ ├── cls_7byte.c
│ │ │ │ │ │ ├── cls_8byte.c
│ │ │ │ │ │ ├── cls_9byte1.c
│ │ │ │ │ │ ├── cls_9byte2.c
│ │ │ │ │ │ ├── cls_align_double.c
│ │ │ │ │ │ ├── cls_align_float.c
│ │ │ │ │ │ ├── cls_align_longdouble.c
│ │ │ │ │ │ ├── cls_align_longdouble_split.c
│ │ │ │ │ │ ├── cls_align_longdouble_split2.c
│ │ │ │ │ │ ├── cls_align_pointer.c
│ │ │ │ │ │ ├── cls_align_sint16.c
│ │ │ │ │ │ ├── cls_align_sint32.c
│ │ │ │ │ │ ├── cls_align_sint64.c
│ │ │ │ │ │ ├── cls_align_uint16.c
│ │ │ │ │ │ ├── cls_align_uint32.c
│ │ │ │ │ │ ├── cls_align_uint64.c
│ │ │ │ │ │ ├── cls_dbls_struct.c
│ │ │ │ │ │ ├── cls_double.c
│ │ │ │ │ │ ├── cls_double_va.c
│ │ │ │ │ │ ├── cls_float.c
│ │ │ │ │ │ ├── cls_longdouble.c
│ │ │ │ │ │ ├── cls_longdouble_va.c
│ │ │ │ │ │ ├── cls_multi_schar.c
│ │ │ │ │ │ ├── cls_multi_sshort.c
│ │ │ │ │ │ ├── cls_multi_sshortchar.c
│ │ │ │ │ │ ├── cls_multi_uchar.c
│ │ │ │ │ │ ├── cls_multi_ushort.c
│ │ │ │ │ │ ├── cls_multi_ushortchar.c
│ │ │ │ │ │ ├── cls_pointer.c
│ │ │ │ │ │ ├── cls_pointer_stack.c
│ │ │ │ │ │ ├── cls_schar.c
│ │ │ │ │ │ ├── cls_sint.c
│ │ │ │ │ │ ├── cls_sshort.c
│ │ │ │ │ │ ├── cls_uchar.c
│ │ │ │ │ │ ├── cls_uint.c
│ │ │ │ │ │ ├── cls_ulonglong.c
│ │ │ │ │ │ ├── cls_ushort.c
│ │ │ │ │ │ ├── err_bad_abi.c
│ │ │ │ │ │ ├── err_bad_typedef.c
│ │ │ │ │ │ ├── ffitest.h
│ │ │ │ │ │ ├── float.c
│ │ │ │ │ │ ├── float1.c
│ │ │ │ │ │ ├── float2.c
│ │ │ │ │ │ ├── float3.c
│ │ │ │ │ │ ├── float4.c
│ │ │ │ │ │ ├── huge_struct.c
│ │ │ │ │ │ ├── many.c
│ │ │ │ │ │ ├── many_win32.c
│ │ │ │ │ │ ├── negint.c
│ │ │ │ │ │ ├── nested_struct.c
│ │ │ │ │ │ ├── nested_struct1.c
│ │ │ │ │ │ ├── nested_struct10.c
│ │ │ │ │ │ ├── nested_struct2.c
│ │ │ │ │ │ ├── nested_struct3.c
│ │ │ │ │ │ ├── nested_struct4.c
│ │ │ │ │ │ ├── nested_struct5.c
│ │ │ │ │ │ ├── nested_struct6.c
│ │ │ │ │ │ ├── nested_struct7.c
│ │ │ │ │ │ ├── nested_struct8.c
│ │ │ │ │ │ ├── nested_struct9.c
│ │ │ │ │ │ ├── problem1.c
│ │ │ │ │ │ ├── promotion.c
│ │ │ │ │ │ ├── pyobjc-tc.c
│ │ │ │ │ │ ├── return_dbl.c
│ │ │ │ │ │ ├── return_dbl1.c
│ │ │ │ │ │ ├── return_dbl2.c
│ │ │ │ │ │ ├── return_fl.c
│ │ │ │ │ │ ├── return_fl1.c
│ │ │ │ │ │ ├── return_fl2.c
│ │ │ │ │ │ ├── return_fl3.c
│ │ │ │ │ │ ├── return_ldl.c
│ │ │ │ │ │ ├── return_ll.c
│ │ │ │ │ │ ├── return_ll1.c
│ │ │ │ │ │ ├── return_sc.c
│ │ │ │ │ │ ├── return_sl.c
│ │ │ │ │ │ ├── return_uc.c
│ │ │ │ │ │ ├── return_ul.c
│ │ │ │ │ │ ├── stret_large.c
│ │ │ │ │ │ ├── stret_large2.c
│ │ │ │ │ │ ├── stret_medium.c
│ │ │ │ │ │ ├── stret_medium2.c
│ │ │ │ │ │ ├── strlen.c
│ │ │ │ │ │ ├── strlen_win32.c
│ │ │ │ │ │ ├── struct1.c
│ │ │ │ │ │ ├── struct2.c
│ │ │ │ │ │ ├── struct3.c
│ │ │ │ │ │ ├── struct4.c
│ │ │ │ │ │ ├── struct5.c
│ │ │ │ │ │ ├── struct6.c
│ │ │ │ │ │ ├── struct7.c
│ │ │ │ │ │ ├── struct8.c
│ │ │ │ │ │ ├── struct9.c
│ │ │ │ │ │ └── testclosure.c
│ │ │ │ │ └── libffi.special/
│ │ │ │ │ ├── ffitestcxx.h
│ │ │ │ │ ├── special.exp
│ │ │ │ │ ├── unwindtest.cc
│ │ │ │ │ └── unwindtest_ffi_call.cc
│ │ │ │ ├── texinfo.tex
│ │ │ │ └── win32/
│ │ │ │ ├── .git-darcs-dir
│ │ │ │ ├── LICENSE
│ │ │ │ ├── README
│ │ │ │ ├── README.ctypes
│ │ │ │ ├── ffi.c
│ │ │ │ ├── ffi.h
│ │ │ │ ├── ffi_common.h
│ │ │ │ ├── fficonfig.h
│ │ │ │ ├── ffitarget.h
│ │ │ │ ├── prep_cif.c
│ │ │ │ ├── types.c
│ │ │ │ ├── win32.c
│ │ │ │ └── win64.asm
│ │ │ ├── rockspec/
│ │ │ │ ├── .git-darcs-dir
│ │ │ │ ├── alien-0.3.1-1.rockspec
│ │ │ │ ├── alien-0.3.2-1.rockspec
│ │ │ │ ├── alien-0.4.0-1.rockspec
│ │ │ │ ├── alien-0.4.1-1.rockspec
│ │ │ │ ├── alien-0.5.0-1.rockspec
│ │ │ │ ├── alien-0.5.1-1.rockspec
│ │ │ │ └── alien-cvs-1.rockspec
│ │ │ ├── samples/
│ │ │ │ ├── .git-darcs-dir
│ │ │ │ ├── gtk.lua
│ │ │ │ ├── libc.lua
│ │ │ │ └── string_array.lua
│ │ │ ├── src/
│ │ │ │ ├── .git-darcs-dir
│ │ │ │ ├── alien/
│ │ │ │ │ ├── .git-darcs-dir
│ │ │ │ │ ├── core.c
│ │ │ │ │ ├── core.def
│ │ │ │ │ ├── struct.c
│ │ │ │ │ └── struct.def
│ │ │ │ ├── alien.lua
│ │ │ │ └── constants
│ │ │ └── tests/
│ │ │ ├── .git-darcs-dir
│ │ │ ├── alientest.c
│ │ │ └── test_alien.lua
│ │ ├── bitop/
│ │ │ ├── Makefile
│ │ │ ├── Makefile.mingw
│ │ │ ├── README
│ │ │ ├── bit.c
│ │ │ ├── bitbench.lua
│ │ │ ├── bittest.lua
│ │ │ ├── doc/
│ │ │ │ ├── api.html
│ │ │ │ ├── bluequad-print.css
│ │ │ │ ├── bluequad.css
│ │ │ │ ├── changes.html
│ │ │ │ ├── contact.html
│ │ │ │ ├── index.html
│ │ │ │ ├── install.html
│ │ │ │ └── semantics.html
│ │ │ ├── installpath.lua
│ │ │ ├── md5test.lua
│ │ │ ├── msvcbuild.bat
│ │ │ ├── msvctest.bat
│ │ │ └── nsievebits.lua
│ │ ├── cgilua/
│ │ │ ├── Makefile
│ │ │ ├── Makefile.win
│ │ │ ├── README
│ │ │ ├── doc/
│ │ │ │ ├── br/
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── libraries.html
│ │ │ │ │ ├── license.html
│ │ │ │ │ ├── manual.html
│ │ │ │ │ ├── reference.html
│ │ │ │ │ └── sapi.html
│ │ │ │ └── us/
│ │ │ │ ├── doc.css
│ │ │ │ ├── index.html
│ │ │ │ ├── libraries.html
│ │ │ │ ├── license.html
│ │ │ │ ├── manual.html
│ │ │ │ ├── reference.html
│ │ │ │ └── sapi.html
│ │ │ ├── examples/
│ │ │ │ ├── app.lua
│ │ │ │ ├── authentication_conf.lua
│ │ │ │ ├── cgilua/
│ │ │ │ │ └── config.lua
│ │ │ │ ├── check.lua
│ │ │ │ ├── css/
│ │ │ │ │ └── doc.css
│ │ │ │ ├── index.lp
│ │ │ │ ├── login.lp
│ │ │ │ └── test.lp
│ │ │ ├── rockspec/
│ │ │ │ ├── cgilua-5.1.2-1.rockspec
│ │ │ │ ├── cgilua-5.1.2-2.rockspec
│ │ │ │ ├── cgilua-5.1.2rc1-1.rockspec
│ │ │ │ ├── cgilua-5.1.3-1.rockspec
│ │ │ │ ├── cgilua-5.1.4-1.rockspec
│ │ │ │ ├── cgilua-5.2-1.rockspec
│ │ │ │ ├── cgilua-5.2-2.rockspec
│ │ │ │ ├── cgilua-cvs-2.rockspec
│ │ │ │ ├── cgilua-cvs-3.rockspec
│ │ │ │ └── cgilua-cvs-4.rockspec
│ │ │ ├── src/
│ │ │ │ ├── cgilua/
│ │ │ │ │ ├── authentication.lua
│ │ │ │ │ ├── cgilua.lua
│ │ │ │ │ ├── cookies.lua
│ │ │ │ │ ├── dispatcher.lua
│ │ │ │ │ ├── loader.lua
│ │ │ │ │ ├── lp.lua
│ │ │ │ │ ├── mime.lua
│ │ │ │ │ ├── post.lua
│ │ │ │ │ ├── readuntil.lua
│ │ │ │ │ ├── serialize.lua
│ │ │ │ │ ├── session.lua
│ │ │ │ │ └── urlcode.lua
│ │ │ │ └── launchers/
│ │ │ │ ├── cgilua.cgi
│ │ │ │ └── cgilua.fcgi
│ │ │ └── tests/
│ │ │ ├── Makefile
│ │ │ ├── download.lua
│ │ │ ├── env.lua
│ │ │ ├── overview.lp
│ │ │ ├── prepara_sql2.lua
│ │ │ ├── tcgi1.lua
│ │ │ ├── test.html
│ │ │ ├── test_conc.lua
│ │ │ ├── test_cookies.lp
│ │ │ ├── test_cookies.lua
│ │ │ ├── test_err.lua
│ │ │ ├── test_fs.lua
│ │ │ ├── test_htk.lua
│ │ │ ├── test_lib.lua
│ │ │ ├── test_main.html
│ │ │ ├── test_main.lp
│ │ │ ├── test_main.lua
│ │ │ ├── test_session.lua
│ │ │ ├── test_sql.lua
│ │ │ ├── test_sql2.lua
│ │ │ ├── test_variables.lp
│ │ │ ├── tfcgi1.lua
│ │ │ └── tmod1.lua
│ │ ├── clipboard/
│ │ │ ├── clipboard.c
│ │ │ └── clipboard.jam
│ │ ├── copas/
│ │ │ ├── .gitignore
│ │ │ ├── .travis.yml
│ │ │ ├── Makefile
│ │ │ ├── Makefile.win
│ │ │ ├── README
│ │ │ ├── README.md
│ │ │ ├── doc/
│ │ │ │ └── us/
│ │ │ │ ├── doc.css
│ │ │ │ ├── index.html
│ │ │ │ ├── license.html
│ │ │ │ ├── manual.html
│ │ │ │ └── reference.html
│ │ │ ├── rockspec/
│ │ │ │ ├── copas-1.1.2-1.rockspec
│ │ │ │ ├── copas-1.1.3-1.rockspec
│ │ │ │ ├── copas-1.1.4-1.rockspec
│ │ │ │ ├── copas-1.1.5-1.rockspec
│ │ │ │ ├── copas-1.1.6-1.rockspec
│ │ │ │ ├── copas-1.2.0-1.rockspec
│ │ │ │ ├── copas-1.2.1-1.rockspec
│ │ │ │ ├── copas-2.0.0-1.rockspec
│ │ │ │ ├── copas-2.0.0-2.rockspec
│ │ │ │ ├── copas-2.0.1-1.rockspec
│ │ │ │ └── copas-cvs-4.rockspec
│ │ │ ├── src/
│ │ │ │ ├── copas/
│ │ │ │ │ ├── ftp.lua
│ │ │ │ │ ├── http.lua
│ │ │ │ │ ├── limit.lua
│ │ │ │ │ └── smtp.lua
│ │ │ │ └── copas.lua
│ │ │ └── tests/
│ │ │ ├── certs/
│ │ │ │ ├── clientA.pem
│ │ │ │ ├── clientAcert.pem
│ │ │ │ ├── clientAkey.pem
│ │ │ │ ├── clientAreq.pem
│ │ │ │ ├── rootA.pem
│ │ │ │ ├── rootAkey.pem
│ │ │ │ ├── rootAreq.pem
│ │ │ │ ├── serverA.pem
│ │ │ │ ├── serverAcert.pem
│ │ │ │ ├── serverAkey.pem
│ │ │ │ └── serverAreq.pem
│ │ │ ├── clientA.pem
│ │ │ ├── clientAcert.pem
│ │ │ ├── clientAkey.pem
│ │ │ ├── clientAreq.pem
│ │ │ ├── connecttwice.lua
│ │ │ ├── cosocket.lua
│ │ │ ├── exit.lua
│ │ │ ├── exittest.lua
│ │ │ ├── httpredirect.lua
│ │ │ ├── largetransfer.lua
│ │ │ ├── limit.lua
│ │ │ ├── request.lua
│ │ │ ├── rootA.pem
│ │ │ ├── rootAkey.pem
│ │ │ ├── rootAreq.pem
│ │ │ ├── serverA.pem
│ │ │ ├── serverAcert.pem
│ │ │ ├── serverAkey.pem
│ │ │ ├── serverAreq.pem
│ │ │ ├── test.lua
│ │ │ ├── testasyncspeed.lua
│ │ │ ├── testexit.lua
│ │ │ ├── testhttp.lua
│ │ │ ├── testhttps.lua
│ │ │ └── testlimit.lua
│ │ ├── cosmo/
│ │ │ ├── Makefile
│ │ │ ├── Makefile.win
│ │ │ ├── README
│ │ │ ├── configure
│ │ │ ├── doc/
│ │ │ │ ├── cosmo.md
│ │ │ │ ├── dummy
│ │ │ │ └── index.html
│ │ │ ├── rockspec/
│ │ │ │ ├── cosmo-10.03.31-1.rockspec
│ │ │ │ ├── cosmo-10.04.06-1.rockspec
│ │ │ │ ├── cosmo-13.01.30-1.rockspec
│ │ │ │ ├── cosmo-14.03.04-1.rockspec
│ │ │ │ ├── cosmo-8.02.18-1.rockspec
│ │ │ │ ├── cosmo-8.04.04-1.rockspec
│ │ │ │ ├── cosmo-8.04.14-1.rockspec
│ │ │ │ ├── cosmo-8.04.14-2.rockspec
│ │ │ │ ├── cosmo-9.09.22-1.rockspec
│ │ │ │ └── cosmo-current-1.rockspec
│ │ │ ├── samples/
│ │ │ │ └── sample.lua
│ │ │ ├── src/
│ │ │ │ ├── cosmo/
│ │ │ │ │ ├── fill.lua
│ │ │ │ │ └── grammar.lua
│ │ │ │ └── cosmo.lua
│ │ │ └── tests/
│ │ │ └── test_cosmo.lua
│ │ ├── coxpcall/
│ │ │ ├── Makefile
│ │ │ ├── Makefile.win
│ │ │ ├── README.md
│ │ │ ├── configure
│ │ │ ├── doc/
│ │ │ │ ├── doc.css
│ │ │ │ ├── index.html
│ │ │ │ └── license.html
│ │ │ ├── rockspec/
│ │ │ │ ├── coxpcall-1.11.0-1.rockspec
│ │ │ │ ├── coxpcall-1.12.0-1.rockspec
│ │ │ │ ├── coxpcall-1.12.0rc1-1.rockspec
│ │ │ │ ├── coxpcall-1.13.0-1.rockspec
│ │ │ │ ├── coxpcall-1.13.0-2.rockspec
│ │ │ │ ├── coxpcall-1.14.0-1.rockspec
│ │ │ │ ├── coxpcall-1.14.0-2.rockspec
│ │ │ │ ├── coxpcall-1.15.0-1.rockspec
│ │ │ │ ├── coxpcall-1.16.0-1.rockspec
│ │ │ │ ├── coxpcall-cvs-1.rockspec
│ │ │ │ ├── coxpcall-cvs-2.rockspec
│ │ │ │ └── coxpcall-scm-1.rockspec
│ │ │ └── src/
│ │ │ └── coxpcall.lua
│ │ ├── date/
│ │ │ ├── .busted
│ │ │ ├── .travis.yml
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── config.ld
│ │ │ ├── date-2.1.1-1.rockspec
│ │ │ ├── date.lua
│ │ │ ├── doc/
│ │ │ │ └── index.html
│ │ │ ├── samples/
│ │ │ │ ├── mkcalendar.lua
│ │ │ │ ├── mkisocal.lua
│ │ │ │ └── tests.lua
│ │ │ └── spec/
│ │ │ └── date_spec.lua
│ │ ├── dotnet/
│ │ │ ├── dotnet.cpp
│ │ │ ├── dotnet.jam
│ │ │ ├── luastdcall.cpp
│ │ │ └── luastdcall.h
│ │ ├── dotnetinterface/
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── CheckType.cs
│ │ │ ├── GenerateEventAssembly.cs
│ │ │ ├── Lua.cs
│ │ │ ├── LuaDLL.cs
│ │ │ ├── LuaException.cs
│ │ │ ├── Metatables.cs
│ │ │ ├── MethodWrapper.cs
│ │ │ ├── ObjectTranslator.cs
│ │ │ ├── ProxyType.cs
│ │ │ ├── README.txt
│ │ │ ├── dotnetinterface.csproj
│ │ │ └── luainterface.snk
│ │ ├── expand/
│ │ │ └── expand.lua
│ │ ├── ezdav/
│ │ │ ├── ezdav.jam
│ │ │ └── src/
│ │ │ ├── buffer.c
│ │ │ ├── buffer.h
│ │ │ ├── davglob.c
│ │ │ ├── davglob.h
│ │ │ ├── ezdav.c
│ │ │ └── ezdavlib/
│ │ │ ├── .gitignore
│ │ │ ├── Jamfile.jam
│ │ │ ├── README.md
│ │ │ ├── changelog.txt
│ │ │ ├── date_decode.c
│ │ │ ├── date_decode.h
│ │ │ ├── davclient/
│ │ │ │ ├── CreateJamVS2010Workspace.bat
│ │ │ │ ├── Jamfile.jam
│ │ │ │ ├── davclient.c
│ │ │ │ ├── tlsf.c
│ │ │ │ ├── tlsf.h
│ │ │ │ └── tlsfbits.h
│ │ │ ├── digcalc.c
│ │ │ ├── digcalc.h
│ │ │ ├── global.h
│ │ │ ├── high_level_webdav_functions.c
│ │ │ ├── high_level_webdav_functions.h
│ │ │ ├── http.c
│ │ │ ├── http.h
│ │ │ ├── http_storage.c
│ │ │ ├── http_storage.h
│ │ │ ├── md5.c
│ │ │ ├── md5.h
│ │ │ ├── strutl.c
│ │ │ ├── strutl.h
│ │ │ ├── webdav.c
│ │ │ ├── webdav.def
│ │ │ ├── webdav.h
│ │ │ ├── xml_tree.c
│ │ │ └── xml_tree.h
│ │ ├── filefind/
│ │ │ ├── doc/
│ │ │ │ └── us/
│ │ │ │ ├── doc.bat
│ │ │ │ ├── doc.css
│ │ │ │ ├── index.html
│ │ │ │ ├── index.md
│ │ │ │ └── makedoc.lua
│ │ │ ├── filefind.jam
│ │ │ ├── readme.md
│ │ │ ├── src/
│ │ │ │ ├── buffer.c
│ │ │ │ ├── buffer.h
│ │ │ │ ├── filefind.c
│ │ │ │ ├── fileglob.c
│ │ │ │ └── fileglob.h
│ │ │ └── tests/
│ │ │ └── test.lua
│ │ ├── getopt/
│ │ │ ├── getopt.jam
│ │ │ ├── src/
│ │ │ │ └── getopt.lua
│ │ │ └── test/
│ │ │ └── testgetopt.lua
│ │ ├── lanes/
│ │ │ ├── ABOUT
│ │ │ ├── BUGS
│ │ │ ├── CHANGES
│ │ │ ├── CMakeLists.txt
│ │ │ ├── COPYRIGHT
│ │ │ ├── Makefile
│ │ │ ├── README
│ │ │ ├── TODO
│ │ │ ├── dist.cmake
│ │ │ ├── dist.info
│ │ │ ├── docs/
│ │ │ │ ├── Lua multithreading choices.graffle
│ │ │ │ ├── comparison.html
│ │ │ │ ├── index.html
│ │ │ │ └── performance.ods
│ │ │ ├── lanes-3.8.3-1.rockspec
│ │ │ ├── lanes-3.9.6-1.rockspec
│ │ │ ├── make-vc.cmd
│ │ │ ├── setup-vc.cmd
│ │ │ ├── src/
│ │ │ │ ├── .gitignore
│ │ │ │ ├── Makefile
│ │ │ │ ├── compat.c
│ │ │ │ ├── compat.h
│ │ │ │ ├── deep.c
│ │ │ │ ├── deep.h
│ │ │ │ ├── keeper.c
│ │ │ │ ├── keeper.h
│ │ │ │ ├── lanes.c
│ │ │ │ ├── lanes.h
│ │ │ │ ├── lanes.lua
│ │ │ │ ├── threading.c
│ │ │ │ ├── threading.h
│ │ │ │ ├── tools.c
│ │ │ │ └── tools.h
│ │ │ └── tests/
│ │ │ ├── appendud.lua
│ │ │ ├── argtable.lua
│ │ │ ├── assert.lua
│ │ │ ├── atexit.lua
│ │ │ ├── atomic.lua
│ │ │ ├── basic.lua
│ │ │ ├── cancel.lua
│ │ │ ├── cyclic.lua
│ │ │ ├── ehynes.lua
│ │ │ ├── errhangtest.lua
│ │ │ ├── error.lua
│ │ │ ├── fibonacci.lua
│ │ │ ├── fifo.lua
│ │ │ ├── finalizer.lua
│ │ │ ├── func_is_string.lua
│ │ │ ├── hangtest.lua
│ │ │ ├── irayo_closure.lua
│ │ │ ├── irayo_recursive.lua
│ │ │ ├── keeper.lua
│ │ │ ├── launchtest.lua
│ │ │ ├── linda_perf.lua
│ │ │ ├── nameof.lua
│ │ │ ├── objects.lua
│ │ │ ├── package.lua
│ │ │ ├── parallel_os_calls.lua
│ │ │ ├── perftest.lua
│ │ │ ├── pingpong.lua
│ │ │ ├── protectproxy.lua
│ │ │ ├── recursive.lua
│ │ │ ├── require.lua
│ │ │ ├── rupval.lua
│ │ │ └── timer.lua
│ │ ├── lbuffer/
│ │ │ ├── .gitignore
│ │ │ ├── Makefile
│ │ │ ├── README.rst
│ │ │ ├── lb_interface.c
│ │ │ ├── lbuffer.c
│ │ │ ├── lbuffer.h
│ │ │ ├── lua_with_lbuffer/
│ │ │ │ ├── linit_modified.c
│ │ │ │ └── luavs_lbuffer.bat
│ │ │ └── test.lua
│ │ ├── lexers/
│ │ │ ├── c.lua
│ │ │ ├── csv.lua
│ │ │ ├── ini.lua
│ │ │ └── lexers.jam
│ │ ├── libexpat/
│ │ │ ├── .gitignore
│ │ │ ├── .travis.sh
│ │ │ ├── .travis.yml
│ │ │ ├── README.md
│ │ │ ├── appveyor.yml
│ │ │ ├── expat/
│ │ │ │ ├── .gitignore
│ │ │ │ ├── AUTHORS
│ │ │ │ ├── CMake.README
│ │ │ │ ├── CMakeLists.txt
│ │ │ │ ├── COPYING
│ │ │ │ ├── Changes
│ │ │ │ ├── ConfigureChecks.cmake
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── README.md
│ │ │ │ ├── buildconf.sh
│ │ │ │ ├── clean_coverage.sh
│ │ │ │ ├── configure.ac
│ │ │ │ ├── conftools/
│ │ │ │ │ ├── .gitignore
│ │ │ │ │ ├── PrintPath
│ │ │ │ │ ├── ac_c_bigendian_cross.m4
│ │ │ │ │ ├── expat.m4
│ │ │ │ │ └── get-version.sh
│ │ │ │ ├── coverage.sh
│ │ │ │ ├── doc/
│ │ │ │ │ ├── .gitignore
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── reference.html
│ │ │ │ │ ├── style.css
│ │ │ │ │ └── xmlwf.xml
│ │ │ │ ├── examples/
│ │ │ │ │ ├── .gitignore
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── elements.c
│ │ │ │ │ ├── elements.vcxproj
│ │ │ │ │ ├── elements.vcxproj.filters
│ │ │ │ │ ├── outline.c
│ │ │ │ │ ├── outline.vcxproj
│ │ │ │ │ └── outline.vcxproj.filters
│ │ │ │ ├── expat.pc.in
│ │ │ │ ├── expat.sln
│ │ │ │ ├── expat.spec
│ │ │ │ ├── expat_config.h.cmake
│ │ │ │ ├── gennmtab/
│ │ │ │ │ ├── .gitignore
│ │ │ │ │ └── gennmtab.c
│ │ │ │ ├── lib/
│ │ │ │ │ ├── .gitignore
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── ascii.h
│ │ │ │ │ ├── asciitab.h
│ │ │ │ │ ├── expat.vcxproj
│ │ │ │ │ ├── expat.vcxproj.filters
│ │ │ │ │ ├── expat_external.h
│ │ │ │ │ ├── expat_static.vcxproj
│ │ │ │ │ ├── expat_static.vcxproj.filters
│ │ │ │ │ ├── expatw.vcxproj
│ │ │ │ │ ├── expatw.vcxproj.filters
│ │ │ │ │ ├── expatw_static.vcxproj
│ │ │ │ │ ├── expatw_static.vcxproj.filters
│ │ │ │ │ ├── iasciitab.h
│ │ │ │ │ ├── internal.h
│ │ │ │ │ ├── latin1tab.h
│ │ │ │ │ ├── libexpat.def
│ │ │ │ │ ├── libexpatw.def
│ │ │ │ │ ├── loadlibrary.c
│ │ │ │ │ ├── nametab.h
│ │ │ │ │ ├── siphash.h
│ │ │ │ │ ├── utf8tab.h
│ │ │ │ │ ├── winconfig.h
│ │ │ │ │ ├── xmlparse.c
│ │ │ │ │ ├── xmlrole.c
│ │ │ │ │ ├── xmlrole.h
│ │ │ │ │ ├── xmltok.c
│ │ │ │ │ ├── xmltok.h
│ │ │ │ │ ├── xmltok_impl.c
│ │ │ │ │ ├── xmltok_impl.h
│ │ │ │ │ └── xmltok_ns.c
│ │ │ │ ├── memory-sanitizer-blacklist.txt
│ │ │ │ ├── qa.sh
│ │ │ │ ├── run.sh.in
│ │ │ │ ├── test-driver-wrapper.sh
│ │ │ │ ├── tests/
│ │ │ │ │ ├── .gitignore
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── README.txt
│ │ │ │ │ ├── benchmark/
│ │ │ │ │ │ ├── .gitignore
│ │ │ │ │ │ ├── Makefile.am
│ │ │ │ │ │ ├── README.txt
│ │ │ │ │ │ ├── benchmark.c
│ │ │ │ │ │ ├── benchmark.sln
│ │ │ │ │ │ └── benchmark.vcxproj
│ │ │ │ │ ├── chardata.c
│ │ │ │ │ ├── chardata.h
│ │ │ │ │ ├── memcheck.c
│ │ │ │ │ ├── memcheck.h
│ │ │ │ │ ├── minicheck.c
│ │ │ │ │ ├── minicheck.h
│ │ │ │ │ ├── runtests.c
│ │ │ │ │ ├── runtests.sln
│ │ │ │ │ ├── runtests.vcxproj
│ │ │ │ │ ├── runtests.vcxproj.filters
│ │ │ │ │ ├── runtestspp.cpp
│ │ │ │ │ ├── structdata.c
│ │ │ │ │ ├── structdata.h
│ │ │ │ │ ├── udiffer.py
│ │ │ │ │ ├── xmltest.log.expected
│ │ │ │ │ └── xmltest.sh
│ │ │ │ └── win32/
│ │ │ │ ├── .gitignore
│ │ │ │ ├── MANIFEST.txt
│ │ │ │ ├── README.txt
│ │ │ │ └── expat.iss
│ │ │ └── testdata/
│ │ │ ├── README.txt
│ │ │ └── largefiles/
│ │ │ ├── README.txt
│ │ │ ├── nes96.xml
│ │ │ ├── ns_att_test.xml
│ │ │ ├── recset.xml
│ │ │ └── wordnet_glossary-20010201.rdf
│ │ ├── loop/
│ │ │ ├── LICENSE
│ │ │ ├── RELEASE
│ │ │ ├── doc/
│ │ │ │ ├── contact.html
│ │ │ │ ├── index.html
│ │ │ │ ├── latests.html
│ │ │ │ ├── layout1.css
│ │ │ │ ├── layout2.css
│ │ │ │ ├── layout3.css
│ │ │ │ ├── library/
│ │ │ │ │ ├── collection/
│ │ │ │ │ │ ├── MapWithArrayOfKeys.html
│ │ │ │ │ │ ├── ObjectCache.html
│ │ │ │ │ │ ├── OrderedSet.html
│ │ │ │ │ │ ├── PriorityQueue.html
│ │ │ │ │ │ ├── UnorderedArray.html
│ │ │ │ │ │ └── UnorderedArraySet.html
│ │ │ │ │ ├── compiler/
│ │ │ │ │ │ ├── Arguments.html
│ │ │ │ │ │ ├── Conditional.html
│ │ │ │ │ │ └── Expression.html
│ │ │ │ │ ├── debug/
│ │ │ │ │ │ ├── Inspector.html
│ │ │ │ │ │ ├── Matcher.html
│ │ │ │ │ │ ├── Verbose.html
│ │ │ │ │ │ └── Viewer.html
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── object/
│ │ │ │ │ │ ├── Exception.html
│ │ │ │ │ │ ├── Publisher.html
│ │ │ │ │ │ └── Wrapper.html
│ │ │ │ │ ├── overview.html
│ │ │ │ │ ├── serial/
│ │ │ │ │ │ ├── FileStream.html
│ │ │ │ │ │ ├── Serializer.html
│ │ │ │ │ │ ├── SocketStream.html
│ │ │ │ │ │ └── StringStream.html
│ │ │ │ │ └── thread/
│ │ │ │ │ ├── CoSocket.html
│ │ │ │ │ ├── IOScheduler.html
│ │ │ │ │ ├── Scheduler.html
│ │ │ │ │ ├── SocketScheduler.html
│ │ │ │ │ └── Timer.html
│ │ │ │ ├── loop.css
│ │ │ │ ├── manual/
│ │ │ │ │ ├── basics.html
│ │ │ │ │ ├── classops.html
│ │ │ │ │ ├── components.html
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── intro.html
│ │ │ │ │ └── models.html
│ │ │ │ ├── news.html
│ │ │ │ └── release/
│ │ │ │ ├── changes.html
│ │ │ │ ├── index.html
│ │ │ │ ├── preload.html
│ │ │ │ └── previous.html
│ │ │ └── lua/
│ │ │ ├── loop/
│ │ │ │ ├── base.lua
│ │ │ │ ├── cached.lua
│ │ │ │ ├── collection/
│ │ │ │ │ ├── MapWithArrayOfKeys.lua
│ │ │ │ │ ├── ObjectCache.lua
│ │ │ │ │ ├── OrderedSet.lua
│ │ │ │ │ ├── PriorityQueue.lua
│ │ │ │ │ ├── UnorderedArray.lua
│ │ │ │ │ └── UnorderedArraySet.lua
│ │ │ │ ├── compiler/
│ │ │ │ │ ├── Arguments.lua
│ │ │ │ │ ├── Conditional.lua
│ │ │ │ │ └── Expression.lua
│ │ │ │ ├── component/
│ │ │ │ │ ├── base.lua
│ │ │ │ │ ├── contained.lua
│ │ │ │ │ ├── dynamic.lua
│ │ │ │ │ ├── intercepted.lua
│ │ │ │ │ └── wrapped.lua
│ │ │ │ ├── debug/
│ │ │ │ │ ├── Inspector.lua
│ │ │ │ │ ├── Matcher.lua
│ │ │ │ │ ├── Verbose.lua
│ │ │ │ │ └── Viewer.lua
│ │ │ │ ├── multiple.lua
│ │ │ │ ├── object/
│ │ │ │ │ ├── Exception.lua
│ │ │ │ │ ├── Publisher.lua
│ │ │ │ │ └── Wrapper.lua
│ │ │ │ ├── scoped.lua
│ │ │ │ ├── serial/
│ │ │ │ │ ├── FileStream.lua
│ │ │ │ │ ├── Serializer.lua
│ │ │ │ │ ├── SocketStream.lua
│ │ │ │ │ └── StringStream.lua
│ │ │ │ ├── simple.lua
│ │ │ │ ├── table.lua
│ │ │ │ └── thread/
│ │ │ │ ├── CoSocket.lua
│ │ │ │ ├── IOScheduler.lua
│ │ │ │ ├── Scheduler.lua
│ │ │ │ ├── SocketScheduler.lua
│ │ │ │ └── Timer.lua
│ │ │ ├── precompiler.lua
│ │ │ └── preloader.lua
│ │ ├── lpeg/
│ │ │ ├── HISTORY
│ │ │ ├── lpcap.c
│ │ │ ├── lpcap.h
│ │ │ ├── lpcode.c
│ │ │ ├── lpcode.h
│ │ │ ├── lpeg.html
│ │ │ ├── lpprint.c
│ │ │ ├── lpprint.h
│ │ │ ├── lptree.c
│ │ │ ├── lptree.h
│ │ │ ├── lptypes.h
│ │ │ ├── lpvm.c
│ │ │ ├── lpvm.h
│ │ │ ├── makefile
│ │ │ ├── re.html
│ │ │ ├── re.lua
│ │ │ └── test.lua
│ │ ├── lqt/
│ │ │ ├── BUILD
│ │ │ ├── CMakeLists.txt
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── TODO
│ │ │ ├── common/
│ │ │ │ ├── lqt_common.cpp
│ │ │ │ ├── lqt_common.hpp
│ │ │ │ ├── lqt_qt.cpp
│ │ │ │ └── lqt_qt.hpp
│ │ │ ├── cpptoxml/
│ │ │ │ ├── CMakeLists.txt
│ │ │ │ ├── Jamfile.jam
│ │ │ │ ├── README
│ │ │ │ ├── cpptoxml.pro
│ │ │ │ ├── gpl-2.0.txt
│ │ │ │ ├── main.cpp
│ │ │ │ └── parser/
│ │ │ │ ├── ast.cpp
│ │ │ │ ├── ast.h
│ │ │ │ ├── binder.cpp
│ │ │ │ ├── binder.h
│ │ │ │ ├── class_compiler.cpp
│ │ │ │ ├── class_compiler.h
│ │ │ │ ├── codemodel.cpp
│ │ │ │ ├── codemodel.h
│ │ │ │ ├── codemodel_finder.cpp
│ │ │ │ ├── codemodel_finder.h
│ │ │ │ ├── codemodel_fwd.h
│ │ │ │ ├── codemodel_pointer.h
│ │ │ │ ├── compiler_utils.cpp
│ │ │ │ ├── compiler_utils.h
│ │ │ │ ├── control.cpp
│ │ │ │ ├── control.h
│ │ │ │ ├── declarator_compiler.cpp
│ │ │ │ ├── declarator_compiler.h
│ │ │ │ ├── default_visitor.cpp
│ │ │ │ ├── default_visitor.h
│ │ │ │ ├── dumptree.cpp
│ │ │ │ ├── dumptree.h
│ │ │ │ ├── include/
│ │ │ │ │ └── stdarg.h
│ │ │ │ ├── lexer.cpp
│ │ │ │ ├── lexer.h
│ │ │ │ ├── list.cpp
│ │ │ │ ├── list.h
│ │ │ │ ├── name_compiler.cpp
│ │ │ │ ├── name_compiler.h
│ │ │ │ ├── parser.cpp
│ │ │ │ ├── parser.h
│ │ │ │ ├── r++.macros
│ │ │ │ ├── rpp/
│ │ │ │ │ ├── builtin-macros.cpp
│ │ │ │ │ ├── pp-cctype.h
│ │ │ │ │ ├── pp-configuration
│ │ │ │ │ ├── pp-engine-bits.h
│ │ │ │ │ ├── pp-engine.h
│ │ │ │ │ ├── pp-environment.h
│ │ │ │ │ ├── pp-fwd.h
│ │ │ │ │ ├── pp-internal.h
│ │ │ │ │ ├── pp-iterator.h
│ │ │ │ │ ├── pp-macro-expander.h
│ │ │ │ │ ├── pp-macro.h
│ │ │ │ │ ├── pp-main.cpp
│ │ │ │ │ ├── pp-qt-configuration
│ │ │ │ │ ├── pp-qt-configuration-win
│ │ │ │ │ ├── pp-scanner.h
│ │ │ │ │ ├── pp-string.h
│ │ │ │ │ ├── pp-symbol.h
│ │ │ │ │ ├── pp.h
│ │ │ │ │ ├── preprocessor.cpp
│ │ │ │ │ ├── preprocessor.h
│ │ │ │ │ └── rpp.pri
│ │ │ │ ├── rpp-allocator.h
│ │ │ │ ├── rxx.pri
│ │ │ │ ├── rxx.pro
│ │ │ │ ├── rxx_allocator.h
│ │ │ │ ├── smallobject.cpp
│ │ │ │ ├── smallobject.h
│ │ │ │ ├── symbol.h
│ │ │ │ ├── tokens.cpp
│ │ │ │ ├── tokens.h
│ │ │ │ ├── type_compiler.cpp
│ │ │ │ ├── type_compiler.h
│ │ │ │ ├── visitor.cpp
│ │ │ │ └── visitor.h
│ │ │ ├── doc/
│ │ │ │ ├── USAGE.md
│ │ │ │ └── no-cmake-build.txt
│ │ │ ├── generator/
│ │ │ │ ├── class_types.lua
│ │ │ │ ├── classes.lua
│ │ │ │ ├── enums.lua
│ │ │ │ ├── generator.lua
│ │ │ │ ├── operators.lua
│ │ │ │ ├── properties.lua
│ │ │ │ ├── qt_internal.lua
│ │ │ │ ├── qtemplates.lua
│ │ │ │ ├── qtypes.lua
│ │ │ │ ├── signalslot.lua
│ │ │ │ ├── templates.lua
│ │ │ │ ├── types.lua
│ │ │ │ ├── virtuals.lua
│ │ │ │ └── xml.lua
│ │ │ └── test/
│ │ │ ├── file_test.lua
│ │ │ ├── mm.lua
│ │ │ ├── noqt/
│ │ │ │ ├── n.lua
│ │ │ │ ├── n1
│ │ │ │ ├── n2
│ │ │ │ ├── n3
│ │ │ │ └── noqt
│ │ │ ├── sql_test.lua
│ │ │ ├── t1.lua
│ │ │ ├── t2.lua
│ │ │ ├── t3.lua
│ │ │ ├── t4.lua
│ │ │ ├── t5.lua
│ │ │ ├── t6.lua
│ │ │ ├── t7.lua
│ │ │ ├── virt_test.lua
│ │ │ └── webview.lua
│ │ ├── lrexlib/
│ │ │ ├── .gitignore
│ │ │ ├── ChangeLog.old
│ │ │ ├── LICENSE
│ │ │ ├── Makefile
│ │ │ ├── NEWS
│ │ │ ├── README.rst
│ │ │ ├── doc/
│ │ │ │ ├── .gitignore
│ │ │ │ ├── Makefile
│ │ │ │ ├── SciTE.properties
│ │ │ │ ├── html4css1.css
│ │ │ │ ├── license.html
│ │ │ │ ├── lrexlib.css
│ │ │ │ └── manual.txt
│ │ │ ├── luarocks-config.lua
│ │ │ ├── mkrockspecs.lua
│ │ │ ├── rockspecs.lua
│ │ │ ├── src/
│ │ │ │ ├── algo.h
│ │ │ │ ├── common.c
│ │ │ │ ├── common.h
│ │ │ │ ├── gnu/
│ │ │ │ │ └── lgnu.c
│ │ │ │ ├── oniguruma/
│ │ │ │ │ ├── lonig.c
│ │ │ │ │ └── lonig_f.c
│ │ │ │ ├── pcre/
│ │ │ │ │ ├── lpcre.c
│ │ │ │ │ └── lpcre_f.c
│ │ │ │ ├── posix/
│ │ │ │ │ └── lposix.c
│ │ │ │ └── tre/
│ │ │ │ ├── ltre.c
│ │ │ │ └── ltre_w.c
│ │ │ ├── test/
│ │ │ │ ├── README
│ │ │ │ ├── common_sets.lua
│ │ │ │ ├── emacs_sets.lua
│ │ │ │ ├── gnu_sets.lua
│ │ │ │ ├── luatest.lua
│ │ │ │ ├── oniguruma_sets.lua
│ │ │ │ ├── pat2pcre.lua
│ │ │ │ ├── pcre_sets.lua
│ │ │ │ ├── pcre_sets2.lua
│ │ │ │ ├── posix_sets.lua
│ │ │ │ ├── runtest.lua
│ │ │ │ ├── scite.properties
│ │ │ │ ├── spencer_sets.lua
│ │ │ │ └── tre_sets.lua
│ │ │ └── windows/
│ │ │ └── mingw/
│ │ │ ├── Makefile
│ │ │ ├── _mingw.mak
│ │ │ ├── docs.mak
│ │ │ ├── rex_gnu.mak
│ │ │ ├── rex_onig.mak
│ │ │ ├── rex_pcre.mak
│ │ │ ├── rex_spencer.mak
│ │ │ └── rex_tre.mak
│ │ ├── lsqlite3/
│ │ │ ├── HISTORY
│ │ │ ├── Makefile
│ │ │ ├── doc/
│ │ │ │ └── lsqlite3.wiki
│ │ │ ├── examples/
│ │ │ │ ├── aggregate.lua
│ │ │ │ ├── function.lua
│ │ │ │ ├── hooks_advanced.lua
│ │ │ │ ├── order.lua
│ │ │ │ ├── simple.lua
│ │ │ │ ├── smart.lua
│ │ │ │ ├── statement.lua
│ │ │ │ ├── tracing.lua
│ │ │ │ └── update_hook.lua
│ │ │ ├── extras/
│ │ │ │ ├── Makefile
│ │ │ │ └── installpath.lua
│ │ │ ├── lsqlite3-0.9.1-1.rockspec
│ │ │ ├── lsqlite3.c
│ │ │ └── test/
│ │ │ ├── test.lua
│ │ │ └── tests-sqlite3.lua
│ │ ├── lua-cityhash/
│ │ │ ├── City.cpp
│ │ │ ├── City.h
│ │ │ ├── Platform.h
│ │ │ ├── lcityhash.cpp
│ │ │ ├── lua-cityhash.jam
│ │ │ └── pstdint.h
│ │ ├── lua-cjson/
│ │ │ ├── CMakeLists.txt
│ │ │ ├── LICENSE
│ │ │ ├── Makefile
│ │ │ ├── NEWS
│ │ │ ├── THANKS
│ │ │ ├── dtoa.c
│ │ │ ├── dtoa_config.h
│ │ │ ├── fpconv.c
│ │ │ ├── fpconv.h
│ │ │ ├── g_fmt.c
│ │ │ ├── lua/
│ │ │ │ ├── cjson/
│ │ │ │ │ └── util.lua
│ │ │ │ ├── json2lua.lua
│ │ │ │ └── lua2json.lua
│ │ │ ├── lua-cjson-2.0.0-1.rockspec
│ │ │ ├── lua-cjson.spec
│ │ │ ├── lua_cjson.c
│ │ │ ├── manual.html
│ │ │ ├── manual.txt
│ │ │ ├── performance.html
│ │ │ ├── performance.txt
│ │ │ ├── rfc4627.txt
│ │ │ ├── runtests.sh
│ │ │ ├── strbuf.c
│ │ │ ├── strbuf.h
│ │ │ └── tests/
│ │ │ ├── README
│ │ │ ├── bench.lua
│ │ │ ├── example1.json
│ │ │ ├── example2.json
│ │ │ ├── example3.json
│ │ │ ├── example4.json
│ │ │ ├── example5.json
│ │ │ ├── genutf8.pl
│ │ │ ├── numbers.json
│ │ │ ├── rfc-example1.json
│ │ │ ├── rfc-example2.json
│ │ │ ├── test.lua
│ │ │ └── types.json
│ │ ├── lua-curl/
│ │ │ ├── .appveyor/
│ │ │ │ ├── install.bat
│ │ │ │ ├── install_curl.bat
│ │ │ │ └── pack_artifact.bat
│ │ │ ├── .config
│ │ │ ├── .gitignore
│ │ │ ├── .travis/
│ │ │ │ ├── platform.sh
│ │ │ │ └── setup_uv.sh
│ │ │ ├── .travis.yml
│ │ │ ├── LICENSE
│ │ │ ├── Makefile
│ │ │ ├── README.md
│ │ │ ├── appveyor.yml
│ │ │ ├── doc/
│ │ │ │ ├── config.ld
│ │ │ │ ├── curl.ldoc
│ │ │ │ └── lcurl.ldoc
│ │ │ ├── examples/
│ │ │ │ ├── cURLv2/
│ │ │ │ │ ├── browser.lua
│ │ │ │ │ ├── file.lua
│ │ │ │ │ ├── multi.lua
│ │ │ │ │ ├── post_stream.lua
│ │ │ │ │ └── rss.lua
│ │ │ │ ├── cURLv3/
│ │ │ │ │ ├── file.lua
│ │ │ │ │ ├── multi.lua
│ │ │ │ │ ├── multi2.lua
│ │ │ │ │ ├── multi3.lua
│ │ │ │ │ ├── pop3.lua
│ │ │ │ │ ├── post_form.lua
│ │ │ │ │ ├── post_json.lua
│ │ │ │ │ ├── post_mime.lua
│ │ │ │ │ ├── rss.lua
│ │ │ │ │ └── uvwget.lua
│ │ │ │ └── lcurl/
│ │ │ │ ├── crul_info.lua
│ │ │ │ ├── curl_debug.lua
│ │ │ │ ├── curl_info.lua
│ │ │ │ ├── easy.obj.lua
│ │ │ │ ├── file.lua
│ │ │ │ ├── fnmatch.lua
│ │ │ │ ├── ftpupload.lua
│ │ │ │ ├── multi.lua
│ │ │ │ ├── multi_iterator.lua
│ │ │ │ ├── pause.lua
│ │ │ │ ├── post.lua
│ │ │ │ ├── post_stream.lua
│ │ │ │ ├── share.lua
│ │ │ │ └── smtp-mime.lua
│ │ │ ├── lakeconfig.lua
│ │ │ ├── lakefile
│ │ │ ├── rockspecs/
│ │ │ │ ├── lua-curl-0.3.0-1.rockspec
│ │ │ │ ├── lua-curl-0.3.1-1.rockspec
│ │ │ │ ├── lua-curl-0.3.10-1.rockspec
│ │ │ │ ├── lua-curl-0.3.11-1.rockspec
│ │ │ │ ├── lua-curl-0.3.2-1.rockspec
│ │ │ │ ├── lua-curl-0.3.3-1.rockspec
│ │ │ │ ├── lua-curl-0.3.4-1.rockspec
│ │ │ │ ├── lua-curl-0.3.5-1.rockspec
│ │ │ │ ├── lua-curl-0.3.6-1.rockspec
│ │ │ │ ├── lua-curl-0.3.7-1.rockspec
│ │ │ │ ├── lua-curl-0.3.8-1.rockspec
│ │ │ │ ├── lua-curl-0.3.8-2.rockspec
│ │ │ │ ├── lua-curl-0.3.9-1.rockspec
│ │ │ │ └── lua-curl-scm-0.rockspec
│ │ │ ├── src/
│ │ │ │ ├── l52util.c
│ │ │ │ ├── l52util.h
│ │ │ │ ├── lceasy.c
│ │ │ │ ├── lceasy.h
│ │ │ │ ├── lcerr_easy.h
│ │ │ │ ├── lcerr_form.h
│ │ │ │ ├── lcerr_multi.h
│ │ │ │ ├── lcerr_share.h
│ │ │ │ ├── lcerr_url.h
│ │ │ │ ├── lcerror.c
│ │ │ │ ├── lcerror.h
│ │ │ │ ├── lcflags.h
│ │ │ │ ├── lchttppost.c
│ │ │ │ ├── lchttppost.h
│ │ │ │ ├── lcinfoeasy.h
│ │ │ │ ├── lcmime.c
│ │ │ │ ├── lcmime.h
│ │ │ │ ├── lcmulti.c
│ │ │ │ ├── lcmulti.h
│ │ │ │ ├── lcopteasy.h
│ │ │ │ ├── lcoptmulti.h
│ │ │ │ ├── lcoptshare.h
│ │ │ │ ├── lcopturl.h
│ │ │ │ ├── lcshare.c
│ │ │ │ ├── lcshare.h
│ │ │ │ ├── lcurl.c
│ │ │ │ ├── lcurl.h
│ │ │ │ ├── lcurlapi.c
│ │ │ │ ├── lcurlapi.h
│ │ │ │ ├── lcutils.c
│ │ │ │ ├── lcutils.h
│ │ │ │ └── lua/
│ │ │ │ ├── cURL/
│ │ │ │ │ ├── impl/
│ │ │ │ │ │ └── cURL.lua
│ │ │ │ │ ├── safe.lua
│ │ │ │ │ └── utils.lua
│ │ │ │ └── cURL.lua
│ │ │ └── test/
│ │ │ ├── .luacov
│ │ │ ├── lunit/
│ │ │ │ └── console.lua
│ │ │ ├── run.lua
│ │ │ ├── server.lua
│ │ │ ├── test_curl.lua
│ │ │ ├── test_easy.lua
│ │ │ ├── test_form.lua
│ │ │ ├── test_mime.lua
│ │ │ ├── test_multi_callback.lua
│ │ │ ├── test_multi_nested_callback.lua
│ │ │ ├── test_pause02.c.lua
│ │ │ ├── test_safe.lua
│ │ │ ├── test_urlapi.lua
│ │ │ └── utils.lua
│ │ ├── lua-ex/
│ │ │ ├── .cvsignore
│ │ │ ├── COPYRIGHT
│ │ │ ├── Changelog
│ │ │ ├── INSTALL
│ │ │ ├── JUST
│ │ │ ├── Makefile
│ │ │ ├── TODO
│ │ │ ├── conf.in
│ │ │ ├── doc/
│ │ │ │ └── us/
│ │ │ │ ├── doc.bat
│ │ │ │ ├── doc.css
│ │ │ │ ├── index.html
│ │ │ │ ├── index.md
│ │ │ │ └── makedoc.lua
│ │ │ ├── ex.lua
│ │ │ ├── lua-ex.jam
│ │ │ ├── posix/
│ │ │ │ ├── Makefile
│ │ │ │ ├── ex.c
│ │ │ │ ├── posix_spawn.c
│ │ │ │ ├── posix_spawn.h
│ │ │ │ ├── spawn.c
│ │ │ │ └── spawn.h
│ │ │ ├── readme.md
│ │ │ ├── shared/
│ │ │ │ ├── path.c
│ │ │ │ └── path.h
│ │ │ ├── tests/
│ │ │ │ ├── pathtests.lua
│ │ │ │ ├── rt1.lua
│ │ │ │ ├── rt2.lua
│ │ │ │ ├── rt3.lua
│ │ │ │ ├── rt4.lua
│ │ │ │ ├── rt5.lua
│ │ │ │ ├── rt6.lua
│ │ │ │ └── rt7.lua
│ │ │ └── w32api/
│ │ │ ├── Makefile
│ │ │ ├── dirent.c
│ │ │ ├── dirent.h
│ │ │ ├── ex.c
│ │ │ ├── pusherror.c
│ │ │ ├── pusherror.h
│ │ │ ├── spawn.c
│ │ │ └── spawn.h
│ │ ├── lua-memoryfile/
│ │ │ ├── .gitignore
│ │ │ ├── COPYRIGHT
│ │ │ ├── Changes
│ │ │ ├── MANIFEST
│ │ │ ├── Makefile
│ │ │ ├── README
│ │ │ ├── debian/
│ │ │ │ ├── .gitignore
│ │ │ │ ├── Makefile.Debian.conf
│ │ │ │ ├── changelog
│ │ │ │ ├── compat
│ │ │ │ ├── control
│ │ │ │ ├── copyright
│ │ │ │ ├── liblua5.1-memoryfile-dev.manpages
│ │ │ │ └── rules
│ │ │ ├── doc/
│ │ │ │ ├── .gitignore
│ │ │ │ └── lua-memoryfile.pod
│ │ │ ├── lunit-console.lua
│ │ │ ├── lunit.lua
│ │ │ ├── memoryfile-test.lua
│ │ │ ├── memoryfile.c
│ │ │ ├── memoryfile.h
│ │ │ └── test/
│ │ │ ├── io.lua
│ │ │ └── pristine.lua
│ │ ├── lua-murmurhash3/
│ │ │ ├── MurmurHash3.cpp
│ │ │ ├── MurmurHash3.h
│ │ │ ├── PMurHash.c
│ │ │ ├── PMurHash.h
│ │ │ ├── lmurmurhash3.c
│ │ │ └── lua-murmurhash3.jam
│ │ ├── lua-pb/
│ │ │ ├── .gitignore
│ │ │ ├── API.md
│ │ │ ├── README.md
│ │ │ ├── bench/
│ │ │ │ ├── bench.lua
│ │ │ │ ├── bench_ast.lua
│ │ │ │ └── bench_media.lua
│ │ │ ├── example_person.lua
│ │ │ ├── lua-pb-scm-0.rockspec
│ │ │ ├── pb/
│ │ │ │ ├── handlers.lua
│ │ │ │ ├── proto/
│ │ │ │ │ ├── grammar.lua
│ │ │ │ │ ├── parser.lua
│ │ │ │ │ ├── scanner.lua
│ │ │ │ │ └── util.lua
│ │ │ │ ├── standard/
│ │ │ │ │ ├── buffer.lua
│ │ │ │ │ ├── dump.lua
│ │ │ │ │ ├── message.lua
│ │ │ │ │ ├── pack.lua
│ │ │ │ │ ├── repeated.lua
│ │ │ │ │ ├── unknown.lua
│ │ │ │ │ └── unpack.lua
│ │ │ │ ├── standard.lua
│ │ │ │ └── utils.lua
│ │ │ ├── pb.lua
│ │ │ ├── person.proto
│ │ │ ├── protos/
│ │ │ │ ├── extend.proto
│ │ │ │ ├── foo.proto
│ │ │ │ ├── media.proto
│ │ │ │ ├── nested.proto
│ │ │ │ ├── nested2.proto
│ │ │ │ ├── speed.proto
│ │ │ │ └── test.proto
│ │ │ ├── tests/
│ │ │ │ ├── check_proto.lua
│ │ │ │ ├── decode.lua
│ │ │ │ ├── decode_raw.lua
│ │ │ │ ├── dump_ast.lua
│ │ │ │ ├── dump_names.lua
│ │ │ │ ├── dump_tokens.lua
│ │ │ │ ├── raw_decode_encode.lua
│ │ │ │ ├── test_media.lua
│ │ │ │ ├── test_require.lua
│ │ │ │ ├── test_varint.lua
│ │ │ │ └── test_zigzag.lua
│ │ │ └── utils.lua
│ │ ├── lua-plist/
│ │ │ ├── lua-plist.jam
│ │ │ └── src/
│ │ │ └── plist.lua
│ │ ├── lua-prettydump/
│ │ │ ├── doc/
│ │ │ │ └── us/
│ │ │ │ ├── doc.bat
│ │ │ │ ├── doc.css
│ │ │ │ ├── index.html
│ │ │ │ ├── index.md
│ │ │ │ └── makedoc.lua
│ │ │ ├── lua-prettydump.jam
│ │ │ ├── readme.md
│ │ │ └── src/
│ │ │ ├── LuaStateOutFile.h
│ │ │ ├── LuaStateOutString.h
│ │ │ └── LuaState_DumpObject.cpp
│ │ ├── lua-rapidjson/
│ │ │ ├── .busted
│ │ │ ├── .editorconfig
│ │ │ ├── .gitignore
│ │ │ ├── .luacheckrc
│ │ │ ├── .travis.yml
│ │ │ ├── API.md
│ │ │ ├── CMakeLists.txt
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── appveyor.yml
│ │ │ ├── cmake/
│ │ │ │ └── Modules/
│ │ │ │ └── FindLua.cmake
│ │ │ ├── performance/
│ │ │ │ ├── booleans.json
│ │ │ │ ├── floats.json
│ │ │ │ ├── guids.json
│ │ │ │ ├── integers.json
│ │ │ │ ├── mixed.json
│ │ │ │ ├── nulls.json
│ │ │ │ ├── paragraphs.json
│ │ │ │ └── run.lua
│ │ │ ├── rapidjson/
│ │ │ │ ├── .gitignore
│ │ │ │ ├── CHANGELOG.md
│ │ │ │ ├── include/
│ │ │ │ │ └── rapidjson/
│ │ │ │ │ ├── allocators.h
│ │ │ │ │ ├── cursorstreamwrapper.h
│ │ │ │ │ ├── document.h
│ │ │ │ │ ├── encodedstream.h
│ │ │ │ │ ├── encodings.h
│ │ │ │ │ ├── error/
│ │ │ │ │ │ ├── en.h
│ │ │ │ │ │ └── error.h
│ │ │ │ │ ├── filereadstream.h
│ │ │ │ │ ├── filewritestream.h
│ │ │ │ │ ├── fwd.h
│ │ │ │ │ ├── internal/
│ │ │ │ │ │ ├── biginteger.h
│ │ │ │ │ │ ├── diyfp.h
│ │ │ │ │ │ ├── dtoa.h
│ │ │ │ │ │ ├── ieee754.h
│ │ │ │ │ │ ├── itoa.h
│ │ │ │ │ │ ├── meta.h
│ │ │ │ │ │ ├── pow10.h
│ │ │ │ │ │ ├── regex.h
│ │ │ │ │ │ ├── stack.h
│ │ │ │ │ │ ├── strfunc.h
│ │ │ │ │ │ ├── strtod.h
│ │ │ │ │ │ └── swap.h
│ │ │ │ │ ├── istreamwrapper.h
│ │ │ │ │ ├── memorybuffer.h
│ │ │ │ │ ├── memorystream.h
│ │ │ │ │ ├── msinttypes/
│ │ │ │ │ │ ├── inttypes.h
│ │ │ │ │ │ └── stdint.h
│ │ │ │ │ ├── ostreamwrapper.h
│ │ │ │ │ ├── pointer.h
│ │ │ │ │ ├── prettywriter.h
│ │ │ │ │ ├── rapidjson.h
│ │ │ │ │ ├── reader.h
│ │ │ │ │ ├── schema.h
│ │ │ │ │ ├── stream.h
│ │ │ │ │ ├── stringbuffer.h
│ │ │ │ │ └── writer.h
│ │ │ │ ├── license.txt
│ │ │ │ ├── readme.md
│ │ │ │ └── readme.zh-cn.md
│ │ │ ├── rapidjson-0.6.1-1.rockspec
│ │ │ ├── spec/
│ │ │ │ ├── Document_spec.lua
│ │ │ │ ├── Schema_spec.lua
│ │ │ │ ├── empty-array.json
│ │ │ │ ├── empty-file.json
│ │ │ │ ├── empty-object.json
│ │ │ │ ├── json_array_spec.lua
│ │ │ │ ├── json_decode_spec.lua
│ │ │ │ ├── json_dump_spec.lua
│ │ │ │ ├── json_encode_spec.lua
│ │ │ │ ├── json_load_spec.lua
│ │ │ │ ├── json_null_spec.lua
│ │ │ │ └── json_object_spec.lua
│ │ │ └── src/
│ │ │ ├── Document.cpp
│ │ │ ├── Schema.cpp
│ │ │ ├── StringStream.hpp
│ │ │ ├── Userdata.hpp
│ │ │ ├── file.hpp
│ │ │ ├── luax.hpp
│ │ │ ├── rapidjson.cpp
│ │ │ ├── values.cpp
│ │ │ └── values.hpp
│ │ ├── lua-websockets/
│ │ │ ├── .gitignore
│ │ │ ├── .luacov
│ │ │ ├── .travis.yml
│ │ │ ├── API.md
│ │ │ ├── COPYRIGHT
│ │ │ ├── README.md
│ │ │ ├── examples/
│ │ │ │ ├── echo-server-copas.lua
│ │ │ │ └── echo-server-ev.lua
│ │ │ ├── lua-websockets.rockspec
│ │ │ ├── ludent.sh
│ │ │ ├── minify.sh
│ │ │ ├── perf/
│ │ │ │ └── encode_perf.lua
│ │ │ ├── publish
│ │ │ ├── rockspecs/
│ │ │ │ └── lua-websockets-scm-1.rockspec
│ │ │ ├── spec/
│ │ │ │ ├── client_ev_spec.lua
│ │ │ │ ├── client_spec.lua
│ │ │ │ ├── ev_common_spec.lua
│ │ │ │ ├── frame_spec.lua
│ │ │ │ ├── handshake_spec.lua
│ │ │ │ ├── server_copas_spec.lua
│ │ │ │ ├── server_ev_spec.lua
│ │ │ │ └── tools_spec.lua
│ │ │ ├── squishy
│ │ │ ├── src/
│ │ │ │ ├── websocket/
│ │ │ │ │ ├── bit.lua
│ │ │ │ │ ├── client.lua
│ │ │ │ │ ├── client_copas.lua
│ │ │ │ │ ├── client_ev.lua
│ │ │ │ │ ├── ev_common.lua
│ │ │ │ │ ├── frame.lua
│ │ │ │ │ ├── handshake.lua
│ │ │ │ │ ├── server.lua
│ │ │ │ │ ├── server_copas.lua
│ │ │ │ │ ├── server_ev.lua
│ │ │ │ │ ├── sync.lua
│ │ │ │ │ └── tools.lua
│ │ │ │ └── websocket.lua
│ │ │ ├── test-server/
│ │ │ │ ├── index.html
│ │ │ │ ├── test-server-copas.lua
│ │ │ │ ├── test-server-ev.lua
│ │ │ │ └── test-ws.js
│ │ │ └── test.sh
│ │ ├── lua-xmlrpc/
│ │ │ ├── .gitignore
│ │ │ ├── Makefile
│ │ │ ├── README
│ │ │ ├── doc/
│ │ │ │ ├── examples.html
│ │ │ │ ├── index.html
│ │ │ │ ├── license.html
│ │ │ │ └── manual.html
│ │ │ ├── examples/
│ │ │ │ ├── client.lua
│ │ │ │ └── server_xavante.lua
│ │ │ ├── src/
│ │ │ │ ├── http.lua
│ │ │ │ ├── init.lua
│ │ │ │ └── server.lua
│ │ │ └── tests/
│ │ │ ├── apitest.lua
│ │ │ └── httptest.lua
│ │ ├── luacom/
│ │ │ ├── .travis.yml
│ │ │ ├── CMakeLists.txt
│ │ │ ├── COPYRIGHT
│ │ │ ├── INSTALL
│ │ │ ├── Makefile
│ │ │ ├── Makefile.win
│ │ │ ├── README
│ │ │ ├── announce.txt
│ │ │ ├── bkp_lc
│ │ │ ├── cmake/
│ │ │ │ ├── FindLua.cmake
│ │ │ │ ├── dist.cmake
│ │ │ │ └── lua.cmake
│ │ │ ├── demo/
│ │ │ │ ├── MSWINSCK.IDL
│ │ │ │ ├── ado/
│ │ │ │ │ ├── README
│ │ │ │ │ ├── adolua.lua
│ │ │ │ │ ├── adotest.lua
│ │ │ │ │ └── test.mdb
│ │ │ │ ├── comm/
│ │ │ │ │ ├── box.lua
│ │ │ │ │ ├── plasma.lua
│ │ │ │ │ └── tst_plasma.lua
│ │ │ │ ├── control/
│ │ │ │ │ ├── README
│ │ │ │ │ ├── client.vbp
│ │ │ │ │ ├── client.vbw
│ │ │ │ │ ├── control.lua
│ │ │ │ │ ├── form.frm
│ │ │ │ │ ├── testcontrol.odl
│ │ │ │ │ └── testcontrol.tlb
│ │ │ │ ├── date/
│ │ │ │ │ ├── test.tlb
│ │ │ │ │ └── testdate.lua
│ │ │ │ ├── enums/
│ │ │ │ │ └── testenums.lua
│ │ │ │ ├── odl/
│ │ │ │ │ ├── README
│ │ │ │ │ ├── idltest.lua
│ │ │ │ │ └── register.lua
│ │ │ │ ├── opcdata/
│ │ │ │ │ └── opc.lua
│ │ │ │ ├── ppt/
│ │ │ │ │ ├── filesearch.lua
│ │ │ │ │ └── msppt9.IDL
│ │ │ │ ├── safearrays/
│ │ │ │ │ ├── ComponentCpp/
│ │ │ │ │ │ ├── StdAfx.cpp
│ │ │ │ │ │ ├── StdAfx.h
│ │ │ │ │ │ ├── Test.cpp
│ │ │ │ │ │ ├── Test.h
│ │ │ │ │ │ ├── Test.rgs
│ │ │ │ │ │ ├── TestSafeArray.cpp
│ │ │ │ │ │ ├── TestSafeArray.def
│ │ │ │ │ │ ├── TestSafeArray.dsp
│ │ │ │ │ │ ├── TestSafeArray.dsw
│ │ │ │ │ │ ├── TestSafeArray.h
│ │ │ │ │ │ ├── TestSafeArray.idl
│ │ │ │ │ │ ├── TestSafeArray.rc
│ │ │ │ │ │ ├── dlldata.c
│ │ │ │ │ │ ├── dlldatax.c
│ │ │ │ │ │ ├── dlldatax.h
│ │ │ │ │ │ └── resource.h
│ │ │ │ │ ├── ComponentVB/
│ │ │ │ │ │ ├── PruebaSafeArrayVB.vbp
│ │ │ │ │ │ └── Test.cls
│ │ │ │ │ ├── TestVB/
│ │ │ │ │ │ ├── Form1.frm
│ │ │ │ │ │ └── Project1.vbp
│ │ │ │ │ └── safearrays.lua
│ │ │ │ ├── server/
│ │ │ │ │ ├── README
│ │ │ │ │ ├── inproc.lua
│ │ │ │ │ ├── inproc_use.lua
│ │ │ │ │ ├── inproc_use.vbs
│ │ │ │ │ ├── testlua.odl
│ │ │ │ │ └── testlua.tlb
│ │ │ │ ├── speech/
│ │ │ │ │ ├── dragon.idl
│ │ │ │ │ └── tst.lua
│ │ │ │ └── wmi/
│ │ │ │ ├── README
│ │ │ │ ├── test_wmi.lua
│ │ │ │ └── wmi_obj.lua
│ │ │ ├── dist.info
│ │ │ ├── doc/
│ │ │ │ ├── Makefile
│ │ │ │ └── luacom.tex
│ │ │ ├── gera_distr
│ │ │ ├── include/
│ │ │ │ └── luacom.h
│ │ │ ├── luacom-1.4-1.rockspec
│ │ │ ├── luacom-scm-2.rockspec
│ │ │ ├── mak/
│ │ │ │ ├── bin2c.lua
│ │ │ │ ├── dependences.mak
│ │ │ │ └── luac.lua
│ │ │ ├── mak.tecmake/
│ │ │ │ ├── lcmake.bat
│ │ │ │ ├── lcmaked.bat
│ │ │ │ ├── lctest.bat
│ │ │ │ ├── lctestd.bat
│ │ │ │ ├── luacom.inc
│ │ │ │ ├── luacom_console.mak
│ │ │ │ └── luacom_lib.mak
│ │ │ ├── mak.vc6/
│ │ │ │ └── luacom.dsp
│ │ │ ├── mak.vs2005/
│ │ │ │ ├── luacom.dll.vcproj
│ │ │ │ ├── luacom.rules
│ │ │ │ ├── luacom.sln
│ │ │ │ └── luacom.vsprops
│ │ │ ├── src/
│ │ │ │ ├── bin/
│ │ │ │ │ └── luacom_console.cpp
│ │ │ │ ├── dll/
│ │ │ │ │ ├── luacom_dll.cpp
│ │ │ │ │ ├── luacom_dll.def
│ │ │ │ │ └── luacom_dll.h
│ │ │ │ ├── library/
│ │ │ │ │ ├── LuaAux.cpp
│ │ │ │ │ ├── LuaAux.h
│ │ │ │ │ ├── LuaCompat.cpp
│ │ │ │ │ ├── LuaCompat.h
│ │ │ │ │ ├── luabeans.cpp
│ │ │ │ │ ├── luabeans.h
│ │ │ │ │ ├── luacom.cpp
│ │ │ │ │ ├── luacom5.lua
│ │ │ │ │ ├── luacom_internal.h
│ │ │ │ │ ├── tCOMUtil.cpp
│ │ │ │ │ ├── tCOMUtil.h
│ │ │ │ │ ├── tLuaCOM.cpp
│ │ │ │ │ ├── tLuaCOM.h
│ │ │ │ │ ├── tLuaCOMClassFactory.cpp
│ │ │ │ │ ├── tLuaCOMClassFactory.h
│ │ │ │ │ ├── tLuaCOMConnPoints.cpp
│ │ │ │ │ ├── tLuaCOMConnPoints.h
│ │ │ │ │ ├── tLuaCOMEnumerator.cpp
│ │ │ │ │ ├── tLuaCOMEnumerator.h
│ │ │ │ │ ├── tLuaCOMException.cpp
│ │ │ │ │ ├── tLuaCOMException.h
│ │ │ │ │ ├── tLuaCOMTypeHandler.cpp
│ │ │ │ │ ├── tLuaCOMTypeHandler.h
│ │ │ │ │ ├── tLuaControl.cpp
│ │ │ │ │ ├── tLuaControl.h
│ │ │ │ │ ├── tLuaDispatch.cpp
│ │ │ │ │ ├── tLuaDispatch.h
│ │ │ │ │ ├── tLuaObjList.cpp
│ │ │ │ │ ├── tLuaObjList.h
│ │ │ │ │ ├── tLuaObject.cpp
│ │ │ │ │ ├── tLuaObject.h
│ │ │ │ │ ├── tLuaTLB.cpp
│ │ │ │ │ ├── tLuaTLB.h
│ │ │ │ │ ├── tLuaVector.cpp
│ │ │ │ │ ├── tLuaVector.h
│ │ │ │ │ ├── tStringBuffer.cpp
│ │ │ │ │ ├── tStringBuffer.h
│ │ │ │ │ ├── tUtil.cpp
│ │ │ │ │ ├── tUtil.h
│ │ │ │ │ └── t_luacom.lua
│ │ │ │ └── test/
│ │ │ │ ├── luacom_tests5.lua
│ │ │ │ ├── test.idl
│ │ │ │ └── test.tlb
│ │ │ ├── todo.txt
│ │ │ └── www/
│ │ │ └── index.html
│ │ ├── luadbi/
│ │ │ ├── COPYING
│ │ │ ├── DBI.lua
│ │ │ ├── INSTALL
│ │ │ ├── Makefile
│ │ │ ├── README
│ │ │ ├── dbd/
│ │ │ │ ├── common.c
│ │ │ │ ├── common.h
│ │ │ │ ├── db2/
│ │ │ │ │ ├── connection.c
│ │ │ │ │ ├── dbd_db2.h
│ │ │ │ │ ├── main.c
│ │ │ │ │ └── statement.c
│ │ │ │ ├── mysql/
│ │ │ │ │ ├── connection.c
│ │ │ │ │ ├── dbd_mysql.h
│ │ │ │ │ ├── main.c
│ │ │ │ │ └── statement.c
│ │ │ │ ├── oracle/
│ │ │ │ │ ├── connection.c
│ │ │ │ │ ├── dbd_oracle.h
│ │ │ │ │ ├── main.c
│ │ │ │ │ └── statement.c
│ │ │ │ ├── postgresql/
│ │ │ │ │ ├── connection.c
│ │ │ │ │ ├── dbd_postgresql.h
│ │ │ │ │ ├── main.c
│ │ │ │ │ └── statement.c
│ │ │ │ └── sqlite3/
│ │ │ │ ├── connection.c
│ │ │ │ ├── dbd_sqlite3.h
│ │ │ │ ├── main.c
│ │ │ │ └── statement.c
│ │ │ └── vc++/
│ │ │ ├── dbddb2/
│ │ │ │ └── dbddb2.vcproj
│ │ │ ├── dbdmysql/
│ │ │ │ └── dbdmysql.vcproj
│ │ │ ├── dbdoracle/
│ │ │ │ └── dbdoracle.vcproj
│ │ │ ├── dbdpostgresql/
│ │ │ │ └── dbdpostgresql.vcproj
│ │ │ ├── dbdsqlite3/
│ │ │ │ └── dbdsqlite3.vcproj
│ │ │ └── luadbi.sln
│ │ ├── luaexpat/
│ │ │ ├── .hgtags
│ │ │ ├── README
│ │ │ ├── config
│ │ │ ├── doc/
│ │ │ │ └── us/
│ │ │ │ ├── examples.html
│ │ │ │ ├── index.html
│ │ │ │ ├── license.html
│ │ │ │ ├── lom.html
│ │ │ │ └── manual.html
│ │ │ ├── makefile
│ │ │ ├── makefile.win
│ │ │ ├── src/
│ │ │ │ ├── lxp/
│ │ │ │ │ └── lom.lua
│ │ │ │ ├── lxp.def
│ │ │ │ ├── lxplib.c
│ │ │ │ └── lxplib.h
│ │ │ ├── tests/
│ │ │ │ ├── test-lom.lua
│ │ │ │ └── test.lua
│ │ │ └── vc6/
│ │ │ ├── README
│ │ │ ├── luaexpat.dsw
│ │ │ ├── luaexpat_dll.dsp
│ │ │ ├── luaexpat_static.dsp
│ │ │ └── lxp.def
│ │ ├── luaffi/
│ │ │ ├── .gitignore
│ │ │ ├── Makefile
│ │ │ ├── README.md
│ │ │ ├── call.c
│ │ │ ├── call_arm.dasc
│ │ │ ├── call_x86.dasc
│ │ │ ├── ctype.c
│ │ │ ├── dynasm/
│ │ │ │ ├── dasm_arm.h
│ │ │ │ ├── dasm_arm.lua
│ │ │ │ ├── dasm_ppc.h
│ │ │ │ ├── dasm_ppc.lua
│ │ │ │ ├── dasm_proto.h
│ │ │ │ ├── dasm_x64.lua
│ │ │ │ ├── dasm_x86.h
│ │ │ │ ├── dasm_x86.lua
│ │ │ │ └── dynasm.lua
│ │ │ ├── ffi.c
│ │ │ ├── ffi.h
│ │ │ ├── generate_call_h.bat
│ │ │ ├── msvc/
│ │ │ │ ├── inttypes.h
│ │ │ │ ├── stdbool.h
│ │ │ │ └── stdint.h
│ │ │ ├── msvcbuild.bat
│ │ │ ├── parser.c
│ │ │ ├── pretty.lua
│ │ │ ├── test.c
│ │ │ ├── test.lua
│ │ │ └── test_includes.sh
│ │ ├── luafilesystem/
│ │ │ ├── Makefile
│ │ │ ├── Makefile.win
│ │ │ ├── README
│ │ │ ├── config
│ │ │ ├── config.win
│ │ │ ├── doc/
│ │ │ │ └── us/
│ │ │ │ ├── examples.html
│ │ │ │ ├── index.html
│ │ │ │ ├── license.html
│ │ │ │ └── manual.html
│ │ │ ├── rockspecs/
│ │ │ │ ├── luafilesystem-1.3.0-1.rockspec
│ │ │ │ ├── luafilesystem-1.4.0-1.rockspec
│ │ │ │ ├── luafilesystem-1.4.0-2.rockspec
│ │ │ │ ├── luafilesystem-1.4.1-1.rockspec
│ │ │ │ ├── luafilesystem-1.4.1rc1-1.rockspec
│ │ │ │ ├── luafilesystem-1.4.2-1.rockspec
│ │ │ │ ├── luafilesystem-1.5.0-1.rockspec
│ │ │ │ ├── luafilesystem-1.6.0-1.rockspec
│ │ │ │ ├── luafilesystem-1.6.1-1.rockspec
│ │ │ │ ├── luafilesystem-1.6.2-1.rockspec
│ │ │ │ ├── luafilesystem-cvs-1.rockspec
│ │ │ │ └── luafilesystem-cvs-2.rockspec
│ │ │ ├── src/
│ │ │ │ ├── .gitignore
│ │ │ │ ├── lfs.c
│ │ │ │ ├── lfs.def
│ │ │ │ └── lfs.h
│ │ │ ├── tests/
│ │ │ │ └── test.lua
│ │ │ └── vc6/
│ │ │ ├── lfs.def
│ │ │ ├── luafilesystem.dsw
│ │ │ └── luafilesystem_dll.dsp
│ │ ├── luainterface/
│ │ │ ├── COPYRIGHT
│ │ │ ├── LuaInterface.sln
│ │ │ ├── README.txt
│ │ │ ├── doc/
│ │ │ │ └── LuaRunner.txt
│ │ │ ├── samples/
│ │ │ │ ├── CLRPackage.lua
│ │ │ │ ├── README.txt
│ │ │ │ ├── form.lua
│ │ │ │ ├── form_alt.lua
│ │ │ │ ├── socket.lua
│ │ │ │ ├── socket_alt.lua
│ │ │ │ ├── testluaform.lua
│ │ │ │ └── testluaform_alt.lua
│ │ │ └── src/
│ │ │ ├── LuaInterface/
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── CheckType.cs
│ │ │ │ ├── GenerateEventAssembly.cs
│ │ │ │ ├── Lua.cs
│ │ │ │ ├── LuaDLL.cs
│ │ │ │ ├── LuaException.cs
│ │ │ │ ├── LuaInterface.csproj
│ │ │ │ ├── Metatables.cs
│ │ │ │ ├── MethodWrapper.cs
│ │ │ │ ├── ObjectTranslator.cs
│ │ │ │ ├── ProxyType.cs
│ │ │ │ ├── README.txt
│ │ │ │ └── luainterface.snk
│ │ │ ├── LuaInterfaceLoader/
│ │ │ │ ├── LuaInterfaceLoader.cpp
│ │ │ │ └── LuaInterfaceLoader.vcproj
│ │ │ ├── LuaRunner/
│ │ │ │ ├── LuaNetRunner.cs
│ │ │ │ ├── LuaRunner.csproj
│ │ │ │ └── Properties/
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── TestLuaInterface/
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Entity.cs
│ │ │ │ ├── TestLua.cs
│ │ │ │ └── TestLuaInterface.csproj
│ │ │ └── stub/
│ │ │ ├── luastdcall-unix.h
│ │ │ ├── luastdcall-windows.h
│ │ │ ├── luastdcall.c
│ │ │ └── luastdcall.h
│ │ ├── luajson/
│ │ │ ├── .travis/
│ │ │ │ ├── LICENSE
│ │ │ │ ├── platform.sh
│ │ │ │ ├── setenv_lua.sh
│ │ │ │ └── setup_lua.sh
│ │ │ ├── .travis.yml
│ │ │ ├── LICENSE
│ │ │ ├── Makefile
│ │ │ ├── README
│ │ │ ├── ReleaseNotes.txt
│ │ │ ├── dist/
│ │ │ │ └── Makefile
│ │ │ ├── docs/
│ │ │ │ ├── LuaJSON.txt
│ │ │ │ ├── ReleaseNotes-0.10.txt
│ │ │ │ ├── ReleaseNotes-0.9.1.txt
│ │ │ │ ├── ReleaseNotes-0.9.txt
│ │ │ │ ├── ReleaseNotes-1.0.1.txt
│ │ │ │ ├── ReleaseNotes-1.0.2.txt
│ │ │ │ ├── ReleaseNotes-1.0.3.txt
│ │ │ │ ├── ReleaseNotes-1.0.txt
│ │ │ │ ├── ReleaseNotes-1.1.1.txt
│ │ │ │ ├── ReleaseNotes-1.1.2.txt
│ │ │ │ ├── ReleaseNotes-1.1.txt
│ │ │ │ ├── ReleaseNotes-1.2.1.txt
│ │ │ │ ├── ReleaseNotes-1.2.2.txt
│ │ │ │ ├── ReleaseNotes-1.2.txt
│ │ │ │ ├── ReleaseNotes-1.3.1.txt
│ │ │ │ ├── ReleaseNotes-1.3.2.txt
│ │ │ │ ├── ReleaseNotes-1.3.3.txt
│ │ │ │ └── ReleaseNotes-1.3.txt
│ │ │ ├── lua/
│ │ │ │ ├── json/
│ │ │ │ │ ├── decode/
│ │ │ │ │ │ ├── composite.lua
│ │ │ │ │ │ ├── number.lua
│ │ │ │ │ │ ├── others.lua
│ │ │ │ │ │ ├── state.lua
│ │ │ │ │ │ ├── strings.lua
│ │ │ │ │ │ └── util.lua
│ │ │ │ │ ├── decode.lua
│ │ │ │ │ ├── encode/
│ │ │ │ │ │ ├── array.lua
│ │ │ │ │ │ ├── calls.lua
│ │ │ │ │ │ ├── number.lua
│ │ │ │ │ │ ├── object.lua
│ │ │ │ │ │ ├── others.lua
│ │ │ │ │ │ ├── output.lua
│ │ │ │ │ │ ├── output_utility.lua
│ │ │ │ │ │ └── strings.lua
│ │ │ │ │ ├── encode.lua
│ │ │ │ │ └── util.lua
│ │ │ │ └── json.lua
│ │ │ ├── rockspecs/
│ │ │ │ ├── luajson-0.10-1.rockspec
│ │ │ │ ├── luajson-0.10-2.rockspec
│ │ │ │ ├── luajson-0.9.1-1.rockspec
│ │ │ │ ├── luajson-1.0-1.rockspec
│ │ │ │ ├── luajson-1.0.1-1.rockspec
│ │ │ │ ├── luajson-1.0.3-1.rockspec
│ │ │ │ ├── luajson-1.1-1.rockspec
│ │ │ │ ├── luajson-1.1.2-1.rockspec
│ │ │ │ ├── luajson-1.2-1.rockspec
│ │ │ │ ├── luajson-1.2.1-1.rockspec
│ │ │ │ ├── luajson-1.2.2-1.rockspec
│ │ │ │ ├── luajson-1.3-1.rockspec
│ │ │ │ ├── luajson-1.3.1-1.rockspec
│ │ │ │ ├── luajson-1.3.2-1.rockspec
│ │ │ │ ├── luajson-1.3.2-2.rockspec
│ │ │ │ ├── luajson-1.3.3-1.rockspec
│ │ │ │ └── luajson-scm-4.rockspec
│ │ │ ├── tests/
│ │ │ │ ├── data.txt
│ │ │ │ ├── dataTest.lua
│ │ │ │ ├── dataTest.php
│ │ │ │ ├── hook_require.lua
│ │ │ │ ├── lunit-calls.lua
│ │ │ │ ├── lunit-depth.lua
│ │ │ │ ├── lunit-encoderfunc.lua
│ │ │ │ ├── lunit-encoding.lua
│ │ │ │ ├── lunit-nothrow-decode.lua
│ │ │ │ ├── lunit-numbers.lua
│ │ │ │ ├── lunit-simple-decode.lua
│ │ │ │ ├── lunit-strings.lua
│ │ │ │ ├── lunit-tests.lua
│ │ │ │ ├── regressionTest.lua
│ │ │ │ ├── test/
│ │ │ │ │ ├── fail_all/
│ │ │ │ │ │ ├── colonInArray.json
│ │ │ │ │ │ ├── commaAfterValue.json
│ │ │ │ │ │ ├── doubleColon.json
│ │ │ │ │ │ ├── extraArrayClose.json
│ │ │ │ │ │ ├── extraValueAfterClose.json
│ │ │ │ │ │ ├── functionExpression.json
│ │ │ │ │ │ ├── hexNumber.json
│ │ │ │ │ │ ├── lineBreakInString-escaped.json
│ │ │ │ │ │ ├── mathExpression.json
│ │ │ │ │ │ ├── missingArrayValue.json
│ │ │ │ │ │ ├── missingColon.json
│ │ │ │ │ │ ├── missingColon2.json
│ │ │ │ │ │ ├── octalEscape.json
│ │ │ │ │ │ ├── octalNumber.json
│ │ │ │ │ │ ├── tabInString-escaped.json
│ │ │ │ │ │ ├── trailingDoubleComma.json
│ │ │ │ │ │ ├── unclosed_array.json
│ │ │ │ │ │ └── unknownLiteral.json
│ │ │ │ │ ├── fail_strict/
│ │ │ │ │ │ ├── hexEscape.json
│ │ │ │ │ │ ├── lineBreakInString.json
│ │ │ │ │ │ ├── mustBeArrayOrObject.json
│ │ │ │ │ │ ├── singleQuoteEscape.json
│ │ │ │ │ │ ├── singleQuotes.json
│ │ │ │ │ │ ├── tabInString.json
│ │ │ │ │ │ ├── trailingArrayComma.json
│ │ │ │ │ │ ├── trailingObjectComma.json
│ │ │ │ │ │ ├── unquotedKey.json
│ │ │ │ │ │ └── whitespace_before_value.json
│ │ │ │ │ ├── fail_strict_encode/
│ │ │ │ │ │ ├── bool.json
│ │ │ │ │ │ ├── inf.json
│ │ │ │ │ │ ├── nan.json
│ │ │ │ │ │ ├── null.json
│ │ │ │ │ │ ├── number.json
│ │ │ │ │ │ ├── string.json
│ │ │ │ │ │ └── undefined.json
│ │ │ │ │ ├── pass/
│ │ │ │ │ │ ├── extremeNesting.json
│ │ │ │ │ │ ├── pass1.json
│ │ │ │ │ │ ├── pass3.json
│ │ │ │ │ │ ├── stringWithEscapedAndUnescapedSlash.json
│ │ │ │ │ │ ├── whitespace_before_array.json
│ │ │ │ │ │ └── whitespace_before_object.json
│ │ │ │ │ └── roundtrip/
│ │ │ │ │ ├── deepArray.json
│ │ │ │ │ ├── emptyArray.json
│ │ │ │ │ ├── emptyObject.json
│ │ │ │ │ └── simpleArrayInObject.json
│ │ │ │ ├── test.lua
│ │ │ │ ├── testutil.lua
│ │ │ │ ├── timetrials.lua
│ │ │ │ └── utf8_processor.lua
│ │ │ └── util/
│ │ │ ├── createRock.lua
│ │ │ ├── prepareNextRelease.lua
│ │ │ └── processShortlog.lua
│ │ ├── lualdap/
│ │ │ ├── Makefile
│ │ │ ├── Makefile.win
│ │ │ ├── README
│ │ │ ├── config
│ │ │ ├── config.win
│ │ │ ├── doc/
│ │ │ │ └── us/
│ │ │ │ ├── index.html
│ │ │ │ ├── license.html
│ │ │ │ └── manual.html
│ │ │ ├── src/
│ │ │ │ ├── lualdap.c
│ │ │ │ ├── lualdap.def
│ │ │ │ └── open2winldap.h
│ │ │ ├── tests/
│ │ │ │ └── test.lua
│ │ │ └── vc6/
│ │ │ ├── lualdap.def
│ │ │ ├── lualdap.dsw
│ │ │ ├── lualdap.rc
│ │ │ ├── lualdap_dll.dsp
│ │ │ └── resource.h
│ │ ├── lualogging/
│ │ │ ├── COPYRIGHT
│ │ │ ├── Makefile
│ │ │ ├── Makefile.win
│ │ │ ├── README
│ │ │ ├── doc/
│ │ │ │ ├── br/
│ │ │ │ │ ├── console.tpl
│ │ │ │ │ ├── email.tpl
│ │ │ │ │ ├── file.tpl
│ │ │ │ │ ├── footer.tpl
│ │ │ │ │ ├── header.tpl
│ │ │ │ │ ├── index.tpl
│ │ │ │ │ ├── license.tpl
│ │ │ │ │ ├── manual.tpl
│ │ │ │ │ ├── menu.lua
│ │ │ │ │ ├── socket.tpl
│ │ │ │ │ └── sql.tpl
│ │ │ │ ├── build.lua
│ │ │ │ ├── html/
│ │ │ │ │ ├── br/
│ │ │ │ │ │ ├── console.html
│ │ │ │ │ │ ├── email.html
│ │ │ │ │ │ ├── file.html
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ ├── license.html
│ │ │ │ │ │ ├── manual.html
│ │ │ │ │ │ ├── socket.html
│ │ │ │ │ │ └── sql.html
│ │ │ │ │ ├── console.html
│ │ │ │ │ ├── email.html
│ │ │ │ │ ├── file.html
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── license.html
│ │ │ │ │ ├── manual.html
│ │ │ │ │ ├── rolling_file.html
│ │ │ │ │ ├── socket.html
│ │ │ │ │ └── sql.html
│ │ │ │ └── us/
│ │ │ │ ├── console.tpl
│ │ │ │ ├── email.tpl
│ │ │ │ ├── file.tpl
│ │ │ │ ├── footer.tpl
│ │ │ │ ├── header.tpl
│ │ │ │ ├── index.tpl
│ │ │ │ ├── license.tpl
│ │ │ │ ├── manual.tpl
│ │ │ │ ├── menu.lua
│ │ │ │ ├── rolling_file.tpl
│ │ │ │ ├── socket.tpl
│ │ │ │ └── sql.tpl
│ │ │ ├── lualogging-1.2.0-1.rockspec
│ │ │ ├── lualogging-1.3.0-1.rockspec
│ │ │ ├── lualogging-scm-0.rockspec
│ │ │ ├── src/
│ │ │ │ ├── logging/
│ │ │ │ │ ├── console.lua
│ │ │ │ │ ├── email.lua
│ │ │ │ │ ├── file.lua
│ │ │ │ │ ├── rolling_file.lua
│ │ │ │ │ ├── socket.lua
│ │ │ │ │ └── sql.lua
│ │ │ │ └── logging.lua
│ │ │ └── tests/
│ │ │ ├── run_tests.sh
│ │ │ ├── test.lua
│ │ │ ├── testConsole.lua
│ │ │ ├── testFile.lua
│ │ │ ├── testMail.lua
│ │ │ ├── testRollingFile.lua
│ │ │ ├── testSQL.lua
│ │ │ └── testSocket.lua
│ │ ├── luasec/
│ │ │ ├── .gitignore
│ │ │ ├── CHANGELOG
│ │ │ ├── INSTALL
│ │ │ ├── LICENSE
│ │ │ ├── Makefile
│ │ │ ├── README.md
│ │ │ ├── luasec-0.9-1.rockspec
│ │ │ ├── luasec.sln
│ │ │ ├── luasec.vcxproj
│ │ │ ├── samples/
│ │ │ │ ├── README
│ │ │ │ ├── alpn/
│ │ │ │ │ ├── client.lua
│ │ │ │ │ └── server.lua
│ │ │ │ ├── certs/
│ │ │ │ │ ├── all.bat
│ │ │ │ │ ├── all.sh
│ │ │ │ │ ├── clientA.bat
│ │ │ │ │ ├── clientA.cnf
│ │ │ │ │ ├── clientA.sh
│ │ │ │ │ ├── clientB.bat
│ │ │ │ │ ├── clientB.cnf
│ │ │ │ │ ├── clientB.sh
│ │ │ │ │ ├── rootA.bat
│ │ │ │ │ ├── rootA.cnf
│ │ │ │ │ ├── rootA.sh
│ │ │ │ │ ├── rootB.bat
│ │ │ │ │ ├── rootB.cnf
│ │ │ │ │ ├── rootB.sh
│ │ │ │ │ ├── serverA.bat
│ │ │ │ │ ├── serverA.cnf
│ │ │ │ │ ├── serverA.sh
│ │ │ │ │ ├── serverB.bat
│ │ │ │ │ ├── serverB.cnf
│ │ │ │ │ └── serverB.sh
│ │ │ │ ├── chain/
│ │ │ │ │ ├── client.lua
│ │ │ │ │ ├── server.lua
│ │ │ │ │ └── util.lua
│ │ │ │ ├── curve-negotiation/
│ │ │ │ │ ├── client.lua
│ │ │ │ │ └── server.lua
│ │ │ │ ├── dane/
│ │ │ │ │ └── client.lua
│ │ │ │ ├── dhparam/
│ │ │ │ │ ├── client.lua
│ │ │ │ │ ├── params.sh
│ │ │ │ │ └── server.lua
│ │ │ │ ├── digest/
│ │ │ │ │ ├── client.lua
│ │ │ │ │ └── server.lua
│ │ │ │ ├── ecdh/
│ │ │ │ │ ├── client.lua
│ │ │ │ │ └── server.lua
│ │ │ │ ├── info/
│ │ │ │ │ ├── client.lua
│ │ │ │ │ └── server.lua
│ │ │ │ ├── key/
│ │ │ │ │ ├── genkey.sh
│ │ │ │ │ └── loadkey.lua
│ │ │ │ ├── loop/
│ │ │ │ │ ├── client.lua
│ │ │ │ │ └── server.lua
│ │ │ │ ├── loop-gc/
│ │ │ │ │ ├── client.lua
│ │ │ │ │ └── server.lua
│ │ │ │ ├── luaossl/
│ │ │ │ │ ├── client.lua
│ │ │ │ │ └── server.lua
│ │ │ │ ├── multicert/
│ │ │ │ │ ├── client-ecdsa.lua
│ │ │ │ │ ├── client-rsa.lua
│ │ │ │ │ ├── gencerts.sh
│ │ │ │ │ └── server.lua
│ │ │ │ ├── oneshot/
│ │ │ │ │ ├── client.lua
│ │ │ │ │ └── server.lua
│ │ │ │ ├── sni/
│ │ │ │ │ ├── client.lua
│ │ │ │ │ └── server.lua
│ │ │ │ ├── verification/
│ │ │ │ │ ├── fail-string/
│ │ │ │ │ │ ├── client.lua
│ │ │ │ │ │ └── server.lua
│ │ │ │ │ ├── fail-table/
│ │ │ │ │ │ ├── client.lua
│ │ │ │ │ │ └── server.lua
│ │ │ │ │ └── success/
│ │ │ │ │ ├── client.lua
│ │ │ │ │ └── server.lua
│ │ │ │ ├── verify/
│ │ │ │ │ ├── client.lua
│ │ │ │ │ └── server.lua
│ │ │ │ ├── want/
│ │ │ │ │ ├── client.lua
│ │ │ │ │ └── server.lua
│ │ │ │ ├── wantread/
│ │ │ │ │ ├── client.lua
│ │ │ │ │ └── server.lua
│ │ │ │ └── wantwrite/
│ │ │ │ ├── client.lua
│ │ │ │ └── server.lua
│ │ │ └── src/
│ │ │ ├── Makefile
│ │ │ ├── compat.h
│ │ │ ├── config.c
│ │ │ ├── context.c
│ │ │ ├── context.h
│ │ │ ├── ec.c
│ │ │ ├── ec.h
│ │ │ ├── https.lua
│ │ │ ├── luasocket/
│ │ │ │ ├── LICENSE
│ │ │ │ ├── Makefile
│ │ │ │ ├── buffer.c
│ │ │ │ ├── buffer.h
│ │ │ │ ├── io.c
│ │ │ │ ├── io.h
│ │ │ │ ├── socket.h
│ │ │ │ ├── timeout.c
│ │ │ │ ├── timeout.h
│ │ │ │ ├── usocket.c
│ │ │ │ ├── usocket.h
│ │ │ │ ├── wsocket.c
│ │ │ │ └── wsocket.h
│ │ │ ├── options.c
│ │ │ ├── options.h
│ │ │ ├── options.lua
│ │ │ ├── ssl.c
│ │ │ ├── ssl.h
│ │ │ ├── ssl.lua
│ │ │ ├── x509.c
│ │ │ └── x509.h
│ │ ├── luasql/
│ │ │ ├── Makefile
│ │ │ ├── Makefile.win
│ │ │ ├── Makefile.win.ado
│ │ │ ├── Makefile.win.firebird
│ │ │ ├── Makefile.win.mysql
│ │ │ ├── Makefile.win.odbc
│ │ │ ├── Makefile.win.sqlite3
│ │ │ ├── README
│ │ │ ├── config
│ │ │ ├── doc/
│ │ │ │ ├── br/
│ │ │ │ │ ├── examples.html
│ │ │ │ │ ├── history.html
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── license.html
│ │ │ │ │ └── manual.html
│ │ │ │ └── us/
│ │ │ │ ├── examples.html
│ │ │ │ ├── history.html
│ │ │ │ ├── index.html
│ │ │ │ ├── license.html
│ │ │ │ └── manual.html
│ │ │ ├── rockspec/
│ │ │ │ ├── luasql-mysql-2.2.0rc1-1.rockspec
│ │ │ │ ├── luasql-mysql-2.2.0rc1-2.rockspec
│ │ │ │ ├── luasql-mysql-2.3.0-1.rockspec
│ │ │ │ ├── luasql-mysql-cvs-1.rockspec
│ │ │ │ ├── luasql-oci8-2.3.0-1.rockspec
│ │ │ │ ├── luasql-odbc-2.3.0-1.rockspec
│ │ │ │ ├── luasql-odbc-cvs-1.rockspec
│ │ │ │ ├── luasql-postgres-2.3.0-1.rockspec
│ │ │ │ ├── luasql-postgres-cvs-2.rockspec
│ │ │ │ ├── luasql-sqlite-2.2.0rc1-1.rockspec
│ │ │ │ ├── luasql-sqlite-2.3.0-1.rockspec
│ │ │ │ ├── luasql-sqlite-cvs-1.rockspec
│ │ │ │ ├── luasql-sqlite3-2.2.0-1.rockspec
│ │ │ │ ├── luasql-sqlite3-2.2.0rc1-1.rockspec
│ │ │ │ ├── luasql-sqlite3-2.3.0-1.rockspec
│ │ │ │ └── luasql-sqlite3-cvs-1.rockspec
│ │ │ ├── src/
│ │ │ │ ├── ado/
│ │ │ │ │ └── ado.lua
│ │ │ │ ├── firebird.def
│ │ │ │ ├── jdbc/
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── Makefile.win
│ │ │ │ │ ├── build.xml
│ │ │ │ │ └── src/
│ │ │ │ │ ├── java/
│ │ │ │ │ │ └── org/
│ │ │ │ │ │ └── keplerproject/
│ │ │ │ │ │ └── luasql/
│ │ │ │ │ │ └── jdbc/
│ │ │ │ │ │ └── LuaSQLCursor.java
│ │ │ │ │ └── lua/
│ │ │ │ │ └── jdbc.lua
│ │ │ │ ├── ls_firebird.c
│ │ │ │ ├── ls_mysql.c
│ │ │ │ ├── ls_oci8.c
│ │ │ │ ├── ls_odbc.c
│ │ │ │ ├── ls_postgres.c
│ │ │ │ ├── ls_sqlite.c
│ │ │ │ ├── ls_sqlite3.c
│ │ │ │ ├── luasql.c
│ │ │ │ ├── luasql.h
│ │ │ │ ├── mysql.def
│ │ │ │ ├── oci8.def
│ │ │ │ ├── odbc.def
│ │ │ │ ├── postgres.def
│ │ │ │ ├── sqlite.def
│ │ │ │ └── sqlite3.def
│ │ │ ├── tests/
│ │ │ │ ├── ado.lua
│ │ │ │ ├── example.lua
│ │ │ │ ├── firebird.lua
│ │ │ │ ├── mysql.lua
│ │ │ │ ├── oci8.lua
│ │ │ │ ├── odbc.lua
│ │ │ │ ├── performance.lua
│ │ │ │ ├── postgres.lua
│ │ │ │ ├── sqlite.lua
│ │ │ │ ├── sqlite3.lua
│ │ │ │ └── test.lua
│ │ │ └── vc6/
│ │ │ ├── def.tmpl
│ │ │ ├── luasql.dsw
│ │ │ ├── luasqlmysql40_dll.dsp
│ │ │ ├── luasqlmysql41_dll.dsp
│ │ │ ├── luasqlmysql50_dll.dsp
│ │ │ ├── luasqloci8_dll.dsp
│ │ │ ├── luasqlodbc_dll.dsp
│ │ │ ├── luasqlpostgres_dll.dsp
│ │ │ ├── luasqlsqlite_dll.dsp
│ │ │ ├── mysql.def
│ │ │ ├── mysql40.rc
│ │ │ ├── mysql41.rc
│ │ │ ├── mysql50.rc
│ │ │ ├── oci8.def
│ │ │ ├── odbc.def
│ │ │ ├── postgres.def
│ │ │ ├── postgres.rc
│ │ │ ├── resource.h
│ │ │ └── sqlite.def
│ │ ├── luathread/
│ │ │ ├── LICENSE
│ │ │ ├── README
│ │ │ ├── auxiliar.c
│ │ │ ├── auxiliar.h
│ │ │ ├── compat-5.1r2/
│ │ │ │ ├── compat-5.1.c
│ │ │ │ ├── compat-5.1.h
│ │ │ │ └── compat-5.1.lua
│ │ │ ├── examples/
│ │ │ │ ├── prodcons-simple.lua
│ │ │ │ ├── prodcons.lua
│ │ │ │ ├── recursive.lua
│ │ │ │ ├── simple-nolock.lua
│ │ │ │ └── simple.lua
│ │ │ ├── luathread.c
│ │ │ ├── luathread.h
│ │ │ ├── manual/
│ │ │ │ ├── examples.html
│ │ │ │ ├── home.html
│ │ │ │ ├── installation.html
│ │ │ │ └── reference.html
│ │ │ ├── pt.c
│ │ │ ├── pt.h
│ │ │ ├── srm.c
│ │ │ └── srm.h
│ │ ├── luatraverse/
│ │ │ ├── examples/
│ │ │ │ └── luastate.lua
│ │ │ └── luatraverse.lua
│ │ ├── lzlib/
│ │ │ ├── CHANGES
│ │ │ ├── Makefile
│ │ │ ├── README
│ │ │ ├── README.lgzip
│ │ │ ├── gzip.lua
│ │ │ ├── lzlib.c
│ │ │ ├── rockspec/
│ │ │ │ ├── INSTALL
│ │ │ │ └── lzlib-git-1.rockspec
│ │ │ ├── test_gzip.lua
│ │ │ ├── test_prologue.lua
│ │ │ ├── test_zlib2.lua
│ │ │ ├── test_zlib3.lua
│ │ │ ├── test_zlib_dict.lua
│ │ │ └── zlib.def
│ │ ├── markdown/
│ │ │ ├── README.md
│ │ │ ├── markdown-tests.lua
│ │ │ └── markdown.lua
│ │ ├── mcpp/
│ │ │ ├── mcpp/
│ │ │ │ ├── ChangeLog
│ │ │ │ ├── INSTALL
│ │ │ │ ├── INSTALL-jp
│ │ │ │ ├── LICENSE
│ │ │ │ ├── Makefile.am
│ │ │ │ ├── Makefile.in
│ │ │ │ ├── NEWS
│ │ │ │ ├── README
│ │ │ │ ├── aclocal.m4
│ │ │ │ ├── config/
│ │ │ │ │ ├── compile
│ │ │ │ │ ├── config.guess
│ │ │ │ │ ├── config.sub
│ │ │ │ │ ├── cygwin_root
│ │ │ │ │ ├── depcomp
│ │ │ │ │ ├── install-sh
│ │ │ │ │ ├── ltmain.sh
│ │ │ │ │ ├── mb_big5
│ │ │ │ │ ├── mb_jis
│ │ │ │ │ ├── mb_sjis
│ │ │ │ │ ├── mingw_root
│ │ │ │ │ └── missing
│ │ │ │ ├── configure
│ │ │ │ ├── configure.ac
│ │ │ │ ├── doc/
│ │ │ │ │ ├── LICENSE
│ │ │ │ │ ├── cpp-test.html
│ │ │ │ │ ├── cpp_test.sum
│ │ │ │ │ ├── mcpp-manual.html
│ │ │ │ │ └── mcpp-porting.html
│ │ │ │ ├── doc-jp/
│ │ │ │ │ ├── LICENSE
│ │ │ │ │ ├── cpp-test.html
│ │ │ │ │ ├── mcpp-manual.html
│ │ │ │ │ └── mcpp-porting.html
│ │ │ │ ├── mcpp-gcc.1
│ │ │ │ ├── mcpp.1
│ │ │ │ ├── noconfig/
│ │ │ │ │ ├── bc55.dif
│ │ │ │ │ ├── bc59.dif
│ │ │ │ │ ├── borlandc.mak
│ │ │ │ │ ├── cyg1310.dif
│ │ │ │ │ ├── cyg1518.dif
│ │ │ │ │ ├── cygwin.mak
│ │ │ │ │ ├── freebsd.mak
│ │ │ │ │ ├── lcc0308.dif
│ │ │ │ │ ├── lcc0603.dif
│ │ │ │ │ ├── lcc_w32.mak
│ │ │ │ │ ├── linux.mak
│ │ │ │ │ ├── linux_gcc2953.dif
│ │ │ │ │ ├── linux_gcc32.dif
│ │ │ │ │ ├── linux_gcc336.dif
│ │ │ │ │ ├── linux_gcc343.dif
│ │ │ │ │ ├── linux_gcc412.dif
│ │ │ │ │ ├── mac_gcc401_i686.dif
│ │ │ │ │ ├── mac_gcc401_powerpc.dif
│ │ │ │ │ ├── mac_osx.mak
│ │ │ │ │ ├── mingw.mak
│ │ │ │ │ ├── mingw345.dif
│ │ │ │ │ ├── vc2002.dif
│ │ │ │ │ ├── vc2003.dif
│ │ │ │ │ ├── vc2005.dif
│ │ │ │ │ ├── vc2008.dif
│ │ │ │ │ ├── vc6.dif
│ │ │ │ │ └── visualc.mak
│ │ │ │ ├── src/
│ │ │ │ │ ├── Makefile.am
│ │ │ │ │ ├── Makefile.in
│ │ │ │ │ ├── cc1.c
│ │ │ │ │ ├── config.h.in
│ │ │ │ │ ├── configed.H
│ │ │ │ │ ├── directive.c
│ │ │ │ │ ├── eval.c
│ │ │ │ │ ├── expand.c
│ │ │ │ │ ├── internal.H
│ │ │ │ │ ├── main.c
│ │ │ │ │ ├── main_libmcpp.c
│ │ │ │ │ ├── mbchar.c
│ │ │ │ │ ├── mcpp_lib.def
│ │ │ │ │ ├── mcpp_lib.h
│ │ │ │ │ ├── mcpp_out.h
│ │ │ │ │ ├── noconfig.H
│ │ │ │ │ ├── preproc.c
│ │ │ │ │ ├── set_mcpp.sh
│ │ │ │ │ ├── support.c
│ │ │ │ │ ├── system.H
│ │ │ │ │ ├── system.c
│ │ │ │ │ ├── testmain.c
│ │ │ │ │ └── unset_mcpp.sh
│ │ │ │ └── tool/
│ │ │ │ ├── LICENSE
│ │ │ │ ├── app_once.bat
│ │ │ │ ├── clock_of.c
│ │ │ │ ├── cpp_test.c
│ │ │ │ ├── ins_once.c
│ │ │ │ ├── once.txt
│ │ │ │ ├── rm_once.c
│ │ │ │ └── total.c
│ │ │ ├── mcpp.c
│ │ │ └── mcpp.jam
│ │ ├── md5/
│ │ │ ├── Makefile
│ │ │ ├── README
│ │ │ ├── ldigest.c
│ │ │ ├── lmd5.c
│ │ │ ├── lmd5.h
│ │ │ ├── md5.h
│ │ │ ├── md5c.c
│ │ │ ├── md5global.h
│ │ │ └── test.lua
│ │ ├── mk/
│ │ │ ├── README.markdown
│ │ │ ├── doc/
│ │ │ │ └── index.html
│ │ │ ├── ext/
│ │ │ │ ├── date/
│ │ │ │ │ └── smoothness/
│ │ │ │ │ └── jquery-ui-1.7.2.custom.css
│ │ │ │ ├── forms/
│ │ │ │ │ └── form_support.js
│ │ │ │ ├── richtext/
│ │ │ │ │ ├── jquery.wysiwyg.css
│ │ │ │ │ └── jquery.wysiwyg.js
│ │ │ │ └── tag/
│ │ │ │ └── jquery.autocomplete.css
│ │ │ ├── rockspecs/
│ │ │ │ └── mk-scm-1.rockspec
│ │ │ ├── samples/
│ │ │ │ ├── auth.lua
│ │ │ │ ├── forms.lua
│ │ │ │ ├── hello.lua
│ │ │ │ ├── sample_form.tmpl
│ │ │ │ ├── sample_nolabels.tmpl
│ │ │ │ └── songs.lua
│ │ │ ├── src/
│ │ │ │ ├── mk/
│ │ │ │ │ ├── auth.lua
│ │ │ │ │ ├── blocks.lua
│ │ │ │ │ ├── cache.lua
│ │ │ │ │ ├── forms.lua
│ │ │ │ │ ├── routes.lua
│ │ │ │ │ ├── template.lua
│ │ │ │ │ ├── themes.lua
│ │ │ │ │ └── util.lua
│ │ │ │ └── mk.lua
│ │ │ └── test/
│ │ │ ├── test_auth.lua
│ │ │ ├── test_cache.lua
│ │ │ └── test_routes.lua
│ │ ├── orbit/
│ │ │ ├── Makefile
│ │ │ ├── Makefile.win
│ │ │ ├── README
│ │ │ ├── configure
│ │ │ ├── doc/
│ │ │ │ ├── br/
│ │ │ │ │ ├── blog_config.lua
│ │ │ │ │ ├── example.html
│ │ │ │ │ ├── example.md
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── index.md
│ │ │ │ │ ├── license.html
│ │ │ │ │ ├── license.md
│ │ │ │ │ ├── makedoc.lua
│ │ │ │ │ ├── pages.html
│ │ │ │ │ ├── pages.md
│ │ │ │ │ ├── reference.html
│ │ │ │ │ └── reference.md
│ │ │ │ └── us/
│ │ │ │ ├── blog_config.lua
│ │ │ │ ├── example.html
│ │ │ │ ├── example.md
│ │ │ │ ├── index.html
│ │ │ │ ├── index.md
│ │ │ │ ├── license.html
│ │ │ │ ├── license.md
│ │ │ │ ├── makedoc.lua
│ │ │ │ ├── pages.html
│ │ │ │ ├── pages.md
│ │ │ │ ├── reference.html
│ │ │ │ └── reference.md
│ │ │ ├── rockspec/
│ │ │ │ ├── orbit-2.0-1.rockspec
│ │ │ │ ├── orbit-2.0.1-1.rockspec
│ │ │ │ ├── orbit-2.0.2-1.rockspec
│ │ │ │ ├── orbit-2.0rc1-1.rockspec
│ │ │ │ ├── orbit-2.1.0-1.rockspec
│ │ │ │ ├── orbit-2.2.0-1.rockspec
│ │ │ │ ├── orbit-cvs-1.rockspec
│ │ │ │ ├── orbit-cvs-2.rockspec
│ │ │ │ └── orbit-schema-1.rockspec
│ │ │ ├── samples/
│ │ │ │ ├── README
│ │ │ │ ├── blog/
│ │ │ │ │ ├── .htaccess
│ │ │ │ │ ├── blog.dump.sqlite3
│ │ │ │ │ ├── blog.lua
│ │ │ │ │ ├── blog.ws
│ │ │ │ │ ├── blog_config.lua
│ │ │ │ │ ├── blog_doc.txt
│ │ │ │ │ ├── blog_schema.mysql
│ │ │ │ │ ├── blog_schema.sql
│ │ │ │ │ ├── dump.lua
│ │ │ │ │ ├── header.xcf
│ │ │ │ │ ├── populate_mysql.lua
│ │ │ │ │ ├── random_text.lua
│ │ │ │ │ └── style.css
│ │ │ │ ├── doc/
│ │ │ │ │ └── nothing
│ │ │ │ ├── hello/
│ │ │ │ │ └── hello.lua
│ │ │ │ ├── op.ws
│ │ │ │ ├── pages/
│ │ │ │ │ ├── bar.op
│ │ │ │ │ ├── css/
│ │ │ │ │ │ └── doc.css
│ │ │ │ │ ├── foo.op
│ │ │ │ │ ├── index.op
│ │ │ │ │ └── test.op
│ │ │ │ ├── songs/
│ │ │ │ │ └── songs.lua
│ │ │ │ ├── sproutcore/
│ │ │ │ │ ├── static/
│ │ │ │ │ │ ├── sproutcore/
│ │ │ │ │ │ │ ├── bootstrap/
│ │ │ │ │ │ │ │ └── en/
│ │ │ │ │ │ │ │ └── fd3ef3775313919c9d16dc2f2129aae8549dcbfa/
│ │ │ │ │ │ │ │ ├── javascript.js
│ │ │ │ │ │ │ │ └── setup_body_class_names.js
│ │ │ │ │ │ │ ├── datastore/
│ │ │ │ │ │ │ │ └── en/
│ │ │ │ │ │ │ │ └── 59bda761d63639cc5f5a4342ee678fada0d577cc/
│ │ │ │ │ │ │ │ ├── javascript-packed.js
│ │ │ │ │ │ │ │ ├── javascript.js
│ │ │ │ │ │ │ │ └── stylesheet-packed.css
│ │ │ │ │ │ │ ├── desktop/
│ │ │ │ │ │ │ │ └── en/
│ │ │ │ │ │ │ │ └── 1425eba6eeb45c8823b8dc7cdfcea8aeffe59a66/
│ │ │ │ │ │ │ │ ├── javascript-packed.js
│ │ │ │ │ │ │ │ ├── javascript.js
│ │ │ │ │ │ │ │ ├── stylesheet-packed.css
│ │ │ │ │ │ │ │ └── stylesheet.css
│ │ │ │ │ │ │ ├── empty_theme/
│ │ │ │ │ │ │ │ └── en/
│ │ │ │ │ │ │ │ └── 21c3b7b16d7ef39d60d2651975590828812f3ad9/
│ │ │ │ │ │ │ │ ├── javascript-packed.js
│ │ │ │ │ │ │ │ └── stylesheet-packed.css
│ │ │ │ │ │ │ ├── en/
│ │ │ │ │ │ │ │ └── 160fa25cc6d7adb0a0a201d11668361e03d8e9cc/
│ │ │ │ │ │ │ │ ├── javascript-packed.js
│ │ │ │ │ │ │ │ ├── javascript.js
│ │ │ │ │ │ │ │ └── stylesheet-packed.css
│ │ │ │ │ │ │ ├── foundation/
│ │ │ │ │ │ │ │ └── en/
│ │ │ │ │ │ │ │ └── bcfdf5ca1125ccb312799938d8f09a81676f5db0/
│ │ │ │ │ │ │ │ ├── javascript-packed.js
│ │ │ │ │ │ │ │ ├── javascript.js
│ │ │ │ │ │ │ │ ├── stylesheet-packed.css
│ │ │ │ │ │ │ │ └── stylesheet.css
│ │ │ │ │ │ │ ├── runtime/
│ │ │ │ │ │ │ │ └── en/
│ │ │ │ │ │ │ │ └── d9e5073e5a6d48c7c3c4e53ef7bf433a6f6ac61b/
│ │ │ │ │ │ │ │ ├── javascript-packed.js
│ │ │ │ │ │ │ │ ├── javascript.js
│ │ │ │ │ │ │ │ └── stylesheet-packed.css
│ │ │ │ │ │ │ └── standard_theme/
│ │ │ │ │ │ │ └── en/
│ │ │ │ │ │ │ └── 52366532814d7f12ca549445e2e2a07c4b5f73d6/
│ │ │ │ │ │ │ ├── javascript-packed.js
│ │ │ │ │ │ │ ├── stylesheet-packed.css
│ │ │ │ │ │ │ └── stylesheet.css
│ │ │ │ │ │ └── todos/
│ │ │ │ │ │ └── en/
│ │ │ │ │ │ └── ee972277c11ed2d7cf0765e9c5b9738575b9248d/
│ │ │ │ │ │ ├── index.html
│ │ │ │ │ │ └── javascript.js
│ │ │ │ │ ├── todo.lua
│ │ │ │ │ └── todo.sql
│ │ │ │ ├── todo/
│ │ │ │ │ ├── items.op
│ │ │ │ │ ├── todo.lua
│ │ │ │ │ ├── todo.op
│ │ │ │ │ └── todo.sql
│ │ │ │ └── toycms/
│ │ │ │ ├── config.lua
│ │ │ │ ├── ext/
│ │ │ │ │ ├── date/
│ │ │ │ │ │ └── smoothness/
│ │ │ │ │ │ └── jquery-ui-1.7.2.custom.css
│ │ │ │ │ ├── forms/
│ │ │ │ │ │ └── form_support.js
│ │ │ │ │ ├── richtext/
│ │ │ │ │ │ ├── jquery.wysiwyg.css
│ │ │ │ │ │ └── jquery.wysiwyg.js
│ │ │ │ │ └── tag/
│ │ │ │ │ └── jquery.autocomplete.css
│ │ │ │ ├── plugins/
│ │ │ │ │ ├── nodes.lua
│ │ │ │ │ └── poll.lua
│ │ │ │ ├── themes/
│ │ │ │ │ ├── default/
│ │ │ │ │ │ ├── config.lua
│ │ │ │ │ │ ├── css/
│ │ │ │ │ │ │ └── default.css
│ │ │ │ │ │ ├── layout.html
│ │ │ │ │ │ └── pages/
│ │ │ │ │ │ ├── home.html
│ │ │ │ │ │ ├── poll.html
│ │ │ │ │ │ └── post.html
│ │ │ │ │ └── wordpress/
│ │ │ │ │ ├── blocks/
│ │ │ │ │ │ ├── about.html
│ │ │ │ │ │ ├── archives.html
│ │ │ │ │ │ ├── banner.html
│ │ │ │ │ │ ├── copyright.html
│ │ │ │ │ │ ├── ga.html
│ │ │ │ │ │ ├── links.html
│ │ │ │ │ │ ├── poll.html
│ │ │ │ │ │ ├── poll_result.html
│ │ │ │ │ │ ├── post.html
│ │ │ │ │ │ ├── powered_by.html
│ │ │ │ │ │ ├── recent_links.html
│ │ │ │ │ │ ├── show_latest.html
│ │ │ │ │ │ └── syndicate.html
│ │ │ │ │ ├── config.lua
│ │ │ │ │ ├── css/
│ │ │ │ │ │ ├── base_styles.css
│ │ │ │ │ │ ├── style.css
│ │ │ │ │ │ └── theme_styles.css
│ │ │ │ │ ├── layout.html
│ │ │ │ │ └── pages/
│ │ │ │ │ ├── form-edit-node.html
│ │ │ │ │ ├── form-new-node.html
│ │ │ │ │ ├── home.html
│ │ │ │ │ ├── poll.html
│ │ │ │ │ └── post.html
│ │ │ │ ├── toycms.lua
│ │ │ │ └── toycms.sql
│ │ │ ├── src/
│ │ │ │ ├── launchers/
│ │ │ │ │ ├── op.cgi
│ │ │ │ │ ├── op.fcgi
│ │ │ │ │ └── orbit
│ │ │ │ ├── orbit/
│ │ │ │ │ ├── model.lua
│ │ │ │ │ ├── ophandler.lua
│ │ │ │ │ ├── pages.lua
│ │ │ │ │ └── schema.lua
│ │ │ │ └── orbit.lua
│ │ │ └── test/
│ │ │ ├── test_schema.lua
│ │ │ └── test_sql.lua
│ │ ├── ospath/
│ │ │ ├── COPYRIGHT
│ │ │ ├── doc/
│ │ │ │ └── us/
│ │ │ │ ├── doc.bat
│ │ │ │ ├── doc.css
│ │ │ │ ├── index.html
│ │ │ │ ├── index.md
│ │ │ │ └── makedoc.lua
│ │ │ ├── ospath.jam
│ │ │ ├── readme.md
│ │ │ ├── src/
│ │ │ │ ├── ospath.c
│ │ │ │ ├── ospath.lua
│ │ │ │ ├── pusherror.c
│ │ │ │ └── pusherror.h
│ │ │ └── tests/
│ │ │ ├── ospathtests.lua
│ │ │ └── rt4.lua
│ │ ├── osprocess/
│ │ │ ├── COPYRIGHT
│ │ │ ├── doc/
│ │ │ │ └── us/
│ │ │ │ ├── doc.bat
│ │ │ │ ├── doc.css
│ │ │ │ ├── index.html
│ │ │ │ ├── index.md
│ │ │ │ └── makedoc.lua
│ │ │ ├── osprocess.jam
│ │ │ ├── osprocess.lua
│ │ │ ├── posix/
│ │ │ │ ├── ex.c
│ │ │ │ ├── posix_spawn.c
│ │ │ │ ├── posix_spawn.h
│ │ │ │ ├── spawn.c
│ │ │ │ └── spawn.h
│ │ │ ├── readme.md
│ │ │ ├── tests/
│ │ │ │ ├── rt1.lua
│ │ │ │ ├── rt2.lua
│ │ │ │ ├── rt5.lua
│ │ │ │ └── rt7.lua
│ │ │ └── w32api/
│ │ │ ├── ex.c
│ │ │ ├── pusherror.c
│ │ │ ├── pusherror.h
│ │ │ ├── spawn.c
│ │ │ └── spawn.h
│ │ ├── p4/
│ │ │ ├── .gitignore
│ │ │ ├── doc/
│ │ │ │ └── us/
│ │ │ │ ├── doc.bat
│ │ │ │ ├── doc.css
│ │ │ │ ├── index.html
│ │ │ │ ├── index.md
│ │ │ │ ├── license.html
│ │ │ │ ├── license.md
│ │ │ │ └── makedoc.lua
│ │ │ ├── getp4api_macosx.sh
│ │ │ ├── getp4api_vs2008.bat
│ │ │ ├── getp4api_vs2010.bat
│ │ │ ├── p4.jam
│ │ │ ├── readme.md
│ │ │ ├── src/
│ │ │ │ ├── clientuserlua.cpp
│ │ │ │ ├── clientuserlua.h
│ │ │ │ ├── luamessage.cpp
│ │ │ │ ├── luamessage.h
│ │ │ │ ├── p4.cpp
│ │ │ │ ├── p4.lua
│ │ │ │ ├── p4clientapi.cpp
│ │ │ │ ├── p4clientapi.h
│ │ │ │ ├── p4lua.def
│ │ │ │ ├── p4luadebug.h
│ │ │ │ ├── p4mapmaker.cpp
│ │ │ │ ├── p4mapmaker.h
│ │ │ │ ├── p4mergedata.cpp
│ │ │ │ ├── p4mergedata.h
│ │ │ │ ├── p4result.cpp
│ │ │ │ ├── p4result.h
│ │ │ │ ├── specmgr.cpp
│ │ │ │ ├── specmgr.h
│ │ │ │ └── undefdups.h
│ │ │ └── test/
│ │ │ ├── api_level.lua
│ │ │ ├── changepassword.lua
│ │ │ ├── charset.lua
│ │ │ ├── createws_sync.lua
│ │ │ ├── cwd.lua
│ │ │ ├── delete_all_labels.lua
│ │ │ ├── delete_client_365.lua
│ │ │ ├── errors.lua
│ │ │ ├── exception_level.lua
│ │ │ ├── filelog.lua
│ │ │ ├── info.lua
│ │ │ ├── input.lua
│ │ │ ├── keepalive1.lua
│ │ │ ├── keepalive2.lua
│ │ │ ├── login.lua
│ │ │ ├── modify_client1.lua
│ │ │ ├── modify_client2.lua
│ │ │ ├── output.lua
│ │ │ ├── password.lua
│ │ │ ├── prog.lua
│ │ │ ├── resolve.lua
│ │ │ ├── submit1.lua
│ │ │ ├── submit2.lua
│ │ │ └── warnings.lua
│ │ ├── pack/
│ │ │ ├── Makefile
│ │ │ ├── README
│ │ │ ├── lpack.c
│ │ │ └── test.lua
│ │ ├── penlight/
│ │ │ ├── CHANGES.md
│ │ │ ├── CONTRIBUTING.md
│ │ │ ├── LICENSE.md
│ │ │ ├── README.md
│ │ │ ├── doc/
│ │ │ │ ├── config.ld
│ │ │ │ └── manual/
│ │ │ │ ├── 01-introduction.md
│ │ │ │ ├── 02-arrays.md
│ │ │ │ ├── 03-strings.md
│ │ │ │ ├── 04-paths.md
│ │ │ │ ├── 05-dates.md
│ │ │ │ ├── 06-data.md
│ │ │ │ ├── 07-functional.md
│ │ │ │ ├── 08-additional.md
│ │ │ │ └── 09-discussion.md
│ │ │ ├── examples/
│ │ │ │ ├── seesubst.lua
│ │ │ │ ├── sipscan.lua
│ │ │ │ ├── symbols.lua
│ │ │ │ ├── test-cmp.lua
│ │ │ │ ├── test-listcallbacks.lua
│ │ │ │ ├── test-pretty.lua
│ │ │ │ ├── test-symbols.lua
│ │ │ │ ├── testapp.lua
│ │ │ │ ├── testclone.lua
│ │ │ │ ├── testconfig.lua
│ │ │ │ ├── testglobal.lua
│ │ │ │ ├── testinputfields.lua
│ │ │ │ ├── testinputfields2.lua
│ │ │ │ ├── testxml.lua
│ │ │ │ └── which.lua
│ │ │ ├── lua/
│ │ │ │ └── pl/
│ │ │ │ ├── Date.lua
│ │ │ │ ├── Map.lua
│ │ │ │ ├── MultiMap.lua
│ │ │ │ ├── OrderedMap.lua
│ │ │ │ ├── Set.lua
│ │ │ │ ├── app.lua
│ │ │ │ ├── array2d.lua
│ │ │ │ ├── class.lua
│ │ │ │ ├── compat.lua
│ │ │ │ ├── comprehension.lua
│ │ │ │ ├── config.lua
│ │ │ │ ├── data.lua
│ │ │ │ ├── dir.lua
│ │ │ │ ├── file.lua
│ │ │ │ ├── func.lua
│ │ │ │ ├── import_into.lua
│ │ │ │ ├── init.lua
│ │ │ │ ├── input.lua
│ │ │ │ ├── lapp.lua
│ │ │ │ ├── lexer.lua
│ │ │ │ ├── list.lua
│ │ │ │ ├── luabalanced.lua
│ │ │ │ ├── operator.lua
│ │ │ │ ├── path.lua
│ │ │ │ ├── permute.lua
│ │ │ │ ├── pretty.lua
│ │ │ │ ├── seq.lua
│ │ │ │ ├── sip.lua
│ │ │ │ ├── strict.lua
│ │ │ │ ├── stringio.lua
│ │ │ │ ├── stringx.lua
│ │ │ │ ├── tablex.lua
│ │ │ │ ├── template.lua
│ │ │ │ ├── test.lua
│ │ │ │ ├── text.lua
│ │ │ │ ├── types.lua
│ │ │ │ ├── utils.lua
│ │ │ │ └── xml.lua
│ │ │ ├── penlight-1.1.0-3.rockspec
│ │ │ ├── run.lua
│ │ │ └── tests/
│ │ │ ├── lua/
│ │ │ │ ├── animal.lua
│ │ │ │ ├── bar.lua
│ │ │ │ ├── foo/
│ │ │ │ │ └── args.lua
│ │ │ │ ├── mod52.lua
│ │ │ │ └── mymod.lua
│ │ │ ├── test-animal.lua
│ │ │ ├── test-args.lua
│ │ │ ├── test-array.lua
│ │ │ ├── test-class.lua
│ │ │ ├── test-compare-no-order.lua
│ │ │ ├── test-comprehension.lua
│ │ │ ├── test-config.lua
│ │ │ ├── test-data.lua
│ │ │ ├── test-date.lua
│ │ │ ├── test-dir.lua
│ │ │ ├── test-fenv.lua
│ │ │ ├── test-func.lua
│ │ │ ├── test-import_into.lua
│ │ │ ├── test-job-query.lua
│ │ │ ├── test-klass.lua
│ │ │ ├── test-lapp.lua
│ │ │ ├── test-lexer.lua
│ │ │ ├── test-list.lua
│ │ │ ├── test-map.lua
│ │ │ ├── test-move.lua
│ │ │ ├── test-path.lua
│ │ │ ├── test-pretty-number.lua
│ │ │ ├── test-pretty.lua
│ │ │ ├── test-pylib.lua
│ │ │ ├── test-relpath.lua
│ │ │ ├── test-seq.lua
│ │ │ ├── test-set.lua
│ │ │ ├── test-sip.lua
│ │ │ ├── test-strict.lua
│ │ │ ├── test-stringio.lua
│ │ │ ├── test-stringx.lua
│ │ │ ├── test-substitute.lua
│ │ │ ├── test-super.lua
│ │ │ ├── test-tablex.lua
│ │ │ ├── test-text.lua
│ │ │ ├── test-tzone.lua
│ │ │ ├── test-vector.lua
│ │ │ ├── test-xml.lua
│ │ │ └── tests.run
│ │ ├── python/
│ │ │ ├── CMakeLists.txt
│ │ │ ├── LICENSE
│ │ │ ├── MANIFEST.in
│ │ │ ├── Makefile
│ │ │ ├── PKG-INFO
│ │ │ ├── README.md
│ │ │ ├── setup.cfg
│ │ │ ├── setup.py
│ │ │ ├── src/
│ │ │ │ ├── CMakeLists.txt
│ │ │ │ ├── luainpython.c
│ │ │ │ ├── luainpython.h
│ │ │ │ ├── pythoninlua.c
│ │ │ │ └── pythoninlua.h
│ │ │ └── test.py
│ │ ├── python-marshal/
│ │ │ ├── marshal.lua
│ │ │ └── python-marshal.jam
│ │ ├── random/
│ │ │ ├── Makefile
│ │ │ ├── README
│ │ │ ├── lrandom.c
│ │ │ ├── random.c
│ │ │ └── test.lua
│ │ ├── replace/
│ │ │ ├── replace.c
│ │ │ └── replace.jam
│ │ ├── rings/
│ │ │ ├── Makefile
│ │ │ ├── Makefile.win
│ │ │ ├── README
│ │ │ ├── config
│ │ │ ├── config.win
│ │ │ ├── configure
│ │ │ ├── doc/
│ │ │ │ └── us/
│ │ │ │ ├── index.html
│ │ │ │ ├── license.html
│ │ │ │ └── manual.html
│ │ │ ├── rockspecs/
│ │ │ │ ├── rings-1.2.0-1.rockspec
│ │ │ │ ├── rings-1.2.0-2.rockspec
│ │ │ │ ├── rings-1.2.1-1.rockspec
│ │ │ │ ├── rings-1.2.1rc1-1.rockspec
│ │ │ │ ├── rings-1.2.2-1.rockspec
│ │ │ │ ├── rings-1.2.2-2.rockspec
│ │ │ │ ├── rings-1.2.3-1.rockspec
│ │ │ │ ├── rings-1.3.0-1.rockspec
│ │ │ │ ├── rings-cvs-2.rockspec
│ │ │ │ ├── rings-cvs-3.rockspec
│ │ │ │ └── rings-cvs-4.rockspec
│ │ │ ├── src/
│ │ │ │ ├── rings.c
│ │ │ │ ├── rings.def
│ │ │ │ └── stable.lua
│ │ │ ├── tests/
│ │ │ │ ├── sample.lua
│ │ │ │ ├── sample_state.lua
│ │ │ │ └── test.lua
│ │ │ └── vc6/
│ │ │ ├── rings.def
│ │ │ ├── rings.dsw
│ │ │ └── rings_dll.dsp
│ │ ├── slnunicode/
│ │ │ ├── CHANGES
│ │ │ ├── Makefile
│ │ │ ├── slnudata.c
│ │ │ ├── slnunico.c
│ │ │ └── unitest
│ │ ├── socket/
│ │ │ ├── .gitignore
│ │ │ ├── .travis.yml
│ │ │ ├── FIX
│ │ │ ├── LICENSE
│ │ │ ├── Lua51.props
│ │ │ ├── Lua52.props
│ │ │ ├── NEW
│ │ │ ├── README
│ │ │ ├── TODO
│ │ │ ├── WISH
│ │ │ ├── doc/
│ │ │ │ ├── dns.html
│ │ │ │ ├── ftp.html
│ │ │ │ ├── http.html
│ │ │ │ ├── index.html
│ │ │ │ ├── installation.html
│ │ │ │ ├── introduction.html
│ │ │ │ ├── ltn12.html
│ │ │ │ ├── lua05.ppt
│ │ │ │ ├── mime.html
│ │ │ │ ├── reference.css
│ │ │ │ ├── reference.html
│ │ │ │ ├── smtp.html
│ │ │ │ ├── socket.html
│ │ │ │ ├── tcp.html
│ │ │ │ ├── udp.html
│ │ │ │ └── url.html
│ │ │ ├── etc/
│ │ │ │ ├── README
│ │ │ │ ├── b64.lua
│ │ │ │ ├── check-links.lua
│ │ │ │ ├── check-memory.lua
│ │ │ │ ├── cookie.lua
│ │ │ │ ├── dict.lua
│ │ │ │ ├── dispatch.lua
│ │ │ │ ├── eol.lua
│ │ │ │ ├── forward.lua
│ │ │ │ ├── get.lua
│ │ │ │ ├── links
│ │ │ │ ├── lp.lua
│ │ │ │ ├── qp.lua
│ │ │ │ └── tftp.lua
│ │ │ ├── gem/
│ │ │ │ ├── ex1.lua
│ │ │ │ ├── ex10.lua
│ │ │ │ ├── ex11.lua
│ │ │ │ ├── ex12.lua
│ │ │ │ ├── ex2.lua
│ │ │ │ ├── ex3.lua
│ │ │ │ ├── ex4.lua
│ │ │ │ ├── ex5.lua
│ │ │ │ ├── ex6.lua
│ │ │ │ ├── ex7.lua
│ │ │ │ ├── ex8.lua
│ │ │ │ ├── ex9.lua
│ │ │ │ ├── gem.c
│ │ │ │ ├── gt.b64
│ │ │ │ ├── ltn012.tex
│ │ │ │ ├── makefile
│ │ │ │ ├── myps2pdf
│ │ │ │ ├── t1.lua
│ │ │ │ ├── t1lf.txt
│ │ │ │ ├── t2.lua
│ │ │ │ ├── t2.txt
│ │ │ │ ├── t2gt.qp
│ │ │ │ ├── t3.lua
│ │ │ │ ├── t4.lua
│ │ │ │ ├── t5.lua
│ │ │ │ └── test.lua
│ │ │ ├── linux.cmd
│ │ │ ├── logo.ps
│ │ │ ├── ltn012.wiki
│ │ │ ├── ltn013.wiki
│ │ │ ├── luasocket-scm-0.rockspec
│ │ │ ├── luasocket.sln
│ │ │ ├── macosx.cmd
│ │ │ ├── makefile
│ │ │ ├── makefile.dist
│ │ │ ├── mime.vcxproj
│ │ │ ├── mime.vcxproj.filters
│ │ │ ├── mingw.cmd
│ │ │ ├── samples/
│ │ │ │ ├── README
│ │ │ │ ├── cddb.lua
│ │ │ │ ├── daytimeclnt.lua
│ │ │ │ ├── echoclnt.lua
│ │ │ │ ├── echosrvr.lua
│ │ │ │ ├── listener.lua
│ │ │ │ ├── lpr.lua
│ │ │ │ ├── mclisten.lua
│ │ │ │ ├── mcsend.lua
│ │ │ │ ├── talker.lua
│ │ │ │ └── tinyirc.lua
│ │ │ ├── socket.vcxproj
│ │ │ ├── socket.vcxproj.filters
│ │ │ ├── src/
│ │ │ │ ├── auxiliar.c
│ │ │ │ ├── auxiliar.h
│ │ │ │ ├── buffer.c
│ │ │ │ ├── buffer.h
│ │ │ │ ├── except.c
│ │ │ │ ├── except.h
│ │ │ │ ├── ftp.lua
│ │ │ │ ├── headers.lua
│ │ │ │ ├── http.lua
│ │ │ │ ├── inet.c
│ │ │ │ ├── inet.h
│ │ │ │ ├── io.c
│ │ │ │ ├── io.h
│ │ │ │ ├── ltn12.lua
│ │ │ │ ├── luasocket.c
│ │ │ │ ├── luasocket.h
│ │ │ │ ├── makefile
│ │ │ │ ├── mbox.lua
│ │ │ │ ├── mime.c
│ │ │ │ ├── mime.h
│ │ │ │ ├── mime.lua
│ │ │ │ ├── options.c
│ │ │ │ ├── options.h
│ │ │ │ ├── select.c
│ │ │ │ ├── select.h
│ │ │ │ ├── serial.c
│ │ │ │ ├── smtp.lua
│ │ │ │ ├── socket.h
│ │ │ │ ├── socket.lua
│ │ │ │ ├── tcp.c
│ │ │ │ ├── tcp.h
│ │ │ │ ├── timeout.c
│ │ │ │ ├── timeout.h
│ │ │ │ ├── tp.lua
│ │ │ │ ├── udp.c
│ │ │ │ ├── udp.h
│ │ │ │ ├── unix.c
│ │ │ │ ├── unix.h
│ │ │ │ ├── url.lua
│ │ │ │ ├── usocket.c
│ │ │ │ ├── usocket.h
│ │ │ │ ├── wsocket.c
│ │ │ │ └── wsocket.h
│ │ │ ├── test/
│ │ │ │ ├── README
│ │ │ │ ├── auth/
│ │ │ │ │ ├── .htpasswd
│ │ │ │ │ └── index.html
│ │ │ │ ├── cgi/
│ │ │ │ │ ├── cat
│ │ │ │ │ ├── cat-index-html
│ │ │ │ │ ├── env
│ │ │ │ │ ├── query-string
│ │ │ │ │ ├── redirect-loop
│ │ │ │ │ └── request-uri
│ │ │ │ ├── dicttest.lua
│ │ │ │ ├── excepttest.lua
│ │ │ │ ├── find-connect-limit
│ │ │ │ ├── ftptest.lua
│ │ │ │ ├── hello.lua
│ │ │ │ ├── httptest.lua
│ │ │ │ ├── index.html
│ │ │ │ ├── ltn12test.lua
│ │ │ │ ├── mimetest.lua
│ │ │ │ ├── smtptest.lua
│ │ │ │ ├── stufftest.lua
│ │ │ │ ├── tcp-getoptions
│ │ │ │ ├── test_bind.lua
│ │ │ │ ├── test_getaddrinfo.lua
│ │ │ │ ├── test_socket_error.lua
│ │ │ │ ├── testclnt.lua
│ │ │ │ ├── testmesg.lua
│ │ │ │ ├── testsrvr.lua
│ │ │ │ ├── testsupport.lua
│ │ │ │ ├── tftptest.lua
│ │ │ │ ├── udp-zero-length-send
│ │ │ │ ├── udp-zero-length-send-recv
│ │ │ │ ├── udpconnectclnt.lua
│ │ │ │ ├── udpconnectsrvr.lua
│ │ │ │ ├── unixclnt.lua
│ │ │ │ ├── unixsrvr.lua
│ │ │ │ ├── upload.html
│ │ │ │ ├── urltest.lua
│ │ │ │ ├── utestclnt.lua
│ │ │ │ └── utestsrvr.lua
│ │ │ └── win32.cmd
│ │ ├── sqlite3/
│ │ │ ├── ChangeLog
│ │ │ ├── LICENSE
│ │ │ ├── Makefile.in
│ │ │ ├── README
│ │ │ ├── configure
│ │ │ ├── configure.ac
│ │ │ ├── documentation.html
│ │ │ ├── examples/
│ │ │ │ ├── aggregate.lua
│ │ │ │ ├── function.lua
│ │ │ │ ├── order.lua
│ │ │ │ ├── path.lua
│ │ │ │ ├── simple.lua
│ │ │ │ ├── smart.lua
│ │ │ │ ├── statement.lua
│ │ │ │ └── tracing.lua
│ │ │ ├── libluasqlite3-loader.lua.in
│ │ │ ├── libluasqlite3.c
│ │ │ ├── luasql-sqlite3.lua
│ │ │ ├── lunit.lua
│ │ │ ├── sqlite/
│ │ │ │ ├── sqlite3.c
│ │ │ │ ├── sqlite3.h
│ │ │ │ └── sqlite3ext.h
│ │ │ ├── sqlite3.lua
│ │ │ ├── tests-luasql.lua
│ │ │ ├── tests-sqlite3.lua
│ │ │ └── tests.lua
│ │ ├── struct/
│ │ │ ├── makefile
│ │ │ ├── struct.c
│ │ │ ├── struct.html
│ │ │ └── teststruct.lua
│ │ ├── uuid/
│ │ │ ├── Makefile
│ │ │ ├── Makefile.win32
│ │ │ ├── README
│ │ │ ├── README.win32
│ │ │ ├── luuid.c
│ │ │ ├── test.lua
│ │ │ ├── wuuid.c
│ │ │ └── wuuid.h
│ │ ├── windows/
│ │ │ ├── KeystrokeEngine.cpp
│ │ │ ├── KeystrokeEngine.h
│ │ │ ├── WindowEngine.cpp
│ │ │ ├── WindowEngine.h
│ │ │ ├── windows.cpp
│ │ │ └── windows.jam
│ │ ├── windows-reg/
│ │ │ ├── src/
│ │ │ │ ├── hkey.c
│ │ │ │ ├── pusherror.c
│ │ │ │ ├── pusherror.h
│ │ │ │ └── reg.lua
│ │ │ └── windows-reg.jam
│ │ ├── wsapi/
│ │ │ ├── Makefile
│ │ │ ├── Makefile.win
│ │ │ ├── README
│ │ │ ├── configure
│ │ │ ├── doc/
│ │ │ │ └── us/
│ │ │ │ ├── doc.css
│ │ │ │ ├── index.html
│ │ │ │ ├── index.md
│ │ │ │ ├── libraries.html
│ │ │ │ ├── libraries.md
│ │ │ │ ├── license.html
│ │ │ │ ├── license.md
│ │ │ │ ├── makedoc.lua
│ │ │ │ ├── manual.html
│ │ │ │ └── manual.md
│ │ │ ├── rockspec/
│ │ │ │ ├── wsapi-1.0-1.rockspec
│ │ │ │ ├── wsapi-1.0-2.rockspec
│ │ │ │ ├── wsapi-1.0rc1-1.rockspec
│ │ │ │ ├── wsapi-1.1-1.rockspec
│ │ │ │ ├── wsapi-1.1-2.rockspec
│ │ │ │ ├── wsapi-1.2-1.rockspec
│ │ │ │ ├── wsapi-1.2-2.rockspec
│ │ │ │ ├── wsapi-1.3-1.rockspec
│ │ │ │ ├── wsapi-1.3.1-1.rockspec
│ │ │ │ ├── wsapi-1.3.2-1.rockspec
│ │ │ │ ├── wsapi-1.3.3-1.rockspec
│ │ │ │ ├── wsapi-1.3.4-1.rockspec
│ │ │ │ ├── wsapi-1.4-1.rockspec
│ │ │ │ ├── wsapi-1.5-1.rockspec
│ │ │ │ ├── wsapi-1.6-1.rockspec
│ │ │ │ ├── wsapi-1.6.1-1.rockspec
│ │ │ │ ├── wsapi-cvs-1.rockspec
│ │ │ │ ├── wsapi-cvs-2.rockspec
│ │ │ │ ├── wsapi-cvs-3.rockspec
│ │ │ │ ├── wsapi-cvs-4.rockspec
│ │ │ │ ├── wsapi-fcgi-1.0-1.rockspec
│ │ │ │ ├── wsapi-fcgi-1.0-2.rockspec
│ │ │ │ ├── wsapi-fcgi-1.0rc1-1.rockspec
│ │ │ │ ├── wsapi-fcgi-1.1-1.rockspec
│ │ │ │ ├── wsapi-fcgi-1.1-2.rockspec
│ │ │ │ ├── wsapi-fcgi-1.1-3.rockspec
│ │ │ │ ├── wsapi-fcgi-1.2-1.rockspec
│ │ │ │ ├── wsapi-fcgi-1.3-1.rockspec
│ │ │ │ ├── wsapi-fcgi-1.3.1-1.rockspec
│ │ │ │ ├── wsapi-fcgi-1.3.2-1.rockspec
│ │ │ │ ├── wsapi-fcgi-1.3.3-1.rockspec
│ │ │ │ ├── wsapi-fcgi-1.3.4-1.rockspec
│ │ │ │ ├── wsapi-fcgi-1.4-1.rockspec
│ │ │ │ ├── wsapi-fcgi-1.5-1.rockspec
│ │ │ │ ├── wsapi-fcgi-1.6-1.rockspec
│ │ │ │ ├── wsapi-fcgi-1.6.1-1.rockspec
│ │ │ │ ├── wsapi-fcgi-cvs-1.rockspec
│ │ │ │ ├── wsapi-fcgi-cvs-2.rockspec
│ │ │ │ ├── wsapi-xavante-1.2-1.rockspec
│ │ │ │ ├── wsapi-xavante-1.3-1.rockspec
│ │ │ │ ├── wsapi-xavante-1.3.1-1.rockspec
│ │ │ │ ├── wsapi-xavante-1.3.2-1.rockspec
│ │ │ │ ├── wsapi-xavante-1.3.3-1.rockspec
│ │ │ │ ├── wsapi-xavante-1.3.4-1.rockspec
│ │ │ │ ├── wsapi-xavante-1.4-1.rockspec
│ │ │ │ ├── wsapi-xavante-1.5-1.rockspec
│ │ │ │ ├── wsapi-xavante-1.6-1.rockspec
│ │ │ │ ├── wsapi-xavante-1.6.1-1.rockspec
│ │ │ │ └── wsapi-xavante-cvs-1.rockspec
│ │ │ ├── samples/
│ │ │ │ ├── cgi-example.lua
│ │ │ │ ├── fastcgi-example.lua
│ │ │ │ ├── hello.lua
│ │ │ │ ├── hello_config.lua
│ │ │ │ └── xavante-example.lua
│ │ │ ├── src/
│ │ │ │ ├── fastcgi/
│ │ │ │ │ ├── lfcgi.c
│ │ │ │ │ ├── lfcgi.def
│ │ │ │ │ └── lfcgi.h
│ │ │ │ ├── launcher/
│ │ │ │ │ ├── launcher.c
│ │ │ │ │ ├── make_rc.lua
│ │ │ │ │ ├── wsapi
│ │ │ │ │ ├── wsapi.c
│ │ │ │ │ ├── wsapi.cgi
│ │ │ │ │ └── wsapi.fcgi
│ │ │ │ ├── wsapi/
│ │ │ │ │ ├── cgi.lua
│ │ │ │ │ ├── common.lua
│ │ │ │ │ ├── fastcgi.lua
│ │ │ │ │ ├── mock.lua
│ │ │ │ │ ├── request.lua
│ │ │ │ │ ├── response.lua
│ │ │ │ │ ├── ringer.lua
│ │ │ │ │ ├── sapi.lua
│ │ │ │ │ ├── util.lua
│ │ │ │ │ └── xavante.lua
│ │ │ │ └── wsapi.lua
│ │ │ ├── tests/
│ │ │ │ ├── mock_test.lua
│ │ │ │ └── test_request.lua
│ │ │ ├── wsapi-install
│ │ │ └── wsapi-install-1.6
│ │ ├── wxLua/
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Makefile.wx-config
│ │ │ ├── apps/
│ │ │ │ ├── CMakeLists.txt
│ │ │ │ ├── wxlua/
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── editor.h
│ │ │ │ │ ├── wxlua.cpp
│ │ │ │ │ ├── wxlua.h
│ │ │ │ │ └── wxlua.rc
│ │ │ │ ├── wxluacan/
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── cancom.cpp
│ │ │ │ │ ├── cancom.h
│ │ │ │ │ ├── canlua.cpp
│ │ │ │ │ ├── canlua.h
│ │ │ │ │ ├── cansim.cpp
│ │ │ │ │ ├── cansim.h
│ │ │ │ │ ├── cansim.rc
│ │ │ │ │ ├── scripts/
│ │ │ │ │ │ └── incircles.lua
│ │ │ │ │ ├── wxluacan.i
│ │ │ │ │ ├── wxluacan_bind.cpp
│ │ │ │ │ ├── wxluacan_bind.h
│ │ │ │ │ └── wxluacan_rules.lua
│ │ │ │ ├── wxluaedit/
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── readme.txt
│ │ │ │ │ ├── wxledit.cpp
│ │ │ │ │ ├── wxledit.h
│ │ │ │ │ ├── wxluaedit.cpp
│ │ │ │ │ └── wxluaedit.rc
│ │ │ │ └── wxluafreeze/
│ │ │ │ ├── CMakeLists.txt
│ │ │ │ ├── Makefile
│ │ │ │ ├── readme.txt
│ │ │ │ ├── wxluafreeze.cpp
│ │ │ │ ├── wxluafreeze.lua
│ │ │ │ └── wxluafreeze.rc
│ │ │ ├── art/
│ │ │ │ ├── copy.xpm
│ │ │ │ ├── cursors/
│ │ │ │ │ ├── copy_cur.cur
│ │ │ │ │ ├── drag_cur.cur
│ │ │ │ │ ├── edit_cur.cur
│ │ │ │ │ └── move_cur.cur
│ │ │ │ ├── cut.xpm
│ │ │ │ ├── help.xpm
│ │ │ │ ├── new.xpm
│ │ │ │ ├── open.xpm
│ │ │ │ ├── paste.xpm
│ │ │ │ ├── play.xpm
│ │ │ │ ├── readme.txt
│ │ │ │ ├── save.xpm
│ │ │ │ ├── saveall.xpm
│ │ │ │ ├── stop.xpm
│ │ │ │ ├── wxlua.r
│ │ │ │ ├── wxlua.xpm
│ │ │ │ ├── wxlualogo.icns
│ │ │ │ └── wxlualogo.xpm
│ │ │ ├── bin/
│ │ │ │ ├── copydlls.bat
│ │ │ │ └── readme.txt
│ │ │ ├── bindings/
│ │ │ │ ├── CMakeLists.txt
│ │ │ │ ├── Makefile
│ │ │ │ ├── genidocs.lua
│ │ │ │ ├── genidocs_rules.lua
│ │ │ │ ├── genwxbind.bat
│ │ │ │ ├── genwxbind.lua
│ │ │ │ ├── parse_doxygen_xml.lua
│ │ │ │ ├── readme.txt
│ │ │ │ ├── wxlua/
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── override.hpp
│ │ │ │ │ ├── wxlua.i
│ │ │ │ │ └── wxlua_rules.lua
│ │ │ │ ├── wxlua_debugger/
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── override.hpp
│ │ │ │ │ ├── wxluadebugger.i
│ │ │ │ │ └── wxluadebugger_rules.lua
│ │ │ │ └── wxwidgets/
│ │ │ │ ├── wx_datatypes.lua
│ │ │ │ ├── wxadv_adv.i
│ │ │ │ ├── wxadv_grid.i
│ │ │ │ ├── wxadv_override.hpp
│ │ │ │ ├── wxadv_rules.lua
│ │ │ │ ├── wxaui_aui.i
│ │ │ │ ├── wxaui_rules.lua
│ │ │ │ ├── wxbase_base.i
│ │ │ │ ├── wxbase_config.i
│ │ │ │ ├── wxbase_data.i
│ │ │ │ ├── wxbase_datetime.i
│ │ │ │ ├── wxbase_file.i
│ │ │ │ ├── wxbase_override.hpp
│ │ │ │ ├── wxbase_rules.lua
│ │ │ │ ├── wxclassref.txt
│ │ │ │ ├── wxcore_appframe.i
│ │ │ │ ├── wxcore_clipdrag.i
│ │ │ │ ├── wxcore_controls.i
│ │ │ │ ├── wxcore_core.i
│ │ │ │ ├── wxcore_defsutils.i
│ │ │ │ ├── wxcore_dialogs.i
│ │ │ │ ├── wxcore_event.i
│ │ │ │ ├── wxcore_gdi.i
│ │ │ │ ├── wxcore_geometry.i
│ │ │ │ ├── wxcore_help.i
│ │ │ │ ├── wxcore_image.i
│ │ │ │ ├── wxcore_mdi.i
│ │ │ │ ├── wxcore_menutool.i
│ │ │ │ ├── wxcore_override.hpp
│ │ │ │ ├── wxcore_picker.i
│ │ │ │ ├── wxcore_print.i
│ │ │ │ ├── wxcore_rules.lua
│ │ │ │ ├── wxcore_sizer.i
│ │ │ │ ├── wxcore_windows.i
│ │ │ │ ├── wxdatatypes_rules.lua
│ │ │ │ ├── wxgl_gl.i
│ │ │ │ ├── wxgl_rules.lua
│ │ │ │ ├── wxhtml_html.i
│ │ │ │ ├── wxhtml_override.hpp
│ │ │ │ ├── wxhtml_rules.lua
│ │ │ │ ├── wxmedia_media.i
│ │ │ │ ├── wxmedia_rules.lua
│ │ │ │ ├── wxnet_net.i
│ │ │ │ ├── wxnet_override.hpp
│ │ │ │ ├── wxnet_rules.lua
│ │ │ │ ├── wxpropgrid_propgrid.i
│ │ │ │ ├── wxpropgrid_rules.lua
│ │ │ │ ├── wxrichtext_richtext.i
│ │ │ │ ├── wxrichtext_rules.lua
│ │ │ │ ├── wxstc_override.hpp
│ │ │ │ ├── wxstc_rules.lua
│ │ │ │ ├── wxstc_stc.i
│ │ │ │ ├── wxwebview_rules.lua
│ │ │ │ ├── wxwebview_webview.i
│ │ │ │ ├── wxxml_override.hpp
│ │ │ │ ├── wxxml_rules.lua
│ │ │ │ ├── wxxml_xml.i
│ │ │ │ ├── wxxrc_rules.lua
│ │ │ │ └── wxxrc_xrc.i
│ │ │ ├── distrib/
│ │ │ │ ├── announce.txt
│ │ │ │ ├── autopackage/
│ │ │ │ │ ├── default.apspec.in
│ │ │ │ │ ├── makeautopackage
│ │ │ │ │ ├── wxlua.desktop
│ │ │ │ │ └── wxlua.xml
│ │ │ │ ├── innosetup/
│ │ │ │ │ ├── Readme.txt
│ │ │ │ │ ├── modifypath.iss
│ │ │ │ │ └── wxlua.iss
│ │ │ │ └── macbundle/
│ │ │ │ ├── Info.plist.in
│ │ │ │ ├── copydylibs.command
│ │ │ │ ├── wxLua.icns
│ │ │ │ ├── wxLuaFile.icns
│ │ │ │ └── wxLuaFolder.icns
│ │ │ ├── docs/
│ │ │ │ ├── FAQ.html
│ │ │ │ ├── FAQ.txt
│ │ │ │ ├── Makefile
│ │ │ │ ├── binding.html
│ │ │ │ ├── binding.txt
│ │ │ │ ├── changelog.txt
│ │ │ │ ├── dirs.txt
│ │ │ │ ├── doxygen/
│ │ │ │ │ └── readme.txt
│ │ │ │ ├── doxygen.cfg
│ │ │ │ ├── install.html
│ │ │ │ ├── install.txt
│ │ │ │ ├── licence.txt
│ │ │ │ ├── readme.txt
│ │ │ │ ├── wxlua.css
│ │ │ │ ├── wxlua.html
│ │ │ │ ├── wxlua.txt
│ │ │ │ └── wxluaref.html
│ │ │ ├── lib/
│ │ │ │ └── readme.txt
│ │ │ ├── modules/
│ │ │ │ ├── CMakeLists.txt
│ │ │ │ ├── lua-5.1/
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── COPYRIGHT
│ │ │ │ │ ├── HISTORY
│ │ │ │ │ ├── INSTALL
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── README
│ │ │ │ │ ├── doc/
│ │ │ │ │ │ ├── contents.html
│ │ │ │ │ │ ├── lua.1
│ │ │ │ │ │ ├── lua.css
│ │ │ │ │ │ ├── lua.html
│ │ │ │ │ │ ├── luac.1
│ │ │ │ │ │ ├── luac.html
│ │ │ │ │ │ ├── manual.css
│ │ │ │ │ │ ├── manual.html
│ │ │ │ │ │ └── readme.html
│ │ │ │ │ ├── etc/
│ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ ├── README
│ │ │ │ │ │ ├── all.c
│ │ │ │ │ │ ├── bin2c.c
│ │ │ │ │ │ ├── lua.hpp
│ │ │ │ │ │ ├── lua.pc
│ │ │ │ │ │ ├── lua.xpm
│ │ │ │ │ │ ├── luavs.bat
│ │ │ │ │ │ ├── min.c
│ │ │ │ │ │ ├── noparser.c
│ │ │ │ │ │ └── strict.lua
│ │ │ │ │ ├── include/
│ │ │ │ │ │ ├── lauxlib.h
│ │ │ │ │ │ ├── lua.h
│ │ │ │ │ │ ├── luaconf.h
│ │ │ │ │ │ └── lualib.h
│ │ │ │ │ ├── src/
│ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ ├── lapi.c
│ │ │ │ │ │ ├── lapi.h
│ │ │ │ │ │ ├── lauxlib.c
│ │ │ │ │ │ ├── lauxlib.h
│ │ │ │ │ │ ├── lbaselib.c
│ │ │ │ │ │ ├── lcode.c
│ │ │ │ │ │ ├── lcode.h
│ │ │ │ │ │ ├── ldblib.c
│ │ │ │ │ │ ├── ldebug.c
│ │ │ │ │ │ ├── ldebug.h
│ │ │ │ │ │ ├── ldo.c
│ │ │ │ │ │ ├── ldo.h
│ │ │ │ │ │ ├── ldump.c
│ │ │ │ │ │ ├── lfunc.c
│ │ │ │ │ │ ├── lfunc.h
│ │ │ │ │ │ ├── lgc.c
│ │ │ │ │ │ ├── lgc.h
│ │ │ │ │ │ ├── linit.c
│ │ │ │ │ │ ├── liolib.c
│ │ │ │ │ │ ├── llex.c
│ │ │ │ │ │ ├── llex.h
│ │ │ │ │ │ ├── llimits.h
│ │ │ │ │ │ ├── lmathlib.c
│ │ │ │ │ │ ├── lmem.c
│ │ │ │ │ │ ├── lmem.h
│ │ │ │ │ │ ├── loadlib.c
│ │ │ │ │ │ ├── lobject.c
│ │ │ │ │ │ ├── lobject.h
│ │ │ │ │ │ ├── lopcodes.c
│ │ │ │ │ │ ├── lopcodes.h
│ │ │ │ │ │ ├── loslib.c
│ │ │ │ │ │ ├── lparser.c
│ │ │ │ │ │ ├── lparser.h
│ │ │ │ │ │ ├── lstate.c
│ │ │ │ │ │ ├── lstate.h
│ │ │ │ │ │ ├── lstring.c
│ │ │ │ │ │ ├── lstring.h
│ │ │ │ │ │ ├── lstrlib.c
│ │ │ │ │ │ ├── ltable.c
│ │ │ │ │ │ ├── ltable.h
│ │ │ │ │ │ ├── ltablib.c
│ │ │ │ │ │ ├── ltm.c
│ │ │ │ │ │ ├── ltm.h
│ │ │ │ │ │ ├── lua.c
│ │ │ │ │ │ ├── lua.h
│ │ │ │ │ │ ├── luac.c
│ │ │ │ │ │ ├── luaconf.h
│ │ │ │ │ │ ├── lualib.h
│ │ │ │ │ │ ├── lundump.c
│ │ │ │ │ │ ├── lundump.h
│ │ │ │ │ │ ├── lvm.c
│ │ │ │ │ │ ├── lvm.h
│ │ │ │ │ │ ├── lzio.c
│ │ │ │ │ │ ├── lzio.h
│ │ │ │ │ │ └── print.c
│ │ │ │ │ └── test/
│ │ │ │ │ ├── README
│ │ │ │ │ ├── bisect.lua
│ │ │ │ │ ├── cf.lua
│ │ │ │ │ ├── echo.lua
│ │ │ │ │ ├── env.lua
│ │ │ │ │ ├── factorial.lua
│ │ │ │ │ ├── fib.lua
│ │ │ │ │ ├── fibfor.lua
│ │ │ │ │ ├── globals.lua
│ │ │ │ │ ├── hello.lua
│ │ │ │ │ ├── life.lua
│ │ │ │ │ ├── luac.lua
│ │ │ │ │ ├── printf.lua
│ │ │ │ │ ├── readonly.lua
│ │ │ │ │ ├── sieve.lua
│ │ │ │ │ ├── sort.lua
│ │ │ │ │ ├── table.lua
│ │ │ │ │ ├── trace-calls.lua
│ │ │ │ │ ├── trace-globals.lua
│ │ │ │ │ └── xd.lua
│ │ │ │ ├── lua-5.2/
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── README
│ │ │ │ │ ├── doc/
│ │ │ │ │ │ ├── contents.html
│ │ │ │ │ │ ├── lua.1
│ │ │ │ │ │ ├── lua.css
│ │ │ │ │ │ ├── luac.1
│ │ │ │ │ │ ├── manual.css
│ │ │ │ │ │ ├── manual.html
│ │ │ │ │ │ └── readme.html
│ │ │ │ │ ├── lua.rc
│ │ │ │ │ └── src/
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── lapi.c
│ │ │ │ │ ├── lapi.h
│ │ │ │ │ ├── lauxlib.c
│ │ │ │ │ ├── lauxlib.h
│ │ │ │ │ ├── lbaselib.c
│ │ │ │ │ ├── lbitlib.c
│ │ │ │ │ ├── lcode.c
│ │ │ │ │ ├── lcode.h
│ │ │ │ │ ├── lcorolib.c
│ │ │ │ │ ├── lctype.c
│ │ │ │ │ ├── lctype.h
│ │ │ │ │ ├── ldblib.c
│ │ │ │ │ ├── ldebug.c
│ │ │ │ │ ├── ldebug.h
│ │ │ │ │ ├── ldo.c
│ │ │ │ │ ├── ldo.h
│ │ │ │ │ ├── ldump.c
│ │ │ │ │ ├── lfunc.c
│ │ │ │ │ ├── lfunc.h
│ │ │ │ │ ├── lgc.c
│ │ │ │ │ ├── lgc.h
│ │ │ │ │ ├── linit.c
│ │ │ │ │ ├── liolib.c
│ │ │ │ │ ├── llex.c
│ │ │ │ │ ├── llex.h
│ │ │ │ │ ├── llimits.h
│ │ │ │ │ ├── lmathlib.c
│ │ │ │ │ ├── lmem.c
│ │ │ │ │ ├── lmem.h
│ │ │ │ │ ├── loadlib.c
│ │ │ │ │ ├── lobject.c
│ │ │ │ │ ├── lobject.h
│ │ │ │ │ ├── lopcodes.c
│ │ │ │ │ ├── lopcodes.h
│ │ │ │ │ ├── loslib.c
│ │ │ │ │ ├── lparser.c
│ │ │ │ │ ├── lparser.h
│ │ │ │ │ ├── lstate.c
│ │ │ │ │ ├── lstate.h
│ │ │ │ │ ├── lstring.c
│ │ │ │ │ ├── lstring.h
│ │ │ │ │ ├── lstrlib.c
│ │ │ │ │ ├── ltable.c
│ │ │ │ │ ├── ltable.h
│ │ │ │ │ ├── ltablib.c
│ │ │ │ │ ├── ltm.c
│ │ │ │ │ ├── ltm.h
│ │ │ │ │ ├── lua.c
│ │ │ │ │ ├── lua.h
│ │ │ │ │ ├── lua.hpp
│ │ │ │ │ ├── luac.c
│ │ │ │ │ ├── luaconf.h
│ │ │ │ │ ├── lualib.h
│ │ │ │ │ ├── lundump.c
│ │ │ │ │ ├── lundump.h
│ │ │ │ │ ├── lvm.c
│ │ │ │ │ ├── lvm.h
│ │ │ │ │ ├── lzio.c
│ │ │ │ │ └── lzio.h
│ │ │ │ ├── luamodule/
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── luamodule.cpp
│ │ │ │ │ ├── luamodule.rc
│ │ │ │ │ └── luamoduledefs.h
│ │ │ │ ├── luaproxydll/
│ │ │ │ │ ├── proxydll.c
│ │ │ │ │ ├── proxydll.lib
│ │ │ │ │ ├── proxydll_exports_lua51.h
│ │ │ │ │ └── proxydll_exports_lua52.h
│ │ │ │ ├── wxbind/
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── include/
│ │ │ │ │ │ ├── wxadv_bind.h
│ │ │ │ │ │ ├── wxadv_wxladv.h
│ │ │ │ │ │ ├── wxaui_bind.h
│ │ │ │ │ │ ├── wxbase_bind.h
│ │ │ │ │ │ ├── wxbinddefs.h
│ │ │ │ │ │ ├── wxcore_bind.h
│ │ │ │ │ │ ├── wxcore_wxlcore.h
│ │ │ │ │ │ ├── wxgl_bind.h
│ │ │ │ │ │ ├── wxhtml_bind.h
│ │ │ │ │ │ ├── wxhtml_wxlhtml.h
│ │ │ │ │ │ ├── wxmedia_bind.h
│ │ │ │ │ │ ├── wxnet_bind.h
│ │ │ │ │ │ ├── wxpropgrid_bind.h
│ │ │ │ │ │ ├── wxrichtext_bind.h
│ │ │ │ │ │ ├── wxstc_bind.h
│ │ │ │ │ │ ├── wxwebview_bind.h
│ │ │ │ │ │ ├── wxxml_bind.h
│ │ │ │ │ │ └── wxxrc_bind.h
│ │ │ │ │ ├── setup/
│ │ │ │ │ │ └── wxluasetup.h
│ │ │ │ │ └── src/
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── Makefile_wxadv
│ │ │ │ │ ├── Makefile_wxaui
│ │ │ │ │ ├── Makefile_wxbase
│ │ │ │ │ ├── Makefile_wxcore
│ │ │ │ │ ├── Makefile_wxgl
│ │ │ │ │ ├── Makefile_wxhtml
│ │ │ │ │ ├── Makefile_wxmedia
│ │ │ │ │ ├── Makefile_wxnet
│ │ │ │ │ ├── Makefile_wxrichtext
│ │ │ │ │ ├── Makefile_wxstc
│ │ │ │ │ ├── Makefile_wxxml
│ │ │ │ │ ├── Makefile_wxxrc
│ │ │ │ │ ├── dummy.cpp
│ │ │ │ │ ├── wxadv_bind.cpp
│ │ │ │ │ ├── wxadv_wxladv.cpp
│ │ │ │ │ ├── wxaui_bind.cpp
│ │ │ │ │ ├── wxbase_base.cpp
│ │ │ │ │ ├── wxbase_bind.cpp
│ │ │ │ │ ├── wxbase_config.cpp
│ │ │ │ │ ├── wxbase_data.cpp
│ │ │ │ │ ├── wxbase_datetime.cpp
│ │ │ │ │ ├── wxbase_file.cpp
│ │ │ │ │ ├── wxcore_appframe.cpp
│ │ │ │ │ ├── wxcore_bind.cpp
│ │ │ │ │ ├── wxcore_clipdrag.cpp
│ │ │ │ │ ├── wxcore_controls.cpp
│ │ │ │ │ ├── wxcore_core.cpp
│ │ │ │ │ ├── wxcore_defsutils.cpp
│ │ │ │ │ ├── wxcore_dialogs.cpp
│ │ │ │ │ ├── wxcore_event.cpp
│ │ │ │ │ ├── wxcore_gdi.cpp
│ │ │ │ │ ├── wxcore_geometry.cpp
│ │ │ │ │ ├── wxcore_help.cpp
│ │ │ │ │ ├── wxcore_image.cpp
│ │ │ │ │ ├── wxcore_mdi.cpp
│ │ │ │ │ ├── wxcore_menutool.cpp
│ │ │ │ │ ├── wxcore_picker.cpp
│ │ │ │ │ ├── wxcore_print.cpp
│ │ │ │ │ ├── wxcore_sizer.cpp
│ │ │ │ │ ├── wxcore_windows.cpp
│ │ │ │ │ ├── wxcore_wxlcore.cpp
│ │ │ │ │ ├── wxgl_bind.cpp
│ │ │ │ │ ├── wxhtml_bind.cpp
│ │ │ │ │ ├── wxhtml_wxlhtml.cpp
│ │ │ │ │ ├── wxmedia_bind.cpp
│ │ │ │ │ ├── wxnet_bind.cpp
│ │ │ │ │ ├── wxpropgrid_bind.cpp
│ │ │ │ │ ├── wxrichtext_bind.cpp
│ │ │ │ │ ├── wxstc_bind.cpp
│ │ │ │ │ ├── wxwebview_bind.cpp
│ │ │ │ │ ├── wxxml_bind.cpp
│ │ │ │ │ └── wxxrc_bind.cpp
│ │ │ │ ├── wxlua/
│ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── atomic.h
│ │ │ │ │ ├── debug/
│ │ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ ├── dummy.cpp
│ │ │ │ │ │ ├── wxldebug.cpp
│ │ │ │ │ │ ├── wxldebug.h
│ │ │ │ │ │ ├── wxlstack.cpp
│ │ │ │ │ │ ├── wxlstack.h
│ │ │ │ │ │ └── wxluadebugdefs.h
│ │ │ │ │ ├── debugger/
│ │ │ │ │ │ ├── CMakeLists.txt
│ │ │ │ │ │ ├── Makefile
│ │ │ │ │ │ ├── dummy.cpp
│ │ │ │ │ │ ├── wxldserv.cpp
│ │ │ │ │ │ ├── wxldserv.h
│ │ │ │ │ │ ├── wxldtarg.cpp
│ │ │ │ │ │ ├── wxldtarg.h
│ │ │ │ │ │ ├── wxlsock.cpp
│ │ │ │ │ │ ├── wxlsock.h
│ │ │ │ │ │ ├── wxluadebugger_bind.cpp
│ │ │ │ │ │ ├── wxluadebugger_bind.h
│ │ │ │ │ │ └── wxluadebuggerdefs.h
│ │ │ │ │ ├── dummy.cpp
│ │ │ │ │ ├── lbitlib.c
│ │ │ │ │ ├── sharedptr.h
│ │ │ │ │ ├── wxlbind.cpp
│ │ │ │ │ ├── wxlbind.h
│ │ │ │ │ ├── wxlcallb.cpp
│ │ │ │ │ ├── wxlcallb.h
│ │ │ │ │ ├── wxlconsole.cpp
│ │ │ │ │ ├── wxlconsole.h
│ │ │ │ │ ├── wxldefs.h
│ │ │ │ │ ├── wxllua.cpp
│ │ │ │ │ ├── wxllua.h
│ │ │ │ │ ├── wxlobject.cpp
│ │ │ │ │ ├── wxlobject.h
│ │ │ │ │ ├── wxlstate.cpp
│ │ │ │ │ ├── wxlstate.h
│ │ │ │ │ ├── wxlua.h
│ │ │ │ │ ├── wxlua_bind.cpp
│ │ │ │ │ ├── wxlua_bind.h
│ │ │ │ │ └── wxlversion.h
│ │ │ │ └── wxstedit/
│ │ │ │ ├── CMakeLists.txt
│ │ │ │ ├── Makefile.wx-config
│ │ │ │ ├── art/
│ │ │ │ │ ├── copy.xpm
│ │ │ │ │ ├── cross.xpm
│ │ │ │ │ ├── cut.xpm
│ │ │ │ │ ├── find.xpm
│ │ │ │ │ ├── finddown.xpm
│ │ │ │ │ ├── findnext.xpm
│ │ │ │ │ ├── findup.xpm
│ │ │ │ │ ├── new.xpm
│ │ │ │ │ ├── open.xpm
│ │ │ │ │ ├── paste.xpm
│ │ │ │ │ ├── pencil16.xpm
│ │ │ │ │ ├── pencil32.xpm
│ │ │ │ │ ├── print.xpm
│ │ │ │ │ ├── print_page_setup.xpm
│ │ │ │ │ ├── print_preview.xpm
│ │ │ │ │ ├── print_setup.xpm
│ │ │ │ │ ├── redo.xpm
│ │ │ │ │ ├── replace.xpm
│ │ │ │ │ ├── save.xpm
│ │ │ │ │ ├── saveall.xpm
│ │ │ │ │ ├── saveas.xpm
│ │ │ │ │ ├── undo.xpm
│ │ │ │ │ └── x_red.xpm
│ │ │ │ ├── docs/
│ │ │ │ │ ├── ChangeLog.txt
│ │ │ │ │ ├── doxygen/
│ │ │ │ │ │ └── dummy.txt
│ │ │ │ │ ├── doxygen.cfg
│ │ │ │ │ ├── readme.htm
│ │ │ │ │ ├── readme.txt
│ │ │ │ │ └── wxstedit.htm
│ │ │ │ ├── include/
│ │ │ │ │ └── wx/
│ │ │ │ │ └── stedit/
│ │ │ │ │ ├── pairarr.h
│ │ │ │ │ ├── setup0.h
│ │ │ │ │ ├── steart.h
│ │ │ │ │ ├── stedefs.h
│ │ │ │ │ ├── stedit.h
│ │ │ │ │ ├── stedlgs.h
│ │ │ │ │ ├── steevent.h
│ │ │ │ │ ├── steexprt.h
│ │ │ │ │ ├── stefindr.h
│ │ │ │ │ ├── steframe.h
│ │ │ │ │ ├── stelangs.h
│ │ │ │ │ ├── stemenum.h
│ │ │ │ │ ├── stenoteb.h
│ │ │ │ │ ├── steopts.h
│ │ │ │ │ ├── steprefs.h
│ │ │ │ │ ├── steprint.h
│ │ │ │ │ ├── steshell.h
│ │ │ │ │ ├── stesplit.h
│ │ │ │ │ ├── stestyls.h
│ │ │ │ │ └── stetree.h
│ │ │ │ ├── lib/
│ │ │ │ │ └── Readme.txt
│ │ │ │ ├── locale/
│ │ │ │ │ ├── de/
│ │ │ │ │ │ ├── wxstd.po
│ │ │ │ │ │ └── wxstedit.po
│ │ │ │ │ ├── intl.bat
│ │ │ │ │ ├── ja/
│ │ │ │ │ │ ├── wxstd.po
│ │ │ │ │ │ └── wxstedit.po
│ │ │ │ │ ├── ru/
│ │ │ │ │ │ ├── wxstd.po
│ │ │ │ │ │ └── wxstedit.po
│ │ │ │ │ ├── translate.url
│ │ │ │ │ └── wxstedit.pot
│ │ │ │ ├── samples/
│ │ │ │ │ ├── mdiedit/
│ │ │ │ │ │ ├── app.cpp
│ │ │ │ │ │ ├── app.h
│ │ │ │ │ │ ├── appdoc.cpp
│ │ │ │ │ │ ├── link.cpp
│ │ │ │ │ │ ├── mdiedit.rc
│ │ │ │ │ │ ├── precomp.cpp
│ │ │ │ │ │ ├── precomp.h
│ │ │ │ │ │ ├── readme.txt
│ │ │ │ │ │ ├── stedocview.cpp
│ │ │ │ │ │ ├── stedocview.h
│ │ │ │ │ │ └── wxtrunk.h
│ │ │ │ │ └── stedit/
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── link.cpp
│ │ │ │ │ ├── readme_htm.hpp
│ │ │ │ │ ├── stedoc.cpp
│ │ │ │ │ ├── stedoc.h
│ │ │ │ │ ├── wxstedit.cbp
│ │ │ │ │ ├── wxstedit.cpp
│ │ │ │ │ ├── wxstedit.h
│ │ │ │ │ ├── wxstedit.rc
│ │ │ │ │ └── wxstedit_htm.hpp
│ │ │ │ ├── src/
│ │ │ │ │ ├── Makefile
│ │ │ │ │ ├── precomp.cpp
│ │ │ │ │ ├── precomp.h
│ │ │ │ │ ├── steart.cpp
│ │ │ │ │ ├── stedit.cpp
│ │ │ │ │ ├── stedit.xrc
│ │ │ │ │ ├── stedlgs.cpp
│ │ │ │ │ ├── stedlgs.wdr
│ │ │ │ │ ├── stedlgs_wdr.cpp
│ │ │ │ │ ├── stedlgs_wdr.h
│ │ │ │ │ ├── steevent.cpp
│ │ │ │ │ ├── steexprt.cpp
│ │ │ │ │ ├── stefindr.cpp
│ │ │ │ │ ├── steframe.cpp
│ │ │ │ │ ├── stelangs.cpp
│ │ │ │ │ ├── stemenum.cpp
│ │ │ │ │ ├── stenoteb.cpp
│ │ │ │ │ ├── steopts.cpp
│ │ │ │ │ ├── steprefs.cpp
│ │ │ │ │ ├── steprint.cpp
│ │ │ │ │ ├── steshell.cpp
│ │ │ │ │ ├── stesplit.cpp
│ │ │ │ │ ├── stestyls.cpp
│ │ │ │ │ ├── stetree.cpp
│ │ │ │ │ ├── wxext.cpp
│ │ │ │ │ ├── wxext.h
│ │ │ │ │ └── wxtrunk.h
│ │ │ │ ├── tests/
│ │ │ │ │ ├── bad-utf8.xml
│ │ │ │ │ ├── dk-iso8859-1.txt
│ │ │ │ │ ├── dk-oem.txt
│ │ │ │ │ ├── dk-unicode-bom.reg
│ │ │ │ │ ├── dk-utf8-bom.cs
│ │ │ │ │ ├── dk-utf8.html
│ │ │ │ │ ├── empty.txt
│ │ │ │ │ ├── utf8-bom.xml
│ │ │ │ │ └── utf8.xml.vcproj
│ │ │ │ └── website/
│ │ │ │ └── index.html
│ │ │ ├── samples/
│ │ │ │ ├── art.wx.lua
│ │ │ │ ├── auidemo.wx.lua
│ │ │ │ ├── bindings.wx.lua
│ │ │ │ ├── calculator.wx.lua
│ │ │ │ ├── calculator.xrc
│ │ │ │ ├── catch.lua
│ │ │ │ ├── choices.wx.lua
│ │ │ │ ├── client.wx.lua
│ │ │ │ ├── controls.wx.lua
│ │ │ │ ├── coroutine.wx.lua
│ │ │ │ ├── dialog.wx.lua
│ │ │ │ ├── editor.wx.lua
│ │ │ │ ├── grid.wx.lua
│ │ │ │ ├── gridtable.wx.lua
│ │ │ │ ├── htmlwin.wx.lua
│ │ │ │ ├── image/
│ │ │ │ │ ├── horse.cur
│ │ │ │ │ ├── horse.pcx
│ │ │ │ │ ├── horse.pnm
│ │ │ │ │ ├── horse.tga
│ │ │ │ │ ├── horse.tif
│ │ │ │ │ ├── horse.xpm
│ │ │ │ │ ├── horse3.ani
│ │ │ │ │ ├── horse_ag.pnm
│ │ │ │ │ ├── horse_rg.pnm
│ │ │ │ │ ├── image.wx.lua
│ │ │ │ │ ├── smile.xbm
│ │ │ │ │ └── smile.xpm
│ │ │ │ ├── luamodule.wx.lua
│ │ │ │ ├── mdi.wx.lua
│ │ │ │ ├── media.wx.lua
│ │ │ │ ├── minimal.wx.lua
│ │ │ │ ├── picker.wx.lua
│ │ │ │ ├── printing.wx.lua
│ │ │ │ ├── scribble.wx.lua
│ │ │ │ ├── server.wx.lua
│ │ │ │ ├── settings.wx.lua
│ │ │ │ ├── sizer.wx.lua
│ │ │ │ ├── tree.wx.lua
│ │ │ │ ├── unittest.wx.lua
│ │ │ │ ├── validator.wx.lua
│ │ │ │ ├── veryminimal.wx.lua
│ │ │ │ ├── wrapmodule.wx.lua
│ │ │ │ └── wxluasudoku.wx.lua
│ │ │ └── util/
│ │ │ └── bin2c/
│ │ │ └── bin2c.lua
│ │ ├── xavante/
│ │ │ ├── Makefile
│ │ │ ├── Makefile.win
│ │ │ ├── README
│ │ │ ├── config
│ │ │ ├── config.win
│ │ │ ├── doc/
│ │ │ │ └── us/
│ │ │ │ ├── doc.css
│ │ │ │ ├── experimental.html
│ │ │ │ ├── index.html
│ │ │ │ ├── license.html
│ │ │ │ ├── manual.html
│ │ │ │ └── sajax.html
│ │ │ ├── examples/
│ │ │ │ ├── config.lua
│ │ │ │ └── webdav/
│ │ │ │ └── webdav-server.lua
│ │ │ ├── rockspec/
│ │ │ │ ├── xavante-2.0.0-1.rockspec
│ │ │ │ ├── xavante-2.0.1-1.rockspec
│ │ │ │ ├── xavante-2.0rc1-1.rockspec
│ │ │ │ ├── xavante-2.1.0-1.rockspec
│ │ │ │ ├── xavante-2.2.0-1.rockspec
│ │ │ │ ├── xavante-2.2.1-1.rockspec
│ │ │ │ ├── xavante-2.3.0-1.rockspec
│ │ │ │ ├── xavante-cvs-1.rockspec
│ │ │ │ └── xavante-cvs-2.rockspec
│ │ │ ├── src/
│ │ │ │ ├── codeweb/
│ │ │ │ │ ├── codeWeb.lua
│ │ │ │ │ ├── cookies.lua
│ │ │ │ │ ├── coroWeb.lua
│ │ │ │ │ ├── session.lua
│ │ │ │ │ └── timer.lua
│ │ │ │ ├── sajax/
│ │ │ │ │ └── sajax.lua
│ │ │ │ ├── webdav/
│ │ │ │ │ ├── davFileProps.lua
│ │ │ │ │ ├── davFileRepository.lua
│ │ │ │ │ └── davhandler.lua
│ │ │ │ └── xavante/
│ │ │ │ ├── cgiluahandler.lua
│ │ │ │ ├── encoding.lua
│ │ │ │ ├── filehandler.lua
│ │ │ │ ├── httpd.lua
│ │ │ │ ├── indexhandler.lua
│ │ │ │ ├── mime.lua
│ │ │ │ ├── patternhandler.lua
│ │ │ │ ├── redirecthandler.lua
│ │ │ │ ├── ruleshandler.lua
│ │ │ │ ├── urlhandler.lua
│ │ │ │ ├── vhostshandler.lua
│ │ │ │ └── xavante.lua
│ │ │ └── web/
│ │ │ ├── calculator.lp
│ │ │ └── loop.lp
│ │ ├── xls/
│ │ │ ├── ExcelFormat/
│ │ │ │ ├── BasicExcel.cpp
│ │ │ │ ├── BasicExcel.hpp
│ │ │ │ ├── Examples.cpp
│ │ │ │ ├── ExcelFormat.cpp
│ │ │ │ ├── ExcelFormat.dsp
│ │ │ │ ├── ExcelFormat.dsw
│ │ │ │ ├── ExcelFormat.h
│ │ │ │ ├── ExcelFormat.sln
│ │ │ │ ├── ExcelFormat.vcproj
│ │ │ │ ├── ExcelFormat.vcxproj
│ │ │ │ ├── ExcelFormat.vcxproj.filters
│ │ │ │ ├── ExcelFormat.xcodeproj/
│ │ │ │ │ └── project.pbxproj
│ │ │ │ ├── Makefile
│ │ │ │ └── docu/
│ │ │ │ └── codeproject_ExcelFormat.html
│ │ │ ├── doc/
│ │ │ │ └── us/
│ │ │ │ ├── doc.bat
│ │ │ │ ├── doc.css
│ │ │ │ ├── index.html
│ │ │ │ ├── index.md
│ │ │ │ ├── license.html
│ │ │ │ ├── license.md
│ │ │ │ └── makedoc.lua
│ │ │ ├── lxls.cpp
│ │ │ ├── readme.md
│ │ │ ├── tests/
│ │ │ │ ├── examples.lua
│ │ │ │ └── printxls.lua
│ │ │ └── xls.jam
│ │ ├── xlsx/
│ │ │ ├── doc/
│ │ │ │ └── us/
│ │ │ │ ├── doc.bat
│ │ │ │ ├── doc.css
│ │ │ │ ├── index.html
│ │ │ │ ├── index.md
│ │ │ │ ├── license.html
│ │ │ │ ├── license.md
│ │ │ │ └── makedoc.lua
│ │ │ ├── readme.md
│ │ │ ├── tests/
│ │ │ │ └── printxlsx.lua
│ │ │ ├── xlsx.jam
│ │ │ └── xlsx.lua
│ │ ├── xmlize/
│ │ │ ├── xmlize.jam
│ │ │ └── xmlize.lua
│ │ ├── ziparchive/
│ │ │ ├── License.txt
│ │ │ ├── Misc/
│ │ │ │ ├── AnsiString.cpp
│ │ │ │ ├── AnsiString.h
│ │ │ │ ├── Array.h
│ │ │ │ ├── ArrayOwnedPtr.h
│ │ │ │ ├── DiskFile.cpp
│ │ │ │ ├── DiskFile.h
│ │ │ │ ├── File.h
│ │ │ │ ├── FixedSizeAllocator.h
│ │ │ │ ├── HeapAllocator.h
│ │ │ │ ├── HeapString.cpp
│ │ │ │ ├── HeapString.h
│ │ │ │ ├── List.h
│ │ │ │ ├── ListOwnedPtr.h
│ │ │ │ ├── Map.h
│ │ │ │ ├── MemFile.cpp
│ │ │ │ ├── MemFile.h
│ │ │ │ ├── Misc.cpp
│ │ │ │ ├── Misc.h
│ │ │ │ ├── Misc.jam
│ │ │ │ ├── Misc_InternalPch.cpp
│ │ │ │ ├── Misc_InternalPch.h
│ │ │ │ ├── OwnedPtr.h
│ │ │ │ ├── TypeTraits.h
│ │ │ │ ├── ZipArchive.cpp
│ │ │ │ ├── ZipArchive.h
│ │ │ │ ├── ZipArchiveManager.cpp
│ │ │ │ ├── ZipArchiveManager.h
│ │ │ │ ├── ZipEntryFile.cpp
│ │ │ │ ├── ZipEntryFile.h
│ │ │ │ ├── aes/
│ │ │ │ │ ├── aes.h
│ │ │ │ │ ├── aes_modes.c
│ │ │ │ │ ├── aes_via_ace.h
│ │ │ │ │ ├── aescrypt.c
│ │ │ │ │ ├── aeskey.c
│ │ │ │ │ ├── aesopt.h
│ │ │ │ │ ├── aestab.c
│ │ │ │ │ ├── aestab.h
│ │ │ │ │ ├── aesxam.c
│ │ │ │ │ ├── brg_endian.h
│ │ │ │ │ ├── brg_types.h
│ │ │ │ │ ├── fileenc.c
│ │ │ │ │ ├── fileenc.h
│ │ │ │ │ ├── hmac.c
│ │ │ │ │ ├── hmac.h
│ │ │ │ │ ├── prng.c
│ │ │ │ │ ├── prng.h
│ │ │ │ │ ├── pwd2key.c
│ │ │ │ │ ├── pwd2key.h
│ │ │ │ │ ├── sha1.c
│ │ │ │ │ ├── sha1.h
│ │ │ │ │ ├── sha2.c
│ │ │ │ │ └── sha2.h
│ │ │ │ ├── liblzma/
│ │ │ │ │ ├── common/
│ │ │ │ │ │ ├── common_w32res.rc
│ │ │ │ │ │ ├── config.h
│ │ │ │ │ │ ├── mythread.h
│ │ │ │ │ │ ├── sysdefs.h
│ │ │ │ │ │ ├── tuklib_common.h
│ │ │ │ │ │ ├── tuklib_config.h
│ │ │ │ │ │ ├── tuklib_cpucores.c
│ │ │ │ │ │ ├── tuklib_cpucores.h
│ │ │ │ │ │ ├── tuklib_exit.c
│ │ │ │ │ │ ├── tuklib_exit.h
│ │ │ │ │ │ ├── tuklib_gettext.h
│ │ │ │ │ │ ├── tuklib_integer.h
│ │ │ │ │ │ ├── tuklib_mbstr.h
│ │ │ │ │ │ ├── tuklib_mbstr_fw.c
│ │ │ │ │ │ ├── tuklib_mbstr_width.c
│ │ │ │ │ │ ├── tuklib_open_stdxxx.c
│ │ │ │ │ │ ├── tuklib_open_stdxxx.h
│ │ │ │ │ │ ├── tuklib_physmem.c
│ │ │ │ │ │ ├── tuklib_physmem.h
│ │ │ │ │ │ ├── tuklib_progname.c
│ │ │ │ │ │ └── tuklib_progname.h
│ │ │ │ │ ├── liblzma/
│ │ │ │ │ │ ├── Makefile.am
│ │ │ │ │ │ ├── api/
│ │ │ │ │ │ │ ├── Makefile.am
│ │ │ │ │ │ │ ├── lzma/
│ │ │ │ │ │ │ │ ├── base.h
│ │ │ │ │ │ │ │ ├── bcj.h
│ │ │ │ │ │ │ │ ├── block.h
│ │ │ │ │ │ │ │ ├── check.h
│ │ │ │ │ │ │ │ ├── container.h
│ │ │ │ │ │ │ │ ├── delta.h
│ │ │ │ │ │ │ │ ├── filter.h
│ │ │ │ │ │ │ │ ├── hardware.h
│ │ │ │ │ │ │ │ ├── index.h
│ │ │ │ │ │ │ │ ├── index_hash.h
│ │ │ │ │ │ │ │ ├── lzma12.h
│ │ │ │ │ │ │ │ ├── stream_flags.h
│ │ │ │ │ │ │ │ ├── version.h
│ │ │ │ │ │ │ │ └── vli.h
│ │ │ │ │ │ │ └── lzma.h
│ │ │ │ │ │ ├── check/
│ │ │ │ │ │ │ ├── Makefile.inc
│ │ │ │ │ │ │ ├── check.c
│ │ │ │ │ │ │ ├── check.h
│ │ │ │ │ │ │ ├── crc32_fast.c
│ │ │ │ │ │ │ ├── crc32_small.c
│ │ │ │ │ │ │ ├── crc32_table.c
│ │ │ │ │ │ │ ├── crc32_table_be.h
│ │ │ │ │ │ │ ├── crc32_table_le.h
│ │ │ │ │ │ │ ├── crc32_tablegen.c
│ │ │ │ │ │ │ ├── crc32_x86.S
│ │ │ │ │ │ │ ├── crc64_fast.c
│ │ │ │ │ │ │ ├── crc64_small.c
│ │ │ │ │ │ │ ├── crc64_table.c
│ │ │ │ │ │ │ ├── crc64_table_be.h
│ │ │ │ │ │ │ ├── crc64_table_le.h
│ │ │ │ │ │ │ ├── crc64_tablegen.c
│ │ │ │ │ │ │ ├── crc64_x86.S
│ │ │ │ │ │ │ ├── crc_macros.h
│ │ │ │ │ │ │ └── sha256.c
│ │ │ │ │ │ ├── common/
│ │ │ │ │ │ │ ├── Makefile.inc
│ │ │ │ │ │ │ ├── alone_decoder.c
│ │ │ │ │ │ │ ├── alone_decoder.h
│ │ │ │ │ │ │ ├── alone_encoder.c
│ │ │ │ │ │ │ ├── alone_zip_decoder.c
│ │ │ │ │ │ │ ├── alone_zip_decoder.h
│ │ │ │ │ │ │ ├── alone_zip_encoder.c
│ │ │ │ │ │ │ ├── auto_decoder.c
│ │ │ │ │ │ │ ├── block_buffer_decoder.c
│ │ │ │ │ │ │ ├── block_buffer_encoder.c
│ │ │ │ │ │ │ ├── block_buffer_encoder.h
│ │ │ │ │ │ │ ├── block_decoder.c
│ │ │ │ │ │ │ ├── block_decoder.h
│ │ │ │ │ │ │ ├── block_encoder.c
│ │ │ │ │ │ │ ├── block_encoder.h
│ │ │ │ │ │ │ ├── block_header_decoder.c
│ │ │ │ │ │ │ ├── block_header_encoder.c
│ │ │ │ │ │ │ ├── block_util.c
│ │ │ │ │ │ │ ├── common.c
│ │ │ │ │ │ │ ├── common.h
│ │ │ │ │ │ │ ├── easy_buffer_encoder.c
│ │ │ │ │ │ │ ├── easy_decoder_memusage.c
│ │ │ │ │ │ │ ├── easy_encoder.c
│ │ │ │ │ │ │ ├── easy_encoder_memusage.c
│ │ │ │ │ │ │ ├── easy_preset.c
│ │ │ │ │ │ │ ├── easy_preset.h
│ │ │ │ │ │ │ ├── filter_buffer_decoder.c
│ │ │ │ │ │ │ ├── filter_buffer_encoder.c
│ │ │ │ │ │ │ ├── filter_common.c
│ │ │ │ │ │ │ ├── filter_common.h
│ │ │ │ │ │ │ ├── filter_decoder.c
│ │ │ │ │ │ │ ├── filter_decoder.h
│ │ │ │ │ │ │ ├── filter_encoder.c
│ │ │ │ │ │ │ ├── filter_encoder.h
│ │ │ │ │ │ │ ├── filter_flags_decoder.c
│ │ │ │ │ │ │ ├── filter_flags_encoder.c
│ │ │ │ │ │ │ ├── hardware_cputhreads.c
│ │ │ │ │ │ │ ├── hardware_physmem.c
│ │ │ │ │ │ │ ├── index.c
│ │ │ │ │ │ │ ├── index.h
│ │ │ │ │ │ │ ├── index_decoder.c
│ │ │ │ │ │ │ ├── index_encoder.c
│ │ │ │ │ │ │ ├── index_encoder.h
│ │ │ │ │ │ │ ├── index_hash.c
│ │ │ │ │ │ │ ├── outqueue.c
│ │ │ │ │ │ │ ├── outqueue.h
│ │ │ │ │ │ │ ├── stream_buffer_decoder.c
│ │ │ │ │ │ │ ├── stream_buffer_encoder.c
│ │ │ │ │ │ │ ├── stream_decoder.c
│ │ │ │ │ │ │ ├── stream_decoder.h
│ │ │ │ │ │ │ ├── stream_encoder.c
│ │ │ │ │ │ │ ├── stream_encoder_mt.c
│ │ │ │ │ │ │ ├── stream_flags_common.c
│ │ │ │ │ │ │ ├── stream_flags_common.h
│ │ │ │ │ │ │ ├── stream_flags_decoder.c
│ │ │ │ │ │ │ ├── stream_flags_encoder.c
│ │ │ │ │ │ │ ├── vli_decoder.c
│ │ │ │ │ │ │ ├── vli_encoder.c
│ │ │ │ │ │ │ └── vli_size.c
│ │ │ │ │ │ ├── delta/
│ │ │ │ │ │ │ ├── Makefile.inc
│ │ │ │ │ │ │ ├── delta_common.c
│ │ │ │ │ │ │ ├── delta_common.h
│ │ │ │ │ │ │ ├── delta_decoder.c
│ │ │ │ │ │ │ ├── delta_decoder.h
│ │ │ │ │ │ │ ├── delta_encoder.c
│ │ │ │ │ │ │ ├── delta_encoder.h
│ │ │ │ │ │ │ └── delta_private.h
│ │ │ │ │ │ ├── liblzma.pc.in
│ │ │ │ │ │ ├── liblzma_w32res.rc
│ │ │ │ │ │ ├── lz/
│ │ │ │ │ │ │ ├── Makefile.inc
│ │ │ │ │ │ │ ├── lz_decoder.c
│ │ │ │ │ │ │ ├── lz_decoder.h
│ │ │ │ │ │ │ ├── lz_encoder.c
│ │ │ │ │ │ │ ├── lz_encoder.h
│ │ │ │ │ │ │ ├── lz_encoder_hash.h
│ │ │ │ │ │ │ ├── lz_encoder_hash_table.h
│ │ │ │ │ │ │ └── lz_encoder_mf.c
│ │ │ │ │ │ ├── lzma/
│ │ │ │ │ │ │ ├── Makefile.inc
│ │ │ │ │ │ │ ├── fastpos.h
│ │ │ │ │ │ │ ├── fastpos_table.c
│ │ │ │ │ │ │ ├── fastpos_tablegen.c
│ │ │ │ │ │ │ ├── lzma2_decoder.c
│ │ │ │ │ │ │ ├── lzma2_decoder.h
│ │ │ │ │ │ │ ├── lzma2_encoder.c
│ │ │ │ │ │ │ ├── lzma2_encoder.h
│ │ │ │ │ │ │ ├── lzma_common.h
│ │ │ │ │ │ │ ├── lzma_decoder.c
│ │ │ │ │ │ │ ├── lzma_decoder.h
│ │ │ │ │ │ │ ├── lzma_encoder.c
│ │ │ │ │ │ │ ├── lzma_encoder.h
│ │ │ │ │ │ │ ├── lzma_encoder_optimum_fast.c
│ │ │ │ │ │ │ ├── lzma_encoder_optimum_normal.c
│ │ │ │ │ │ │ ├── lzma_encoder_presets.c
│ │ │ │ │ │ │ └── lzma_encoder_private.h
│ │ │ │ │ │ ├── rangecoder/
│ │ │ │ │ │ │ ├── Makefile.inc
│ │ │ │ │ │ │ ├── price.h
│ │ │ │ │ │ │ ├── price_table.c
│ │ │ │ │ │ │ ├── price_tablegen.c
│ │ │ │ │ │ │ ├── range_common.h
│ │ │ │ │ │ │ ├── range_decoder.h
│ │ │ │ │ │ │ └── range_encoder.h
│ │ │ │ │ │ ├── simple/
│ │ │ │ │ │ │ ├── Makefile.inc
│ │ │ │ │ │ │ ├── arm.c
│ │ │ │ │ │ │ ├── armthumb.c
│ │ │ │ │ │ │ ├── ia64.c
│ │ │ │ │ │ │ ├── powerpc.c
│ │ │ │ │ │ │ ├── simple_coder.c
│ │ │ │ │ │ │ ├── simple_coder.h
│ │ │ │ │ │ │ ├── simple_decoder.c
│ │ │ │ │ │ │ ├── simple_decoder.h
│ │ │ │ │ │ │ ├── simple_encoder.c
│ │ │ │ │ │ │ ├── simple_encoder.h
│ │ │ │ │ │ │ ├── simple_private.h
│ │ │ │ │ │ │ ├── sparc.c
│ │ │ │ │ │ │ └── x86.c
│ │ │ │ │ │ └── validate_map.sh
│ │ │ │ │ └── windows/
│ │ │ │ │ ├── INSTALL-Windows.txt
│ │ │ │ │ ├── README-Windows.txt
│ │ │ │ │ ├── build.bash
│ │ │ │ │ └── config.h
│ │ │ │ ├── lzma/
│ │ │ │ │ ├── 7zVersion.h
│ │ │ │ │ ├── LzFind.c
│ │ │ │ │ ├── LzFind.h
│ │ │ │ │ ├── LzFindMt.c
│ │ │ │ │ ├── LzFindMt.h
│ │ │ │ │ ├── LzHash.h
│ │ │ │ │ ├── Lzma2Dec.c
│ │ │ │ │ ├── Lzma2Dec.h
│ │ │ │ │ ├── Lzma2Enc.c
│ │ │ │ │ ├── Lzma2Enc.h
│ │ │ │ │ ├── LzmaDec.c
│ │ │ │ │ ├── LzmaDec.h
│ │ │ │ │ ├── LzmaEnc.c
│ │ │ │ │ ├── LzmaEnc.h
│ │ │ │ │ ├── MtCoder.c
│ │ │ │ │ ├── MtCoder.h
│ │ │ │ │ ├── Threads.c
│ │ │ │ │ ├── Threads.h
│ │ │ │ │ └── Types.h
│ │ │ │ ├── md5/
│ │ │ │ │ ├── md5.h
│ │ │ │ │ ├── md5c.c
│ │ │ │ │ └── md5global.h
│ │ │ │ ├── stdint.vc.h
│ │ │ │ └── trio/
│ │ │ │ ├── trio.c
│ │ │ │ ├── trio.h
│ │ │ │ ├── triodef.h
│ │ │ │ ├── trionan.c
│ │ │ │ ├── trionan.h
│ │ │ │ ├── triop.h
│ │ │ │ ├── triostr.c
│ │ │ │ └── triostr.h
│ │ │ ├── doc/
│ │ │ │ └── us/
│ │ │ │ ├── doc.bat
│ │ │ │ ├── doc.css
│ │ │ │ ├── index.html
│ │ │ │ ├── index.md
│ │ │ │ ├── license.html
│ │ │ │ ├── license.md
│ │ │ │ └── makedoc.lua
│ │ │ ├── lziparchive.cpp
│ │ │ ├── readme.md
│ │ │ ├── tests/
│ │ │ │ └── ziparchivetests.lua
│ │ │ └── ziparchive.jam
│ │ └── zlib/
│ │ ├── adler32.c
│ │ ├── compress.c
│ │ ├── crc32.c
│ │ ├── crc32.h
│ │ ├── deflate.c
│ │ ├── deflate.h
│ │ ├── gzguts.h
│ │ ├── infback.c
│ │ ├── inffast.c
│ │ ├── inffast.h
│ │ ├── inffixed.h
│ │ ├── inflate.c
│ │ ├── inflate.h
│ │ ├── inftrees.c
│ │ ├── inftrees.h
│ │ ├── trees.c
│ │ ├── trees.h
│ │ ├── uncompr.c
│ │ ├── zconf.h
│ │ ├── zlib.h
│ │ ├── zutil.c
│ │ └── zutil.h
│ ├── modules.jambuild/
│ │ ├── alien.jam
│ │ ├── bitop.jam
│ │ ├── cgilua.jam
│ │ ├── copas.jam
│ │ ├── cosmo.jam
│ │ ├── coxpcall.jam
│ │ ├── date.jam
│ │ ├── dotnetinterface.jam
│ │ ├── expand.jam
│ │ ├── getmodules.bat
│ │ ├── getpcre.bat
│ │ ├── getpcre.sh
│ │ ├── lanes.jam
│ │ ├── lbuffer.jam
│ │ ├── loop.jam
│ │ ├── lpeg.jam
│ │ ├── lqt.jam
│ │ ├── lrexlib.gitignore
│ │ ├── lrexlib.jam
│ │ ├── lsqlite3.jam
│ │ ├── lua-apr!download.jam
│ │ ├── lua-apr.jam
│ │ ├── lua-cjson.jam
│ │ ├── lua-curl!download.jam
│ │ ├── lua-curl.jam
│ │ ├── lua-discount.jam
│ │ ├── lua-memoryfile.jam
│ │ ├── lua-openssl.jam
│ │ ├── lua-pb.jam
│ │ ├── lua-rapidjson.jam
│ │ ├── lua-websockets.jam
│ │ ├── lua-xmlrpc.jam
│ │ ├── luacom.jam
│ │ ├── luadbi.jam
│ │ ├── luaevent.jam
│ │ ├── luaexpat.jam
│ │ ├── luaffi.jam
│ │ ├── luafilesystem.jam
│ │ ├── luajson.jam
│ │ ├── lualdap.jam
│ │ ├── lualogging.jam
│ │ ├── luamacro.jam
│ │ ├── luasec.jam
│ │ ├── luasoap.jam
│ │ ├── luasql.jam
│ │ ├── luatraverse.jam
│ │ ├── lzlib.jam
│ │ ├── markdown.jam
│ │ ├── md5.jam
│ │ ├── mixlua.jam
│ │ ├── orbit.jam
│ │ ├── pack.jam
│ │ ├── penlight.jam
│ │ ├── pluto.jam
│ │ ├── python.jam
│ │ ├── random.jam
│ │ ├── rings.jam
│ │ ├── slnunicode.jam
│ │ ├── socket.jam
│ │ ├── sqlite3.jam
│ │ ├── stacktraceplus.jam
│ │ ├── stdlib.jam
│ │ ├── struct.jam
│ │ ├── uuid.jam
│ │ ├── verse-strophe.jam
│ │ ├── wsapi.jam
│ │ ├── wxLua.jam
│ │ └── xavante.jam
│ └── tilde/
│ ├── HostConfig.cpp
│ ├── HostConfig.h
│ ├── LuaDebugger.cpp
│ ├── LuaDebugger.h
│ ├── LuaDebuggerComms.cpp
│ ├── LuaDebuggerComms.h
│ ├── LuaDebuggerHost.h
│ ├── LuaDebuggerProtocol.h
│ ├── LuaHostWindows.cpp
│ ├── LuaHostWindows.h
│ ├── LuaTilde.cpp
│ ├── LuaTilde.h
│ ├── ReceiveMessageBuffer.h
│ └── SendMessageBuffer.h
├── Test/
│ ├── Access.lua
│ ├── AppActivate.lua
│ ├── Calendar.lua
│ ├── ContinueTest.lua
│ ├── EnumNetworkDrives.lua
│ ├── Excel.lua
│ ├── PhotoshopHelloWorld.lua
│ ├── PhotoshopLayers.lua
│ ├── PhotoshopOpen.lua
│ ├── PhotoshopPDFOpen.lua
│ ├── RemoveDebugReleaseDirs.lua
│ ├── ShellTest.lua
│ ├── TestDotNet.lua
│ ├── adolua.lua
│ ├── adotest.lua
│ ├── animal.lua
│ ├── bisect.lua
│ ├── cf.lua
│ ├── class.lua
│ ├── compat.lua
│ ├── continue_invalid.lua
│ ├── continue_valid.lua
│ ├── echo.lua
│ ├── env.lua
│ ├── factorial.lua
│ ├── fib.lua
│ ├── fibfor.lua
│ ├── form.lua
│ ├── globals.lua
│ ├── hello.lua
│ ├── life.lua
│ ├── luac.lua
│ ├── luascript.bat
│ ├── popen.lua
│ ├── popencmd.lua
│ ├── popenlines.lua
│ ├── printf.lua
│ ├── readonly.lua
│ ├── sieve.lua
│ ├── socket.lua
│ ├── sort.lua
│ ├── sqlite3/
│ │ ├── aggregate.lua
│ │ ├── function.lua
│ │ ├── order.lua
│ │ ├── simple.lua
│ │ ├── statement.lua
│ │ └── tracing.lua
│ ├── table.lua
│ ├── test.mdb
│ ├── testform.lua
│ ├── testform2.lua
│ ├── testluaform.lua
│ ├── tests-luasql.lua
│ ├── tests-sqlite3.lua
│ ├── tests.lua
│ ├── threadtest1.lua
│ ├── trace-calls.lua
│ ├── trace-globals.lua
│ ├── undefined.lua
│ ├── xd.lua
│ └── xslt.lua
└── Tools/
├── LuaPlusDebuggerAddin/
│ ├── AddinReg.reg
│ ├── Jamfile.jam
│ ├── LuaPlusDebuggerAddin/
│ │ ├── AddIn.cpp
│ │ ├── AddIn.def
│ │ ├── AddIn.idl
│ │ ├── AddIn.rc
│ │ ├── AddIn.rgs
│ │ ├── Connect.cpp
│ │ ├── Connect.h
│ │ ├── LuaPlusDebuggerAddin.jam
│ │ ├── Resource.h
│ │ ├── stdafx.cpp
│ │ └── stdafx.h
│ └── LuaPlusDebuggerControls/
│ ├── LayoutMgr.cpp
│ ├── LayoutMgr.h
│ ├── Lex.h
│ ├── LuaPlusDebuggerControls.cpp
│ ├── LuaPlusDebuggerControls.jam
│ ├── LuaPlusDebuggerControls.rc
│ ├── LuaPlusDebuggerControls.rgs
│ ├── LuaPlusDebuggerControls.sln
│ ├── LuaPlusDebuggerControlsps.def
│ ├── LuaPlusTypes.h
│ ├── WatchCtl.cpp
│ ├── WatchCtl.h
│ ├── resource.h
│ ├── stdafx.cpp
│ └── stdafx.h
├── LuaWatchAddin/
│ ├── LuaWatchAddin.cpp
│ ├── LuaWatchAddin.def
│ ├── LuaWatchAddin.h
│ ├── LuaWatchAddin.sln
│ ├── LuaWatchAddin.vcproj
│ ├── StdAfx.cpp
│ ├── StdAfx.h
│ └── custview.h
├── WTL/
│ └── include/
│ ├── atlapp.h
│ ├── atlcrack.h
│ ├── atlctrls.h
│ ├── atlctrlw.h
│ ├── atlctrlx.h
│ ├── atlddx.h
│ ├── atldlgs.h
│ ├── atlframe.h
│ ├── atlgdi.h
│ ├── atlmisc.h
│ ├── atlprint.h
│ ├── atlres.h
│ ├── atlscrl.h
│ ├── atlsplit.h
│ ├── atltheme.h
│ └── atluser.h
└── bin2c.lua
Showing preview only (3,074K chars total). Download the full file or copy to clipboard to get everything.
SYMBOL INDEX (33344 symbols across 1486 files)
FILE: Samples/ManagedLuaPlusTest/Class1.cs
class Class1 (line 10) | class Class1
method MyCallback (line 12) | private static int MyCallback(LuaState state)
method Func (line 19) | private static void Func(int num)
method Func2 (line 26) | public void Func2(int num)
method TestGC (line 31) | static void TestGC()
method GuardDoString (line 37) | static bool GuardDoString(LuaState state, String text)
method TestIOX (line 58) | static void TestIOX()
method Main (line 70) | [STAThread]
FILE: Samples/Simple/Simple.cpp
function main (line 5) | int main()
FILE: Samples/TestClass/TestClass.cpp
type LPCD (line 6) | namespace LPCD
type Type<std::string> (line 8) | struct Type<std::string> {
method Push (line 9) | static inline void Push(lua_State* L, const std::string& value) {...
method Match (line 10) | static inline bool Match(lua_State* L, int idx) { return lua...
method Get (line 11) | static inline std::string Get(lua_State* L, int idx) { return ...
type Type<std::string&> (line 13) | struct Type<std::string&> : public Type<std::string> {}
type Type<const std::string&> (line 14) | struct Type<const std::string&> : public Type<std::string> {}
type Type<VECTOR> (line 74) | struct Type<VECTOR> {
method Push (line 75) | static inline void Push(lua_State* L, const VECTOR& value) {
method Match (line 80) | static inline bool Match(lua_State* L, int idx) {
method VECTOR (line 85) | static inline VECTOR Get(lua_State* L, int idx) {
type Type<VECTOR&> (line 90) | struct Type<VECTOR&> : public Type<VECTOR> {}
type Type<const VECTOR&> (line 91) | struct Type<const VECTOR&> : public Type<VECTOR> {}
function TestStdString1 (line 18) | std::string TestStdString1(std::string str)
class VECTOR (line 26) | class VECTOR
class ENTITY (line 34) | class ENTITY {
method printName (line 39) | void printName() {
class POSITION_ENTITY (line 47) | class POSITION_ENTITY : public ENTITY {
class MONSTER (line 53) | class MONSTER : public POSITION_ENTITY {
method printMe (line 58) | void printMe() {
class HUMAN (line 64) | class HUMAN : public ENTITY {
method printMe (line 68) | void printMe() {
type LPCD (line 73) | namespace LPCD {
type Type<std::string> (line 8) | struct Type<std::string> {
method Push (line 9) | static inline void Push(lua_State* L, const std::string& value) {...
method Match (line 10) | static inline bool Match(lua_State* L, int idx) { return lua...
method Get (line 11) | static inline std::string Get(lua_State* L, int idx) { return ...
type Type<std::string&> (line 13) | struct Type<std::string&> : public Type<std::string> {}
type Type<const std::string&> (line 14) | struct Type<const std::string&> : public Type<std::string> {}
type Type<VECTOR> (line 74) | struct Type<VECTOR> {
method Push (line 75) | static inline void Push(lua_State* L, const VECTOR& value) {
method Match (line 80) | static inline bool Match(lua_State* L, int idx) {
method VECTOR (line 85) | static inline VECTOR Get(lua_State* L, int idx) {
type Type<VECTOR&> (line 90) | struct Type<VECTOR&> : public Type<VECTOR> {}
type Type<const VECTOR&> (line 91) | struct Type<const VECTOR&> : public Type<VECTOR> {}
function PassVector (line 95) | void PassVector(VECTOR& vec) {
function MONSTER_new (line 100) | int MONSTER_new(LuaState* state){
function MONSTER (line 112) | MONSTER* get_MONSTER(const LuaObject& monsterObj) {
method printMe (line 58) | void printMe() {
function new_VECTOR2 (line 127) | int new_VECTOR2(lua_State* L) {
function ENTITY___gc (line 139) | int ENTITY___gc(lua_State* L) {
function POSITION_ENTITY___gc (line 149) | int POSITION_ENTITY___gc(lua_State* L) {
function MONSTER___gc (line 159) | int MONSTER___gc(lua_State* L) {
function new_MONSTER2 (line 169) | int new_MONSTER2(lua_State* L) {
function MONSTER (line 183) | MONSTER* get_MONSTER2(lua_State* L, int index, bool throwError = true) {
method printMe (line 58) | void printMe() {
function ENTITY_inplace___gc (line 192) | int ENTITY_inplace___gc(lua_State* L) {
function new_MONSTER2_inplace (line 199) | int new_MONSTER2_inplace(lua_State* L) {
function MONSTER (line 213) | MONSTER* get_MONSTER2_inplace(lua_State* L, int index, bool throwError =...
method printMe (line 58) | void printMe() {
function Vector4MonsterMetatableTest (line 222) | void Vector4MonsterMetatableTest() {
function Vector3MonsterMetatableTest (line 342) | void Vector3MonsterMetatableTest() {
function Vector2MonsterMetatableTest (line 420) | void Vector2MonsterMetatableTest() {
function VectorMonsterMetatableTest (line 511) | void VectorMonsterMetatableTest()
function main (line 562) | int __cdecl main(int argc, char* argv[])
FILE: Samples/TestScript/SimpleHeap.cpp
type SimpleMem (line 11) | namespace SimpleMem {
function MemLog (line 15) | void MemLog(const char* formatString, ...)
function T (line 41) | inline T Align(unsigned long align, T value)
function T (line 47) | inline T AlignDown(unsigned long align, T value)
function InRange (line 53) | inline bool InRange(T value, T minValue, T maxValue)
function DiffPtr (line 58) | inline long DiffPtr(void* upper, void* lower)
type SimpleHeap::BlockHeader (line 84) | struct SimpleHeap::BlockHeader
method BlockHeader (line 86) | static BlockHeader* GetBlockHeader(void* dataPtr)
method GetSize (line 90) | long GetSize() const { return m_size < 0 ? -m_size : m_size; }
method IsUsedBlock (line 91) | bool IsUsedBlock() const { return m_size < 0; }
method IsFreeBlock (line 92) | bool IsFreeBlock() const { return m_size >= 0; }
method BlockHeader (line 93) | BlockHeader* GetPreviousBlock() const { return m_prevBlock; }
method BlockHeader (line 94) | BlockHeader* GetNextBlock() const { return (BlockHeader*)GetData(...
method GetRequestedSize (line 96) | long GetRequestedSize()
method SetPreviousBlock (line 105) | void SetPreviousBlock(BlockHeader* block) { m_prevBlock = block; }
method SetNextBlock (line 106) | void SetNextBlock(BlockHeader* nextBlock)
method SetNextBlock (line 108) | void SetNextBlock(BlockHeader* nextBlock, bool isThisBlockFree)
method SetPointers (line 110) | void SetPointers(BlockHeader* previousBlock, BlockHeader* nextBlock,...
method SetSize (line 112) | void SetSize(long size, bool isFree) { m_size = isFree ? size : -s...
method CalcDataSize (line 113) | long CalcDataSize(BlockHeader* upperBlock) { return (long)((unsigne...
type SimpleHeap::FreeBlockHeader (line 136) | struct SimpleHeap::FreeBlockHeader : public BlockHeader
method SetFreePointers (line 143) | void SetFreePointers(FreeBlockHeader* prev, FreeBlockHeader* next)
method SetFreePointersAndLinks (line 149) | void SetFreePointersAndLinks(FreeBlockHeader* prev, FreeBlockHeader*...
method FreeBlockHeader (line 159) | FreeBlockHeader* GetNextFreeBlock() const { return m_nextFreeBloc...
method FreeBlockHeader (line 160) | FreeBlockHeader* GetPreviousFreeBlock() const { return m_prevFreeB...
method SetNextFreeBlock (line 161) | void SetNextFreeBlock(FreeBlockHeader* block) { m_nextFreeBlock = ...
method SetPreviousFreeBlock (line 162) | void SetPreviousFreeBlock(FreeBlockHeader* block) { m_prevFreeBlock...
FILE: Samples/TestScript/SimpleHeap.h
function namespace (line 8) | namespace SimpleMem {
FILE: Samples/TestScript/TestScript.cpp
class Foo (line 12) | class Foo
method Foo (line 16) | Foo() { check = 0x12345678; }
method bar (line 17) | void bar() { assert(check == 0x12345678); }
function NewUserdataBoxTest (line 20) | void NewUserdataBoxTest()
type LPCD (line 39) | namespace LPCD
type Type<std::string> (line 41) | struct Type<std::string> {
method Push (line 42) | static inline void Push(lua_State* L, const std::string& value) ...
method Match (line 43) | static inline bool Match(lua_State* L, int idx) { return l...
method Get (line 44) | static inline std::string Get(lua_State* L, int idx) { retur...
type Type<std::string&> (line 46) | struct Type<std::string&> : public Type<std::string> {}
type Type<const std::string&> (line 47) | struct Type<const std::string&> : public Type<std::string> {}
type Type<VECTOR> (line 1091) | struct Type<VECTOR> {
method Push (line 1092) | static inline void Push(lua_State* L, const VECTOR& value) {
method Match (line 1097) | static inline bool Match(lua_State* L, int idx) {
method VECTOR (line 1102) | static inline VECTOR Get(lua_State* L, int idx) {
type Type<VECTOR&> (line 1107) | struct Type<VECTOR&> : public Type<VECTOR> {}
type Type<const VECTOR&> (line 1108) | struct Type<const VECTOR&> : public Type<VECTOR> {}
function TestStdString1 (line 51) | std::string TestStdString1(std::string str)
function TestStdString (line 60) | void TestStdString()
function LS_PrintNumber (line 76) | static int LS_PrintNumber(LuaState* state)
class ObjectWrapper (line 91) | class ObjectWrapper
method Zero (line 94) | void Zero()
method Print (line 98) | void Print(const char* str)
method Add (line 103) | float Add(float num1, float num2)
method Add3 (line 108) | float Add3(float num1, float num2, float num3)
method Add4 (line 113) | float Add4(float num1, float num2, float num3, float num4)
method LS_Add (line 118) | int LS_Add(LuaState* state)
function Add4NoReturn (line 140) | void Add4NoReturn(float num1, float num2, float num3, float num4)
function DoScriptFormatTest (line 146) | void DoScriptFormatTest()
function Test (line 153) | int Test(int num)
function DoScriptCallbackTest (line 163) | void DoScriptCallbackTest()
function DoScriptSaveTest (line 228) | void DoScriptSaveTest()
function DoScriptArrayTest (line 247) | void DoScriptArrayTest()
function LS_LightUserdataCall (line 269) | static int LS_LightUserdataCall( LuaState* state )
function TestPointer (line 279) | void TestPointer()
function LuaTableIteratorTest (line 316) | void LuaTableIteratorTest()
function TestNewCall (line 334) | void TestNewCall()
class MemLogFile (line 382) | class MemLogFile
method MemLogFile (line 385) | MemLogFile()
method Close (line 395) | void Close()
method Create (line 404) | void Create(const char* fileName)
method Open (line 414) | void Open()
method Write (line 421) | void Write(const char* msg, ...)
method Flush (line 429) | void Flush()
function MemLogFile (line 442) | MemLogFile& GetMemLogFile()
method MemLogFile (line 385) | MemLogFile()
method Close (line 395) | void Close()
method Create (line 404) | void Create(const char* fileName)
method Open (line 414) | void Open()
method Write (line 421) | void Write(const char* msg, ...)
method Flush (line 429) | void Flush()
function DumpIt (line 449) | void DumpIt()
function Chunkwriter (line 455) | int Chunkwriter(lua_State *L, const void* p,
function TestHeap (line 464) | void TestHeap()
function TestGCObject (line 508) | void TestGCObject()
function SetUserdata (line 563) | void SetUserdata()
function CloneTest (line 584) | void CloneTest()
function CallbackA (line 621) | int CallbackA(LuaState* state)
function CallbackB (line 633) | int CallbackB(LuaState* state)
function TestThreeThreads (line 645) | void TestThreeThreads()
function DumpTest (line 675) | void DumpTest()
function TestANSIFile (line 688) | void TestANSIFile()
function TestUnicodeFile (line 698) | void TestUnicodeFile()
function ReadUnicodeFile (line 710) | void ReadUnicodeFile()
function IntegerTest (line 718) | void IntegerTest()
function LookupTest (line 747) | void LookupTest()
class MultiObject (line 758) | class MultiObject
method MultiObject (line 761) | MultiObject(int num) :
method Print (line 766) | int Print(LuaState* state)
method Print2 (line 772) | void Print2(int num)
function MultiObjectTest (line 782) | void MultiObjectTest()
class lua_StateObjectHelper (line 821) | class lua_StateObjectHelper
method lua_StateObjectHelper (line 824) | lua_StateObjectHelper() :
method PrintSomething (line 829) | int PrintSomething(lua_State* L)
function PrintSomethingGlobal (line 840) | int PrintSomethingGlobal(lua_State* L)
function MemoryTest (line 868) | void MemoryTest()
function RCTest (line 888) | void RCTest()
function ExceptionTest (line 900) | void ExceptionTest()
function BisectTest (line 927) | void BisectTest()
class MyPropertyTest (line 934) | class MyPropertyTest
method MyPropertyTest (line 937) | MyPropertyTest()
method SetVar (line 941) | void SetVar(int index)
function PropertyTest (line 954) | void PropertyTest()
function PropertyMetatable_newindex (line 1015) | int PropertyMetatable_newindex(LuaState* state)
function SetTest (line 1038) | void SetTest()
function BadDoString (line 1050) | void BadDoString()
function LoadCompiledScript (line 1064) | void LoadCompiledScript()
class VECTOR (line 1073) | class VECTOR
class MONSTER (line 1080) | class MONSTER
type LPCD (line 1089) | namespace LPCD
type Type<std::string> (line 41) | struct Type<std::string> {
method Push (line 42) | static inline void Push(lua_State* L, const std::string& value) ...
method Match (line 43) | static inline bool Match(lua_State* L, int idx) { return l...
method Get (line 44) | static inline std::string Get(lua_State* L, int idx) { retur...
type Type<std::string&> (line 46) | struct Type<std::string&> : public Type<std::string> {}
type Type<const std::string&> (line 47) | struct Type<const std::string&> : public Type<std::string> {}
type Type<VECTOR> (line 1091) | struct Type<VECTOR> {
method Push (line 1092) | static inline void Push(lua_State* L, const VECTOR& value) {
method Match (line 1097) | static inline bool Match(lua_State* L, int idx) {
method VECTOR (line 1102) | static inline VECTOR Get(lua_State* L, int idx) {
type Type<VECTOR&> (line 1107) | struct Type<VECTOR&> : public Type<VECTOR> {}
type Type<const VECTOR&> (line 1108) | struct Type<const VECTOR&> : public Type<VECTOR> {}
function PassVector (line 1112) | void PassVector(VECTOR& vec)
function VectorMonsterMetatableTest (line 1119) | void VectorMonsterMetatableTest()
function GlobalErrorTest (line 1157) | void GlobalErrorTest()
function DoStringErrorTest (line 1170) | void DoStringErrorTest()
function RCBlowup (line 1181) | void RCBlowup()
function ForBlowup (line 1188) | void ForBlowup()
function TestClass (line 1195) | void TestClass()
function delay (line 1213) | static int delay(LuaState* pState)
function CoroutineTest (line 1227) | void CoroutineTest()
function MemoryKeyTest (line 1241) | void MemoryKeyTest()
function WeakTableTest (line 1356) | void WeakTableTest()
function MiniTest (line 1385) | void MiniTest()
function TestParser (line 1415) | void TestParser()
function TestGC (line 1444) | void TestGC()
function TestRC1 (line 1483) | void TestRC1()
function l_message (line 1498) | static void l_message (const char *pname, const char *msg) {
function report (line 1504) | static int report (lua_State* L, int status) {
function GCFunc (line 1516) | int GCFunc(lua_State* L)
function SimpleGCTest (line 1522) | void SimpleGCTest()
function UserTest (line 1571) | void UserTest()
function GCTest_pmain (line 1611) | static int GCTest_pmain (lua_State *L)
function GCTest (line 1648) | void GCTest()
function SimpleTest (line 1673) | void SimpleTest()
function myrawset (line 1691) | int myrawset( lua_State* L )
function GlobalNewIndexRawSetTest (line 1697) | int GlobalNewIndexRawSetTest(void)
function NullOutNext_Inner (line 1732) | static int NullOutNext_Inner(lua_State* L)
function NullOutNext (line 1762) | int NullOutNext()
function __newindexMetatableDoNothing (line 1773) | int __newindexMetatableDoNothing( lua_State* L )
function GlobalNewIndexDoNothingTest (line 1778) | int GlobalNewIndexDoNothingTest(void)
function FEnvTest (line 1812) | void FEnvTest()
function MiniTests (line 1836) | void MiniTests()
function NextTest (line 1887) | void NextTest()
function ConcatTest (line 1914) | void ConcatTest()
function SetTopTest (line 1924) | void SetTopTest()
function RCTests (line 1937) | void RCTests()
function SimpleConstructor (line 1956) | void SimpleConstructor()
function TestCoroutine (line 1964) | void TestCoroutine()
function TableTest (line 1984) | void TableTest()
function TestState (line 1992) | void TestState()
function TestGCLuaScript (line 1997) | void TestGCLuaScript()
function RefTest (line 2005) | void RefTest()
function TestSet (line 2161) | void TestSet()
function main (line 2173) | int __cdecl main(int argc, char* argv[])
FILE: Samples/TestScript/Timer.h
function class (line 11) | class Timer
function Timer (line 29) | inline Timer::Timer(void) :
function Reset (line 40) | inline void Timer::Reset()
function Start (line 45) | inline void Timer::Start(void)
function Stop (line 50) | inline void Timer::Stop(void)
function GetDuration (line 57) | inline double Timer::GetDuration(void) const
function GetMillisecs (line 62) | inline double Timer::GetMillisecs(void) const
FILE: Samples/TestSuite/TestSuite.cpp
function TEST (line 11) | TEST(LuaState_creation1)
function TEST (line 20) | TEST(LuaState_creation2)
function TEST (line 29) | TEST(LuaStateOwner_creationDestruction_1)
function TEST (line 36) | TEST(LuaStateOwner_creationDestruction_2)
function TEST (line 43) | TEST(LuaState_CreateThread)
function TEST (line 52) | TEST(LuaState_CastState)
function TEST (line 62) | TEST(LuaState_Stack)
function TEST (line 76) | TEST(LuaState_StackTop)
function TEST (line 88) | TEST(LuaState_GetTop)
function TEST (line 101) | TEST(LuaState_SetTop)
function TEST (line 124) | TEST(LuaState_PushValue)
function TEST (line 142) | TEST(LuaState_PushValueStackObject)
function TEST (line 154) | TEST(LuaState_Remove)
function TEST (line 172) | TEST(LuaState_Insert)
function TEST (line 193) | TEST(LuaState_Replace)
function TEST (line 216) | TEST(LuaState_Equal)
function TEST (line 230) | TEST(LuaState_Equal_2)
function TEST (line 243) | TEST(LuaState_RawEqual)
function TEST (line 256) | TEST(LuaState_LessThan)
function TEST (line 270) | TEST(LuaState_LessThan_2)
function TEST (line 283) | TEST(LuaState_PushNil)
function TEST (line 294) | TEST(LuaState_PushNumber)
function TEST (line 309) | TEST(LuaState_PushInteger)
function TEST (line 324) | TEST(LuaState_PushLString)
function TEST (line 339) | TEST(LuaState_PushLWString)
function TEST (line 355) | TEST(LuaState_PushString)
function TEST (line 370) | TEST(LuaState_PushWString)
function LuaStackObject (line 389) | LuaStackObject LuaState_PushVFStringHelper(LuaState* state, const char* ...
function TEST (line 399) | TEST(LuaState_PushVFString)
function TEST (line 412) | TEST(LuaState_PushFString)
function LuaState_PushCClosure_Helper_1 (line 427) | static int LuaState_PushCClosure_Helper_1(lua_State* L)
function TEST (line 433) | TEST(LuaState_PushCClosure_1)
function LuaState_PushCClosure_Helper_2 (line 451) | static int LuaState_PushCClosure_Helper_2(LuaState* state)
function TEST (line 457) | TEST(LuaState_PushCClosure_2)
function LuaState_PushCClosure_Helper_3 (line 473) | static int LuaState_PushCClosure_Helper_3(lua_State* L)
function TEST (line 479) | TEST(LuaState_PushCClosure_3)
function TEST (line 496) | TEST(LuaState_PushBoolean)
function TEST (line 509) | TEST(LuaState_PushLightUserdata)
function TEST (line 522) | TEST(LuaState_PushThread)
function TEST (line 535) | TEST(LuaState_CreateTable)
function TEST (line 546) | TEST(LuaState_NewUserdata)
function TEST (line 559) | TEST(LuaState_GetGlobals)
function TEST (line 570) | TEST(LuaState_GetGlobals_Stack)
function TEST (line 581) | TEST(LuaState_GetGlobal)
function TEST (line 590) | TEST(LuaState_GetRegistry)
function TEST (line 601) | TEST(LuaState_GetRegistry_Stack)
function LuaState_Call_Helper (line 612) | static int LuaState_Call_Helper(LuaState* state)
function TEST (line 619) | TEST(LuaState_Call)
function LuaState_PCall_Helper (line 632) | static int LuaState_PCall_Helper(LuaState* state)
function TEST (line 639) | TEST(LuaState_PCall)
function LuaState_CPCall_Helper (line 652) | static int LuaState_CPCall_Helper(lua_State* L)
function TEST (line 660) | TEST(LuaState_CPCall)
type LuaState_Load_Info (line 670) | struct LuaState_Load_Info
method LuaState_Load_Info (line 672) | LuaState_Load_Info() : pos(0), size(0) {}
function TEST (line 691) | TEST(LuaState_Load)
type LuaState_WLoad_Info (line 712) | struct LuaState_WLoad_Info
method LuaState_WLoad_Info (line 714) | LuaState_WLoad_Info() : pos(0), size(0) {}
function TEST (line 733) | TEST(LuaState_WLoad)
type LuaState_Dump_Info (line 755) | struct LuaState_Dump_Info
method LuaState_Dump_Info (line 757) | LuaState_Dump_Info() : bufferPos(0) {}
function LuaState_Dump_Helper (line 764) | static int LuaState_Dump_Helper(lua_State* L, const void* p, size_t sz, ...
function TEST (line 773) | TEST(LuaState_Dump)
function TEST (line 805) | TEST(LuaState_Error)
function TEST (line 819) | TEST(LuaState_Next)
function TEST (line 841) | TEST(LuaState_Concat)
function TEST (line 859) | TEST(LuaState_ConcatW)
function TEST (line 886) | TEST(LuaState_Pop)
function TEST (line 917) | TEST(LuaObject_CreationBareConstructor)
function TEST (line 925) | TEST(LuaObject_CreationWithCounting)
function TEST (line 957) | TEST(LuaObject_CreationBareConstructorWithAssignment)
function TEST (line 970) | TEST(LuaObject_CreationWithLuaStatePointer)
function TEST (line 979) | TEST(LuaObject_CreationWithLuaStatePointerAndStackIndex)
function TEST (line 989) | TEST(LuaObject_CopyConstructorFromLuaStackObject)
function TEST (line 998) | TEST(LuaObject_CopyConstructorFromLuaObject)
function TEST (line 1010) | TEST(LuaObject_AssignmentOperatorFromLuaObject)
function TEST (line 1023) | TEST(LuaObject_AssignmentOperatorFromLuaStackObject)
function TEST (line 1036) | TEST(LuaObject_Casts)
function TEST (line 1057) | TEST(LuaObject_Assign)
function TEST (line 1141) | TEST(LuaObject_SetTable_Array)
function TEST (line 1206) | TEST(LuaObject_SetTable_Array_With_Sort)
function TEST (line 1232) | TEST(LuaObject_SetNil)
function TEST (line 1262) | TEST(LuaObject_SetBoolean)
function TEST (line 1286) | TEST(LuaObject_SetNumber)
function TEST (line 1310) | TEST(LuaObject_SetString)
function TEST (line 1336) | TEST(LuaObject_SetWString)
function TEST (line 1366) | TEST(LuaObject_SetUserdata)
function TEST (line 1391) | TEST(LuaObject_SetLightUserdata)
function TEST (line 1415) | TEST(LuaObject_SetObject)
function TEST (line 1444) | TEST(LuaObject_CreateTable)
function TEST (line 1477) | TEST(LuaObject_GetByFuncs)
function TEST (line 1533) | TEST(LuaObject_StrLen)
function TEST (line 1549) | TEST(LuaObject_PushStack)
function LS_AddPrint (line 1569) | static int LS_AddPrint(LuaState* state)
function LS_Add (line 1583) | static int LS_Add(LuaState* state)
class TestObject (line 1595) | class TestObject
method TestObject (line 1598) | TestObject(float startNumber) :
method LS_Mul (line 1603) | int LS_Mul(LuaState* state)
function TEST (line 1621) | TEST(LuaObject_PCall_FunctionCallNoReturnValue)
function TEST (line 1638) | TEST(LuaObject_PCall_FunctionCallWithReturnValue)
function TEST (line 1671) | TEST(LuaObject_FunctionCallNoReturnValue)
function TEST (line 1688) | TEST(LuaObject_FunctionCallWithReturnValue)
function TEST (line 1721) | TEST(LuaObject_DirectFunctionCall)
function DFR_Add (line 1754) | int DFR_Add(int num1, int num2)
function DFR_AddPrint (line 1759) | void DFR_AddPrint(float num1, float num2, const char* string)
class DFRObject (line 1765) | class DFRObject
method DFRObject (line 1768) | DFRObject(float startValue) :
method Mul (line 1773) | float Mul(float num1, float num2)
function TEST (line 1782) | TEST(LuaObject_DirectFunctionRegister)
function FuncSize (line 1815) | inline size_t FuncSize(Func)
function CalleeFuncSize (line 1822) | inline size_t CalleeFuncSize(const Callee&, Func)
function LS_FuncSize (line 1828) | static size_t LS_FuncSize(LuaState* state)
class FuncSizeObject (line 1835) | class FuncSizeObject
method FuncSizeObject (line 1838) | FuncSizeObject()
method LS_CalleeFuncSize (line 1842) | size_t LS_CalleeFuncSize(LuaState* state)
function TEST (line 1852) | TEST(LuaObject_FunctorSizeTest)
function TEST (line 1874) | TEST(LuaObject_CheckConvertibleTypes)
function TEST (line 1929) | TEST(LuaObject_Metatable)
function CallbackFunction (line 1995) | static int CallbackFunction(LuaState* state)
function TEST (line 2002) | TEST(LuaState_Callback)
function WriteToBinaryFile (line 2011) | static int WriteToBinaryFile(lua_State* L, const void* p, size_t sz, voi...
function TEST (line 2019) | TEST(LuaState_LoadCompiledScript)
function TEST (line 2061) | TEST(LuaState_LoadString)
function TEST (line 2117) | TEST(LuaState_ExceptionTest)
function TEST (line 2152) | TEST(LuaState_BitOperators)
function TEST (line 2211) | TEST(LuaPlus_TestANSIFile)
function TEST (line 2222) | TEST(LuaPlus_TestUnicodeFile)
function TEST (line 2235) | TEST(LuaPlus_BogusCharacters)
function TEST (line 2243) | TEST(LuaObject_LotsOTables)
function main (line 2268) | int main(int argc, char* argv[])
FILE: Samples/UnitTest++/src/AssertException.cpp
type UnitTest (line 4) | namespace UnitTest {
FILE: Samples/UnitTest++/src/AssertException.h
function namespace (line 7) | namespace UnitTest {
FILE: Samples/UnitTest++/src/Checks.cpp
type UnitTest (line 4) | namespace UnitTest {
function CheckStringsEqual (line 8) | void CheckStringsEqual(TestResults& results, char const* expected, cha...
function CheckEqual (line 25) | void CheckEqual(TestResults& results, char const* expected, char const...
function CheckEqual (line 31) | void CheckEqual(TestResults& results, char* expected, char* actual,
function CheckEqual (line 37) | void CheckEqual(TestResults& results, char* expected, char const* actual,
function CheckEqual (line 43) | void CheckEqual(TestResults& results, char const* expected, char* actual,
FILE: Samples/UnitTest++/src/Checks.h
function namespace (line 8) | namespace UnitTest {
FILE: Samples/UnitTest++/src/CurrentTest.cpp
type UnitTest (line 4) | namespace UnitTest {
function TestResults (line 6) | TestResults*& CurrentTest::Results()
function TestDetails (line 12) | const TestDetails*& CurrentTest::Details()
FILE: Samples/UnitTest++/src/CurrentTest.h
function namespace (line 4) | namespace UnitTest {
FILE: Samples/UnitTest++/src/DeferredTestReporter.h
function namespace (line 10) | namespace UnitTest
FILE: Samples/UnitTest++/src/DeferredTestResult.cpp
type UnitTest (line 4) | namespace UnitTest
FILE: Samples/UnitTest++/src/DeferredTestResult.h
function namespace (line 9) | namespace UnitTest
FILE: Samples/UnitTest++/src/ExecuteTest.h
function namespace (line 13) | namespace UnitTest {
FILE: Samples/UnitTest++/src/MemoryOutStream.cpp
type UnitTest (line 6) | namespace UnitTest {
function FormatToStream (line 29) | void FormatToStream(MemoryOutStream& stream, char const* format, Value...
function RoundUpToMultipleOfPow2Number (line 38) | int RoundUpToMultipleOfPow2Number (int n, int pow2Number)
function MemoryOutStream (line 64) | MemoryOutStream& MemoryOutStream::operator << (char const* txt)
function MemoryOutStream (line 81) | MemoryOutStream& MemoryOutStream::operator << (int const n)
function MemoryOutStream (line 87) | MemoryOutStream& MemoryOutStream::operator << (long const n)
function MemoryOutStream (line 93) | MemoryOutStream& MemoryOutStream::operator << (unsigned long const n)
function MemoryOutStream (line 99) | MemoryOutStream& MemoryOutStream::operator << (float const f)
function MemoryOutStream (line 105) | MemoryOutStream& MemoryOutStream::operator << (void const* p)
function MemoryOutStream (line 111) | MemoryOutStream& MemoryOutStream::operator << (unsigned int const s)
function MemoryOutStream (line 117) | MemoryOutStream& MemoryOutStream::operator <<(double const d)
type UnitTest (line 24) | namespace UnitTest {
function FormatToStream (line 29) | void FormatToStream(MemoryOutStream& stream, char const* format, Value...
function RoundUpToMultipleOfPow2Number (line 38) | int RoundUpToMultipleOfPow2Number (int n, int pow2Number)
function MemoryOutStream (line 64) | MemoryOutStream& MemoryOutStream::operator << (char const* txt)
function MemoryOutStream (line 81) | MemoryOutStream& MemoryOutStream::operator << (int const n)
function MemoryOutStream (line 87) | MemoryOutStream& MemoryOutStream::operator << (long const n)
function MemoryOutStream (line 93) | MemoryOutStream& MemoryOutStream::operator << (unsigned long const n)
function MemoryOutStream (line 99) | MemoryOutStream& MemoryOutStream::operator << (float const f)
function MemoryOutStream (line 105) | MemoryOutStream& MemoryOutStream::operator << (void const* p)
function MemoryOutStream (line 111) | MemoryOutStream& MemoryOutStream::operator << (unsigned int const s)
function MemoryOutStream (line 117) | MemoryOutStream& MemoryOutStream::operator <<(double const d)
FILE: Samples/UnitTest++/src/MemoryOutStream.h
function namespace (line 10) | namespace UnitTest
function namespace (line 33) | namespace UnitTest
FILE: Samples/UnitTest++/src/Posix/SignalTranslator.cpp
type UnitTest (line 3) | namespace UnitTest {
function SignalHandler (line 9) | void SignalHandler(int sig)
type sigaction (line 22) | struct sigaction
FILE: Samples/UnitTest++/src/Posix/SignalTranslator.h
function namespace (line 7) | namespace UnitTest {
FILE: Samples/UnitTest++/src/Posix/TimeHelpers.cpp
type UnitTest (line 4) | namespace UnitTest {
type timeval (line 19) | struct timeval
FILE: Samples/UnitTest++/src/Posix/TimeHelpers.h
function namespace (line 6) | namespace UnitTest {
FILE: Samples/UnitTest++/src/ReportAssert.cpp
type UnitTest (line 4) | namespace UnitTest {
function ReportAssert (line 6) | void ReportAssert(char const* description, char const* filename, int l...
FILE: Samples/UnitTest++/src/ReportAssert.h
function namespace (line 4) | namespace UnitTest {
FILE: Samples/UnitTest++/src/Test.cpp
type UnitTest (line 13) | namespace UnitTest {
function TestList (line 15) | TestList& Test::GetTestList()
FILE: Samples/UnitTest++/src/Test.h
function namespace (line 6) | namespace UnitTest {
FILE: Samples/UnitTest++/src/TestDetails.cpp
type UnitTest (line 3) | namespace UnitTest {
FILE: Samples/UnitTest++/src/TestDetails.h
function namespace (line 4) | namespace UnitTest {
FILE: Samples/UnitTest++/src/TestList.cpp
type UnitTest (line 6) | namespace UnitTest {
function Test (line 29) | Test* TestList::GetHead() const
FILE: Samples/UnitTest++/src/TestList.h
function namespace (line 5) | namespace UnitTest {
FILE: Samples/UnitTest++/src/TestReporter.cpp
type UnitTest (line 3) | namespace UnitTest {
FILE: Samples/UnitTest++/src/TestReporter.h
function namespace (line 4) | namespace UnitTest {
FILE: Samples/UnitTest++/src/TestReporterStdout.cpp
type std (line 8) | namespace std {}
type UnitTest (line 11) | namespace UnitTest {
FILE: Samples/UnitTest++/src/TestReporterStdout.h
function namespace (line 6) | namespace UnitTest {
FILE: Samples/UnitTest++/src/TestResults.cpp
type UnitTest (line 6) | namespace UnitTest {
FILE: Samples/UnitTest++/src/TestResults.h
function namespace (line 4) | namespace UnitTest {
FILE: Samples/UnitTest++/src/TestRunner.cpp
type UnitTest (line 11) | namespace UnitTest {
function RunAllTests (line 13) | int RunAllTests()
FILE: Samples/UnitTest++/src/TestRunner.h
function namespace (line 8) | namespace UnitTest {
FILE: Samples/UnitTest++/src/TestSuite.h
function namespace (line 4) | namespace UnitTestSuite
FILE: Samples/UnitTest++/src/TimeConstraint.cpp
type UnitTest (line 6) | namespace UnitTest {
FILE: Samples/UnitTest++/src/TimeConstraint.h
function namespace (line 6) | namespace UnitTest {
FILE: Samples/UnitTest++/src/Win32/TimeHelpers.cpp
type UnitTest (line 4) | namespace UnitTest {
function __int64 (line 33) | __int64 Timer::GetTime() const
FILE: Samples/UnitTest++/src/Win32/TimeHelpers.h
function namespace (line 13) | namespace UnitTest {
FILE: Samples/UnitTest++/src/XmlTestReporter.cpp
function ReplaceChar (line 14) | void ReplaceChar(string& str, char c, string const& replacement)
function string (line 20) | string XmlEscape(string const& value)
function string (line 33) | string BuildFailureMessage(string const& file, int line, string const& m...
type UnitTest (line 42) | namespace UnitTest {
FILE: Samples/UnitTest++/src/XmlTestReporter.h
function namespace (line 8) | namespace UnitTest
FILE: Samples/UnitTest++/src/tests/Main.cpp
function main (line 5) | int main(int, char const *[])
FILE: Samples/UnitTest++/src/tests/RecordingReporter.h
type RecordingReporter (line 9) | struct RecordingReporter
function virtual (line 36) | virtual void ReportTestStart(UnitTest::TestDetails const& test)
function virtual (line 45) | virtual void ReportFailure(UnitTest::TestDetails const& test, char const...
function virtual (line 57) | virtual void ReportTestFinish(UnitTest::TestDetails const& test, float t...
function virtual (line 67) | virtual void ReportSummary(int totalTestCount, int failedTestCount, int ...
FILE: Samples/UnitTest++/src/tests/ScopedCurrentTest.h
function class (line 7) | class ScopedCurrentTest
FILE: Samples/UnitTest++/src/tests/TestAssertHandler.cpp
function TEST (line 9) | TEST(ReportAssertThrowsAssertException)
function TEST (line 25) | TEST(ReportAssertSetsCorrectInfoInException)
FILE: Samples/UnitTest++/src/tests/TestCheckMacros.cpp
function TEST (line 10) | TEST(CheckSucceedsOnTrue)
function TEST (line 26) | TEST(CheckFailsOnFalse)
function TEST (line 40) | TEST(FailureReportsCorrectTestName)
function TEST (line 52) | TEST(CheckFailureIncludesCheckContents)
function ThrowingFunction (line 65) | int ThrowingFunction()
function TEST (line 70) | TEST(CheckFailsOnException)
function TEST (line 84) | TEST(CheckFailureBecauseOfExceptionIncludesCheckContents)
function TEST (line 96) | TEST(CheckEqualSucceedsOnEqual)
function TEST (line 110) | TEST(CheckEqualFailsOnNotEqual)
function TEST (line 124) | TEST(CheckEqualFailsOnException)
function TEST (line 138) | TEST(CheckEqualFailureContainsCorrectDetails)
function TEST (line 156) | TEST(CheckEqualFailureBecauseOfExceptionContainsCorrectDetails)
function TEST (line 174) | TEST(CheckEqualFailureBecauseOfExceptionIncludesCheckContents)
function FunctionWithSideEffects (line 188) | int FunctionWithSideEffects()
function TEST (line 194) | TEST(CheckEqualDoesNotHaveSideEffectsWhenPassing)
function TEST (line 205) | TEST(CheckEqualDoesNotHaveSideEffectsWhenFailing)
function TEST (line 217) | TEST(CheckCloseSucceedsOnEqual)
function TEST (line 231) | TEST(CheckCloseFailsOnNotEqual)
function TEST (line 245) | TEST(CheckCloseFailsOnException)
function TEST (line 259) | TEST(CheckCloseFailureContainsCorrectDetails)
function TEST (line 277) | TEST(CheckCloseFailureBecauseOfExceptionContainsCorrectDetails)
function TEST (line 294) | TEST(CheckCloseFailureBecauseOfExceptionIncludesCheckContents)
function TEST (line 307) | TEST(CheckCloseDoesNotHaveSideEffectsWhenPassing)
function TEST (line 318) | TEST(CheckCloseDoesNotHaveSideEffectsWhenFailing)
class ThrowingObject (line 330) | class ThrowingObject
function TEST (line 340) | TEST(CheckArrayCloseSucceedsOnEqual)
function TEST (line 355) | TEST(CheckArrayCloseFailsOnNotEqual)
function TEST (line 373) | TEST(CheckArrayCloseFailureIncludesCheckExpectedAndActual)
function TEST (line 389) | TEST(CheckArrayCloseFailureContainsCorrectDetails)
function TEST (line 409) | TEST(CheckArrayCloseFailureBecauseOfExceptionContainsCorrectDetails)
function TEST (line 428) | TEST(CheckArrayCloseFailureIncludesTolerance)
function TEST (line 444) | TEST(CheckArrayCloseFailsOnException)
function TEST (line 462) | TEST(CheckArrayCloseFailureOnExceptionIncludesCheckContents)
function TEST (line 479) | TEST(CheckArrayEqualSuceedsOnEqual)
function TEST (line 496) | TEST(CheckArrayEqualFailsOnNotEqual)
function TEST (line 514) | TEST(CheckArrayEqualFailureIncludesCheckExpectedAndActual)
function TEST (line 530) | TEST(CheckArrayEqualFailureContainsCorrectInfo)
function TEST (line 548) | TEST(CheckArrayEqualFailsOnException)
function TEST (line 566) | TEST(CheckArrayEqualFailureOnExceptionIncludesCheckContents)
function TEST (line 589) | TEST(CheckArrayCloseDoesNotHaveSideEffectsWhenPassing)
function TEST (line 602) | TEST(CheckArrayCloseDoesNotHaveSideEffectsWhenFailing)
class ThrowingObject2D (line 616) | class ThrowingObject2D
function TEST (line 626) | TEST(CheckArray2DCloseSucceedsOnEqual)
function TEST (line 643) | TEST(CheckArray2DCloseFailsOnNotEqual)
function TEST (line 661) | TEST(CheckArray2DCloseFailureIncludesCheckExpectedAndActual)
function TEST (line 678) | TEST(CheckArray2DCloseFailureContainsCorrectDetails)
function TEST (line 698) | TEST(CheckArray2DCloseFailureBecauseOfExceptionContainsCorrectDetails)
function TEST (line 717) | TEST(CheckArray2DCloseFailureIncludesTolerance)
function TEST (line 732) | TEST(CheckArray2DCloseFailsOnException)
function TEST (line 750) | TEST(CheckArray2DCloseFailureOnExceptionIncludesCheckContents)
function TEST (line 775) | TEST(CheckArray2DCloseDoesNotHaveSideEffectsWhenPassing)
function TEST (line 788) | TEST(CheckArray2DCloseDoesNotHaveSideEffectsWhenFailing)
FILE: Samples/UnitTest++/src/tests/TestChecks.cpp
function TEST (line 10) | TEST(CheckEqualWithUnsignedLong)
function TEST (line 17) | TEST(CheckEqualsWithStringsFailsOnDifferentStrings)
function TEST (line 29) | TEST(CheckEqualsWithStringsWorksOnContentsNonConstNonConst)
function TEST (line 38) | TEST(CheckEqualsWithStringsWorksOnContentsConstConst)
function TEST (line 47) | TEST(CheckEqualsWithStringsWorksOnContentsNonConstConst)
function TEST (line 56) | TEST(CheckEqualsWithStringsWorksOnContentsConstNonConst)
function TEST (line 65) | TEST(CheckEqualsWithStringsWorksOnContentsWithALiteral)
function TEST (line 73) | TEST(CheckEqualFailureIncludesCheckExpectedAndActual)
function TEST (line 85) | TEST(CheckEqualFailureIncludesDetails)
function TEST (line 99) | TEST(CheckCloseTrue)
function TEST (line 106) | TEST(CheckCloseFalse)
function TEST (line 113) | TEST(CheckCloseWithZeroEpsilonWorksForSameNumber)
function TEST (line 120) | TEST(CheckCloseWithNaNFails)
function TEST (line 133) | TEST(CheckCloseWithNaNAgainstItselfFails)
function TEST (line 146) | TEST(CheckCloseFailureIncludesCheckExpectedAndActual)
function TEST (line 159) | TEST(CheckCloseFailureIncludesTolerance)
function TEST (line 169) | TEST(CheckCloseFailureIncludesDetails)
function TEST (line 184) | TEST(CheckArrayEqualTrue)
function TEST (line 193) | TEST(CheckArrayEqualFalse)
function TEST (line 203) | TEST(CheckArrayCloseTrue)
function TEST (line 213) | TEST(CheckArrayCloseFalse)
function TEST (line 223) | TEST(CheckArrayCloseFailureIncludesDetails)
function TEST (line 240) | TEST(CheckArray2DCloseTrue)
function TEST (line 254) | TEST(CheckArray2DCloseFalse)
function TEST (line 268) | TEST(CheckCloseWithDoublesSucceeds)
function TEST (line 273) | TEST(CheckArray2DCloseFailureIncludesDetails)
FILE: Samples/UnitTest++/src/tests/TestCurrentTest.cpp
function TEST (line 8) | TEST(CanSetandGetDetails)
function TEST (line 23) | TEST(CanSetAndGetResults)
FILE: Samples/UnitTest++/src/tests/TestDeferredTestReporter.cpp
type UnitTest (line 6) | namespace UnitTest
function MemoryOutStream (line 13) | MemoryOutStream& operator <<(MemoryOutStream& lhs, const std::string& ...
type MockDeferredTestReporter (line 20) | struct MockDeferredTestReporter : public DeferredTestReporter
method ReportSummary (line 22) | virtual void ReportSummary(int, int, int, float)
type DeferredTestReporterFixture (line 27) | struct DeferredTestReporterFixture
method DeferredTestReporterFixture (line 29) | DeferredTestReporterFixture()
function TEST_FIXTURE (line 46) | TEST_FIXTURE(DeferredTestReporterFixture, ReportTestStartCreatesANewDe...
function TEST_FIXTURE (line 52) | TEST_FIXTURE(DeferredTestReporterFixture, ReportTestStartCapturesTestN...
function TEST_FIXTURE (line 61) | TEST_FIXTURE(DeferredTestReporterFixture, ReportTestEndCapturesTestTime)
function TEST_FIXTURE (line 71) | TEST_FIXTURE(DeferredTestReporterFixture, ReportFailureSavesFailureDet...
function TEST_FIXTURE (line 83) | TEST_FIXTURE(DeferredTestReporterFixture, ReportFailureSavesFailureDet...
function TEST_FIXTURE (line 98) | TEST_FIXTURE(DeferredTestReporterFixture, DeferredTestReporterTakesCop...
FILE: Samples/UnitTest++/src/tests/TestMemoryOutStream.cpp
function TEST (line 11) | TEST(DefaultIsEmptyString)
function TEST (line 18) | TEST(StreamingTextCopiesCharacters)
function TEST (line 25) | TEST(StreamingMultipleTimesConcatenatesResult)
function TEST (line 32) | TEST(StreamingIntWritesCorrectCharacters)
function TEST (line 39) | TEST(StreamingUnsignedIntWritesCorrectCharacters)
function TEST (line 46) | TEST(StreamingLongWritesCorrectCharacters)
function TEST (line 53) | TEST(StreamingUnsignedLongWritesCorrectCharacters)
function TEST (line 60) | TEST(StreamingFloatWritesCorrectCharacters)
function TEST (line 67) | TEST(StreamingDoubleWritesCorrectCharacters)
function TEST (line 74) | TEST(StreamingPointerWritesCorrectCharacters)
function TEST (line 82) | TEST(StreamingSizeTWritesCorrectCharacters)
function TEST (line 92) | TEST(StreamInitialCapacityIsCorrect)
function TEST (line 98) | TEST(StreamInitialCapacityIsMultipleOfGrowChunkSize)
function TEST (line 105) | TEST(ExceedingCapacityGrowsBuffer)
function TEST (line 114) | TEST(ExceedingCapacityGrowsBufferByGrowChunk)
function TEST (line 121) | TEST(WritingStringLongerThanCapacityFitsInNewBuffer)
function TEST (line 128) | TEST(WritingIntLongerThanCapacityFitsInNewBuffer)
function TEST (line 135) | TEST(WritingFloatLongerThanCapacityFitsInNewBuffer)
function TEST (line 142) | TEST(WritingSizeTLongerThanCapacityFitsInNewBuffer)
FILE: Samples/UnitTest++/src/tests/TestTest.cpp
function TEST (line 10) | TEST(PassingTestHasNoFailures)
function TEST (line 32) | TEST(FailingTestHasFailures)
function TEST (line 54) | TEST(ThrowingTestsAreReportedAsFailures)
function TEST (line 77) | TEST(CrashingTestsAreReportedAsFailures)
function TEST (line 99) | TEST(TestWithUnspecifiedSuiteGetsDefaultSuite)
function TEST (line 106) | TEST(TestReflectsSpecifiedSuiteName)
function Fail (line 113) | void Fail()
function TEST (line 118) | TEST(OutOfCoreCHECKMacrosCanFailTests)
FILE: Samples/UnitTest++/src/tests/TestTestList.cpp
function TEST (line 9) | TEST (TestListIsEmptyByDefault)
function TEST (line 15) | TEST (AddingTestSetsHeadToTest)
function TEST (line 25) | TEST (AddingSecondTestAddsItToEndOfList)
function TEST (line 39) | TEST (ListAdderAddsTestToList)
FILE: Samples/UnitTest++/src/tests/TestTestMacros.cpp
function TEST_EX (line 15) | TEST_EX(DummyTest, list1)
function TEST (line 19) | TEST (TestsAreAddedToTheListThroughMacro)
type ThrowingThingie (line 25) | struct ThrowingThingie
method ThrowingThingie (line 27) | ThrowingThingie() : dummy(false)
function TEST_FIXTURE_EX (line 37) | TEST_FIXTURE_EX(ThrowingThingie, DummyTestName, list2)
function TEST (line 41) | TEST (ExceptionsInFixtureAreReportedAsHappeningInTheFixture)
type DummyFixture (line 55) | struct DummyFixture
function SUITE (line 61) | SUITE(TestSuite1)
function SUITE (line 72) | SUITE(TestSuite2)
function TEST_EX (line 84) | TEST_EX(MacroTestHelper1, macroTestList1)
function TEST (line 88) | TEST(TestAddedWithTEST_EXMacroGetsDefaultSuite)
function TEST_FIXTURE_EX (line 96) | TEST_FIXTURE_EX(DummyFixture, MacroTestHelper2, macroTestList2)
function TEST (line 100) | TEST(TestAddedWithTEST_FIXTURE_EXMacroGetsDefaultSuite)
type FixtureCtorThrows (line 107) | struct FixtureCtorThrows
method FixtureCtorThrows (line 109) | FixtureCtorThrows() { throw "exception"; }
function TEST_FIXTURE_EX (line 113) | TEST_FIXTURE_EX(FixtureCtorThrows, FixtureCtorThrowsTestName, throwingFi...
function TEST (line 117) | TEST(FixturesWithThrowingCtorsAreFailures)
type FixtureDtorThrows (line 132) | struct FixtureDtorThrows
function TEST_FIXTURE_EX (line 138) | TEST_FIXTURE_EX(FixtureDtorThrows, FixtureDtorThrowsTestName, throwingFi...
function TEST (line 142) | TEST(FixturesWithThrowingDtorsAreFailures)
type FixtureCtorAsserts (line 160) | struct FixtureCtorAsserts
method FixtureCtorAsserts (line 162) | FixtureCtorAsserts()
function TEST_FIXTURE_EX (line 169) | TEST_FIXTURE_EX(FixtureCtorAsserts, CorrectlyReportsAssertFailureInCtor,...
function TEST (line 173) | TEST(CorrectlyReportsFixturesWithCtorsThatAssert)
function SUITE (line 193) | SUITE(SameTestSuite)
function TEST (line 204) | TEST(CUR_TEST_NAME)
FILE: Samples/UnitTest++/src/tests/TestTestResults.cpp
function TEST (line 12) | TEST(StartsWithNoTestsRun)
function TEST (line 18) | TEST(RecordsNumbersOfTests)
function TEST (line 27) | TEST(StartsWithNoTestsFailing)
function TEST (line 33) | TEST(RecordsNumberOfFailures)
function TEST (line 41) | TEST(RecordsNumberOfFailedTests)
function TEST (line 58) | TEST(NotifiesReporterOfTestStartWithCorrectInfo)
function TEST (line 69) | TEST(NotifiesReporterOfTestFailureWithCorrectInfo)
function TEST (line 83) | TEST(NotifiesReporterOfCheckFailureWithCorrectInfo)
function TEST (line 98) | TEST(NotifiesReporterOfTestEnd)
FILE: Samples/UnitTest++/src/tests/TestTestRunner.cpp
type MockTest (line 13) | struct MockTest : public Test
method MockTest (line 15) | MockTest(char const* testName, bool const success_, bool const assert_...
method RunImpl (line 23) | virtual void RunImpl(TestResults& testResults_) const
type TestRunnerFixture (line 40) | struct TestRunnerFixture
method TestRunnerFixture (line 42) | TestRunnerFixture()
function TEST_FIXTURE (line 52) | TEST_FIXTURE(TestRunnerFixture, TestStartIsReportedCorrectly)
function TEST_FIXTURE (line 62) | TEST_FIXTURE(TestRunnerFixture, TestFinishIsReportedCorrectly)
class SlowTest (line 72) | class SlowTest : public Test
method SlowTest (line 75) | SlowTest() : Test("slow", "somesuite", "filename", 123) {}
method RunImpl (line 76) | virtual void RunImpl(TestResults&) const
function TEST_FIXTURE (line 82) | TEST_FIXTURE(TestRunnerFixture, TestFinishIsCalledWithCorrectTime)
function TEST_FIXTURE (line 91) | TEST_FIXTURE(TestRunnerFixture, FailureCountIsZeroWhenNoTestsAreRun)
function TEST_FIXTURE (line 98) | TEST_FIXTURE(TestRunnerFixture, CallsReportFailureOncePerFailingTest)
function TEST_FIXTURE (line 111) | TEST_FIXTURE(TestRunnerFixture, TestsThatAssertAreReportedAsFailing)
function TEST_FIXTURE (line 121) | TEST_FIXTURE(TestRunnerFixture, ReporterNotifiedOfTestCount)
function TEST_FIXTURE (line 134) | TEST_FIXTURE(TestRunnerFixture, ReporterNotifiedOfFailedTests)
function TEST_FIXTURE (line 147) | TEST_FIXTURE(TestRunnerFixture, ReporterNotifiedOfFailures)
function TEST_FIXTURE (line 160) | TEST_FIXTURE(TestRunnerFixture, SlowTestPassesForHighTimeThreshold)
function TEST_FIXTURE (line 169) | TEST_FIXTURE(TestRunnerFixture, SlowTestFailsForLowTimeThreshold)
function TEST_FIXTURE (line 178) | TEST_FIXTURE(TestRunnerFixture, SlowTestHasCorrectFailureInformation)
function TEST_FIXTURE (line 195) | TEST_FIXTURE(TestRunnerFixture, SlowTestWithTimeExemptionPasses)
type TestSuiteFixture (line 215) | struct TestSuiteFixture
method TestSuiteFixture (line 217) | TestSuiteFixture()
function TEST_FIXTURE (line 235) | TEST_FIXTURE(TestSuiteFixture, TestRunnerRunsAllSuitesIfNullSuiteIsPassed)
function TEST_FIXTURE (line 241) | TEST_FIXTURE(TestSuiteFixture,TestRunnerRunsOnlySpecifiedSuite)
type RunTestIfNameIs (line 248) | struct RunTestIfNameIs
method RunTestIfNameIs (line 250) | RunTestIfNameIs(char const* name_)
function TEST (line 264) | TEST(TestMockPredicateBehavesCorrectly)
function TEST_FIXTURE (line 275) | TEST_FIXTURE(TestRunnerFixture, TestRunnerRunsTestsThatPassPredicate)
function TEST_FIXTURE (line 288) | TEST_FIXTURE(TestRunnerFixture, TestRunnerOnlyRunsTestsInSpecifiedSuiteA...
FILE: Samples/UnitTest++/src/tests/TestTestSuite.cpp
function SUITE (line 6) | SUITE(SameTestSuite)
FILE: Samples/UnitTest++/src/tests/TestTimeConstraint.cpp
function TEST (line 12) | TEST(TimeConstraintSucceedsWithFastTest)
function TEST (line 23) | TEST(TimeConstraintFailsWithSlowTest)
function TEST (line 34) | TEST(TimeConstraintFailureIncludesCorrectData)
function TEST (line 53) | TEST(TimeConstraintFailureIncludesTimeoutInformation)
FILE: Samples/UnitTest++/src/tests/TestTimeConstraintMacro.cpp
function TEST (line 9) | TEST(TimeConstraintMacroQualifiesNamespace)
function TEST (line 15) | TEST(TimeConstraintMacroUsesCorrectInfo)
function TEST (line 36) | TEST(TimeConstraintMacroComparesAgainstPreciseActual)
FILE: Samples/UnitTest++/src/tests/TestUnitTest++.cpp
function TEST (line 11) | TEST(ValidCheckSucceeds)
function TEST (line 17) | TEST(CheckWorksWithPointers)
function TEST (line 24) | TEST(ValidCheckEqualSucceeds)
function TEST (line 31) | TEST(CheckEqualWorksWithPointers)
function TEST (line 37) | TEST(ValidCheckCloseSucceeds)
function TEST (line 43) | TEST(ArrayCloseSucceeds)
function TEST (line 50) | TEST (CheckArrayCloseWorksWithVectors)
function TEST (line 59) | TEST(CheckThrowMacroSucceedsOnCorrectException)
function TEST (line 65) | TEST(CheckAssertSucceeds)
function TEST (line 70) | TEST(CheckThrowMacroFailsOnMissingException)
function TEST (line 97) | TEST(CheckThrowMacroFailsOnWrongException)
type SimpleFixture (line 120) | struct SimpleFixture
method SimpleFixture (line 122) | SimpleFixture()
function TEST_FIXTURE (line 136) | TEST_FIXTURE(SimpleFixture, DefaultFixtureCtorIsCalled)
function TEST_FIXTURE (line 141) | TEST_FIXTURE(SimpleFixture, OnlyOneFixtureAliveAtATime)
function CheckBool (line 146) | void CheckBool(const bool b)
function TEST (line 151) | TEST(CanCallCHECKOutsideOfTestFunction)
FILE: Samples/UnitTest++/src/tests/TestXmlTestReporter.cpp
function MemoryOutStream (line 15) | MemoryOutStream& operator<<(MemoryOutStream& s, const std::string& value)
type XmlTestReporterFixture (line 23) | struct XmlTestReporterFixture
method XmlTestReporterFixture (line 25) | XmlTestReporterFixture()
function TEST_FIXTURE (line 34) | TEST_FIXTURE(XmlTestReporterFixture, MultipleCharactersAreEscaped)
function TEST_FIXTURE (line 55) | TEST_FIXTURE(XmlTestReporterFixture, OutputIsCachedUntilReportSummaryIsC...
function TEST_FIXTURE (line 68) | TEST_FIXTURE(XmlTestReporterFixture, EmptyReportSummaryFormat)
function TEST_FIXTURE (line 80) | TEST_FIXTURE(XmlTestReporterFixture, SingleSuccessfulTestReportSummaryFo...
function TEST_FIXTURE (line 96) | TEST_FIXTURE(XmlTestReporterFixture, SingleFailedTestReportSummaryFormat)
function TEST_FIXTURE (line 115) | TEST_FIXTURE(XmlTestReporterFixture, FailureMessageIsXMLEscaped)
function TEST_FIXTURE (line 135) | TEST_FIXTURE(XmlTestReporterFixture, OneFailureAndOneSuccess)
function TEST_FIXTURE (line 159) | TEST_FIXTURE(XmlTestReporterFixture, MultipleFailures)
FILE: Src/LuaPlus/LuaAutoBlock.h
function namespace (line 18) | namespace LuaPlus {
FILE: Src/LuaPlus/LuaCall.h
function namespace (line 16) | namespace LuaPlus {
FILE: Src/LuaPlus/LuaFunction.h
function namespace (line 16) | namespace LuaPlus {
function class (line 177) | class LuaFunctionVoid
FILE: Src/LuaPlus/LuaHelper_Object.h
function namespace (line 18) | namespace LuaPlus
FILE: Src/LuaPlus/LuaHelper_StackObject.h
function namespace (line 18) | namespace LuaPlus
FILE: Src/LuaPlus/LuaObject.h
function namespace (line 20) | namespace LuaPlus
function namespace (line 401) | namespace LuaPlus {
FILE: Src/LuaPlus/LuaPlus.cpp
type LuaPlus (line 14) | namespace LuaPlus
function LuaException (line 37) | LuaException& LuaException::operator=(const LuaException& src)
FILE: Src/LuaPlus/LuaPlusAddons.c
function luaplus_str_format (line 20) | int luaplus_str_format (lua_State *L) {
function luaplus_base_createtable (line 31) | int luaplus_base_createtable (lua_State *L) {
FILE: Src/LuaPlus/LuaPlusCD.h
function namespace (line 22) | namespace LPCD {
type LuaUserdata (line 33) | struct LuaUserdata {
type LuaNil (line 41) | struct LuaNil {
function bool (line 49) | struct Type<bool> {
type Type (line 54) | struct Type
type Type (line 55) | struct Type
function char (line 58) | struct Type<char> {
type Type (line 63) | struct Type
type Type (line 64) | struct Type
function unsigned (line 67) | struct Type<unsigned char> {
type Type (line 72) | struct Type
type Type (line 73) | struct Type
function short (line 76) | struct Type<short> {
type Type (line 81) | struct Type
type Type (line 82) | struct Type
function unsigned (line 85) | struct Type<unsigned short> {
type Type (line 90) | struct Type
type Type (line 91) | struct Type
function int (line 94) | struct Type<int> {
type Type (line 99) | struct Type
type Type (line 100) | struct Type
function unsigned (line 103) | struct Type<unsigned int> {
type Type (line 108) | struct Type
type Type (line 109) | struct Type
function long (line 112) | struct Type<long> {
type Type (line 117) | struct Type
type Type (line 118) | struct Type
function unsigned (line 121) | struct Type<unsigned long> {
type Type (line 126) | struct Type
type Type (line 127) | struct Type
type Type (line 131) | struct Type
function Push (line 132) | static inline void Push(lua_State* L, size_t value) { lua_pushin...
function Match (line 133) | static inline bool Match(lua_State* L, int idx) { return lua_ty...
function Get (line 134) | static inline size_t Get(lua_State* L, int idx) { return static...
type Type (line 136) | struct Type
type Type (line 137) | struct Type
function float (line 141) | struct Type<float> {
type Type (line 146) | struct Type
type Type (line 147) | struct Type
function double (line 150) | struct Type<double> {
type Type (line 155) | struct Type
type Type (line 156) | struct Type
function lua_Integer (line 159) | struct Type<lua_Integer> {
type Type (line 164) | struct Type
function lua_Integer (line 165) | struct Type<const lua_Integer&> : public Type<lua_Integer> {}
function char (line 168) | struct Type<char*> {
type Type (line 173) | struct Type
function Push (line 177) | static inline void Push(lua_State* L, const char value[NUM_CHARS]) { ...
function Match (line 178) | static inline bool Match(lua_State* L, int idx) { return lua_ty...
function Push (line 182) | static inline void Push(lua_State* L, const char value[NUM_CHARS]) { ...
function Match (line 183) | static inline bool Match(lua_State* L, int idx) { return lua_ty...
function LuaNil (line 188) | struct Type<const LuaNil&> {
function lua_CFunction (line 195) | struct Type<lua_CFunction> {
function void (line 202) | struct Type<void*> {
type Type (line 207) | struct Type
function LuaLightUserdata (line 210) | struct Type<const LuaLightUserdata&> {
function LuaUserdata (line 217) | struct Type<LuaUserdata> {
type Type (line 222) | struct Type
function LuaUserdata (line 223) | struct Type<const LuaUserdata&> : public Type<LuaUserdata> {}
function Push (line 225) | inline void Push(lua_State* L, const char* value, int len) { lua_...
function Call (line 243) | static int Call(RT (*func)(), lua_State* L, int /*index*/) {
function Call (line 251) | int Call(RT (*func)(P1), lua_State* L, int index) {
function Call (line 263) | int Call(RT (*func)(P1, P2), lua_State* L, int index) {
function Call (line 277) | int Call(RT (*func)(P1, P2, P3), lua_State* L, int index) {
function Call (line 293) | int Call(RT (*func)(P1, P2, P3, P4), lua_State* L, int index) {
function Call (line 312) | int Call(RT (*func)(P1, P2, P3, P4, P5), lua_State* L, int index) {
function void (line 910) | struct ReturnSpecialization<void> {
function Call (line 1033) | static int Call(void (*func)(P1, P2, P3, P4, P5, P6, P7, P8), lua_State*...
function Call (line 1058) | static int Call(void (*func)(P1, P2, P3, P4, P5, P6, P7, P8, P9), lua_St...
function Call (line 1085) | static int Call(void (*func)(P1, P2, P3, P4, P5, P6, P7, P8, P9, P10), l...
function lua_StateFunctionDispatcher (line 1772) | inline int lua_StateFunctionDispatcher(lua_State* L) {
function namespace (line 1835) | namespace LPCD {
function DirectCallObjectMemberDispatcherHelper (line 1902) | int startIndex>
function DirectCallInPlaceObjectMemberDispatcherHelper (line 1912) | int startIndex>
function PropertyMetatable_newindex (line 1922) | inline int PropertyMetatable_newindex(lua_State* L) {
function PropertyMetatable_index (line 1996) | inline int PropertyMetatable_index(lua_State* L) {
function PropertySet (line 2059) | static int PropertySet(lua_State* L) {
function PropertySet (line 2081) | static int PropertySet(lua_State* L) {
function PropertySet (line 2104) | static int PropertySet(lua_State* L) {
function lpcd_propertymetatable_getfunctions (line 2217) | inline void lpcd_propertymetatable_getfunctions(lua_State* L, int metata...
function namespace (line 2308) | namespace LPCD {
function class (line 2357) | class InPlaceClass {
FILE: Src/LuaPlus/LuaPlusInternal.h
function namespace (line 51) | namespace LuaPlus
FILE: Src/LuaPlus/LuaStackObject.h
function class (line 28) | class LuaStackObject
function namespace (line 220) | namespace LPCD {
FILE: Src/LuaPlus/LuaState.h
function class (line 24) | class LuaState {
function operator (line 390) | operator const LuaState*() const { return m_state; }
function operator (line 391) | operator LuaState*() const { return m_state; }
FILE: Src/LuaPlus/LuaStateCD.h
function namespace (line 16) | namespace LPCD
FILE: Src/LuaPlus/LuaStateOutFile.h
function namespace (line 20) | namespace LuaPlus
function namespace (line 52) | namespace LuaPlus {
FILE: Src/LuaPlus/LuaStateOutString.h
function namespace (line 24) | namespace LuaPlus {
function virtual (line 97) | virtual ~LuaStateOutString()
function virtual (line 110) | virtual void Print(const char* str, ...)
type LineNode (line 156) | struct LineNode
FILE: Src/LuaPlus/LuaState_DumpObject.cpp
function luaL_typerror (line 18) | static int luaL_typerror (lua_State *L, int narg, const char *tname) {
type LuaPlus (line 31) | namespace LuaPlus {
function luaI_addquotednonwidebinary (line 33) | static void luaI_addquotednonwidebinary (LuaStateOutFile& file, const ...
function addquoted (line 95) | static void addquoted (lua_State *L, luaL_Buffer *b, int arg) {
function addquotedbinary (line 125) | void addquotedbinary (lua_State *L, luaL_Buffer *b, int arg) {
function addintlen (line 159) | static void addintlen (char *form) {
function str_format_helper (line 168) | int str_format_helper (luaL_Buffer *b, lua_State *L, int arg) {
function addquoted (line 299) | static void addquoted (lua_State *L, luaL_Buffer *b, int arg) {
function addlenmod (line 348) | static void addlenmod (char *form, const char *lenmod) {
function str_format_helper (line 360) | static int str_format_helper (luaL_Buffer* b, lua_State *L, int arg) {
function LS_LuaFilePrint (line 449) | static int LS_LuaFilePrint(LuaState* state) {
function LS_LuaFileIndent (line 471) | static int LS_LuaFileIndent(LuaState* state) {
type KeyValue (line 512) | struct KeyValue {
function WriteKey (line 531) | static void WriteKey(LuaStateOutFile& file, LuaObject& key) {
function KeyValueCompare (line 564) | static bool KeyValueCompare(const KeyValue& left, const KeyValue &righ...
class SimpleList (line 570) | class SimpleList
method SimpleList (line 573) | SimpleList()
method AddTail (line 592) | void AddTail(E& element)
method E (line 611) | E& GetNext( void*& pos ) throw()
method Sort (line 620) | void Sort(CompareT Compare)
class CNode (line 714) | class CNode
method CNode (line 717) | CNode( E& element ) : m_element( element ) { }
function str_format_helper (line 1282) | int str_format_helper (luaL_Buffer *b, lua_State *L, int arg) {
function luaplus_dumptable (line 1289) | void luaplus_dumptable(lua_State* L, int index)
function luaplus_ls_LuaDumpObject (line 1300) | int luaplus_ls_LuaDumpObject( lua_State* L )
FILE: Src/LuaPlus/LuaTableIterator.h
function namespace (line 19) | namespace LuaPlus
function LuaTableIterator (line 78) | inline LuaTableIterator::~LuaTableIterator() {
function Reset (line 85) | inline void LuaTableIterator::Reset() {
function Invalidate (line 119) | inline void LuaTableIterator::Invalidate() {
function Next (line 132) | inline bool LuaTableIterator::Next() {
FILE: Src/LuaPlus/lua51-luaplus/etc/min.c
function print (line 12) | static int print(lua_State *L)
function main (line 32) | int main(void)
FILE: Src/LuaPlus/lua51-luaplus/etc/noparser.c
function LUAI_FUNC (line 21) | LUAI_FUNC void luaX_init (lua_State *L) {
function LUAI_FUNC (line 25) | LUAI_FUNC Proto *luaY_parser (lua_State *L, ZIO *z, Mbuffer *buff, const...
function LUAI_FUNC (line 37) | LUAI_FUNC int luaU_dump (lua_State* L, const Proto* f, lua_Writer w, voi...
FILE: Src/LuaPlus/lua51-luaplus/src/lapi.c
function TValue (line 50) | static const TValue *luaH_getinthelper (Table *t, int key) {
function TValue (line 59) | static TValue *luaH_setinthelper (lua_State *L, Table *t, int key) {
function TValue (line 70) | static TValue *index2adr (lua_State *L, int idx) {
function Table (line 108) | static Table *getcurrenv (lua_State *L) {
function luaA_pushobject (line 118) | void luaA_pushobject (lua_State *L, const TValue *o) {
function LUA_API (line 124) | LUA_API int lua_checkstack (lua_State *L, int size) {
function LUA_API (line 139) | LUA_API void lua_xmove (lua_State *from, lua_State *to, int n) {
function LUA_API (line 154) | LUA_API void lua_setlevel (lua_State *from, lua_State *to) {
function LUA_API (line 159) | LUA_API lua_CFunction lua_atpanic (lua_State *L, lua_CFunction panicf) {
function LUA_API (line 169) | LUA_API lua_State *lua_newthread (lua_State *L) {
function LUA_API (line 188) | LUA_API int lua_gettop (lua_State *L) {
function LUA_API (line 193) | LUA_API void lua_settop (lua_State *L, int idx) {
function LUA_API (line 209) | LUA_API void lua_remove (lua_State *L, int idx) {
function LUA_API (line 220) | LUA_API void lua_insert (lua_State *L, int idx) {
function LUA_API (line 232) | LUA_API void lua_replace (lua_State *L, int idx) {
function LUA_API (line 257) | LUA_API void lua_pushvalue (lua_State *L, int idx) {
function LUA_API (line 271) | LUA_API int lua_type (lua_State *L, int idx) {
function LUA_API (line 277) | LUA_API const char *lua_typename (lua_State *L, int t) {
function LUA_API (line 283) | LUA_API int lua_iscfunction (lua_State *L, int idx) {
function LUA_API (line 289) | LUA_API int lua_isnumber (lua_State *L, int idx) {
function LUA_API (line 296) | LUA_API int lua_isstring (lua_State *L, int idx) {
function LUA_API (line 302) | LUA_API int lua_isuserdata (lua_State *L, int idx) {
function LUA_API (line 308) | LUA_API int lua_rawequal (lua_State *L, int index1, int index2) {
function LUA_API (line 316) | LUA_API int lua_equal (lua_State *L, int index1, int index2) {
function LUA_API (line 328) | LUA_API int lua_lessthan (lua_State *L, int index1, int index2) {
function LUA_API (line 342) | LUA_API lua_Number lua_tonumber (lua_State *L, int idx) {
function LUA_API (line 352) | LUA_API lua_Integer lua_tointeger (lua_State *L, int idx) {
function LUA_API (line 366) | LUA_API int lua_toboolean (lua_State *L, int idx) {
function LUA_API (line 372) | LUA_API const char *lua_tolstring (lua_State *L, int idx, size_t *len) {
function LUA_API (line 390) | LUA_API size_t lua_objlen (lua_State *L, int idx) {
function LUA_API (line 408) | LUA_API lua_CFunction lua_tocfunction (lua_State *L, int idx) {
function LUA_API (line 414) | LUA_API void *lua_touserdata (lua_State *L, int idx) {
function LUA_API (line 424) | LUA_API lua_State *lua_tothread (lua_State *L, int idx) {
function LUA_API (line 430) | LUA_API const void *lua_topointer (lua_State *L, int idx) {
function LUA_API (line 450) | LUA_API void lua_pushnil (lua_State *L) {
function LUA_API (line 458) | LUA_API void lua_pushnumber (lua_State *L, lua_Number n) {
function LUA_API (line 466) | LUA_API void lua_pushinteger (lua_State *L, lua_Integer n) {
function LUA_API (line 474) | LUA_API void lua_pushlstring (lua_State *L, const char *s, size_t len) {
function LUA_API (line 483) | LUA_API void lua_pushstring (lua_State *L, const char *s) {
function LUA_API (line 491) | LUA_API const char *lua_pushvfstring (lua_State *L, const char *fmt,
function LUA_API (line 502) | LUA_API const char *lua_pushfstring (lua_State *L, const char *fmt, ...) {
function LUA_API (line 515) | LUA_API void lua_pushcclosure (lua_State *L, lua_CFunction fn, int n) {
function LUA_API (line 532) | LUA_API void lua_pushboolean (lua_State *L, int b) {
function LUA_API (line 540) | LUA_API void lua_pushlightuserdata (lua_State *L, void *p) {
function LUA_API (line 548) | LUA_API int lua_pushthread (lua_State *L) {
function LUA_API (line 563) | LUA_API void lua_gettable (lua_State *L, int idx) {
function LUA_API (line 573) | LUA_API void lua_getfield (lua_State *L, int idx, const char *k) {
function LUA_API (line 586) | LUA_API void lua_rawget (lua_State *L, int idx) {
function LUA_API (line 596) | LUA_API void lua_rawgeti (lua_State *L, int idx, int n) {
function LUA_API (line 607) | LUA_API void lua_createtable (lua_State *L, int narray, int nrec) {
function LUA_API (line 616) | LUA_API int lua_getmetatable (lua_State *L, int objindex) {
function LUA_API (line 645) | LUA_API void lua_getfenv (lua_State *L, int idx) {
function LUA_API (line 674) | LUA_API void lua_settable (lua_State *L, int idx) {
function LUA_API (line 686) | LUA_API void lua_setfield (lua_State *L, int idx, const char *k) {
function LUA_API (line 700) | LUA_API void lua_rawset (lua_State *L, int idx) {
function LUA_API (line 713) | LUA_API void lua_rawseti (lua_State *L, int idx, int n) {
function LUA_API (line 726) | LUA_API int lua_setmetatable (lua_State *L, int objindex) {
function LUA_API (line 763) | LUA_API int lua_setfenv (lua_State *L, int idx) {
function LUA_API (line 805) | LUA_API void lua_call (lua_State *L, int nargs, int nresults) {
type CallS (line 821) | struct CallS { /* data to `f_call' */
function f_call (line 827) | static void f_call (lua_State *L, void *ud) {
function LUA_API (line 834) | LUA_API int lua_pcall (lua_State *L, int nargs, int nresults, int errfun...
type CCallS (line 860) | struct CCallS { /* data to `f_Ccall' */
function f_Ccall (line 866) | static void f_Ccall (lua_State *L, void *ud) {
function LUA_API (line 879) | LUA_API int lua_cpcall (lua_State *L, lua_CFunction func, void *ud) {
function LUA_API (line 891) | LUA_API int lua_load (lua_State *L, lua_Reader reader, void *data,
function LUA_API (line 904) | LUA_API int lua_dump (lua_State *L, lua_Writer writer, void *data) {
function LUA_API (line 924) | LUA_API int lua_dumpendian (lua_State *L, lua_Writer writer, void *data,...
function LUA_API (line 940) | LUA_API int lua_status (lua_State *L) {
function LUA_API (line 949) | LUA_API int lua_gc (lua_State *L, int what, int data) {
function LUA_API (line 1014) | LUA_API int lua_error (lua_State *L) {
function LUA_API (line 1023) | LUA_API int lua_next (lua_State *L, int idx) {
function LUA_API (line 1040) | LUA_API void lua_concat (lua_State *L, int n) {
function LUA_API (line 1057) | LUA_API lua_Alloc lua_getallocf (lua_State *L, void **ud) {
function LUA_API (line 1067) | LUA_API void lua_setallocf (lua_State *L, lua_Alloc f, void *ud) {
function LUA_API (line 1075) | LUA_API void *lua_newuserdata (lua_State *L, size_t size) {
function LUA_API (line 1107) | LUA_API const char *lua_getupvalue (lua_State *L, int funcindex, int n) {
function LUA_API (line 1121) | LUA_API const char *lua_setupvalue (lua_State *L, int funcindex, int n) {
function LUA_API (line 1146) | LUA_API int lua_fastrefindex (lua_State *L, int idx) {
function LUA_API (line 1186) | LUA_API int lua_fastref (lua_State *L) {
function LUA_API (line 1196) | LUA_API void lua_fastunref (lua_State *L, int ref) {
function LUA_API (line 1209) | LUA_API void lua_getfastref (lua_State *L, int ref) {
FILE: Src/LuaPlus/lua51-luaplus/src/lauxlib.c
function LUALIB_API (line 43) | LUALIB_API int luaL_argerror (lua_State *L, int narg, const char *extram...
function LUALIB_API (line 61) | LUALIB_API int luaL_typerror (lua_State *L, int narg, const char *tname) {
function tag_error (line 68) | static void tag_error (lua_State *L, int narg, int tag) {
function LUALIB_API (line 73) | LUALIB_API void luaL_where (lua_State *L, int level) {
function LUALIB_API (line 86) | LUALIB_API int luaL_error (lua_State *L, const char *fmt, ...) {
function LUALIB_API (line 99) | LUALIB_API int luaL_checkoption (lua_State *L, int narg, const char *def,
function LUALIB_API (line 112) | LUALIB_API int luaL_newmetatable (lua_State *L, const char *tname) {
function LUALIB_API (line 124) | LUALIB_API void *luaL_checkudata (lua_State *L, int ud, const char *tnam...
function LUALIB_API (line 140) | LUALIB_API void luaL_checkstack (lua_State *L, int space, const char *me...
function LUALIB_API (line 146) | LUALIB_API void luaL_checktype (lua_State *L, int narg, int t) {
function LUALIB_API (line 152) | LUALIB_API void luaL_checkany (lua_State *L, int narg) {
function LUALIB_API (line 158) | LUALIB_API const char *luaL_checklstring (lua_State *L, int narg, size_t...
function LUALIB_API (line 165) | LUALIB_API const char *luaL_optlstring (lua_State *L, int narg,
function LUALIB_API (line 176) | LUALIB_API lua_Number luaL_checknumber (lua_State *L, int narg) {
function LUALIB_API (line 184) | LUALIB_API lua_Number luaL_optnumber (lua_State *L, int narg, lua_Number...
function LUALIB_API (line 189) | LUALIB_API lua_Integer luaL_checkinteger (lua_State *L, int narg) {
function LUALIB_API (line 197) | LUALIB_API lua_Integer luaL_optinteger (lua_State *L, int narg,
function LUALIB_API (line 203) | LUALIB_API int luaL_getmetafield (lua_State *L, int obj, const char *eve...
function LUALIB_API (line 219) | LUALIB_API int luaL_callmeta (lua_State *L, int obj, const char *event) {
function LUALIB_API (line 229) | LUALIB_API void (luaL_register) (lua_State *L, const char *libname,
function libsize (line 235) | static int libsize (const luaL_Reg *l) {
function LUALIB_API (line 242) | LUALIB_API void luaI_openlib (lua_State *L, const char *libname,
function checkint (line 280) | static int checkint (lua_State *L, int topop) {
function getsizes (line 287) | static void getsizes (lua_State *L) {
function LUALIB_API (line 302) | LUALIB_API void luaL_setn (lua_State *L, int t, int n) {
function LUALIB_API (line 321) | LUALIB_API int luaL_getn (lua_State *L, int t) {
function LUALIB_API (line 340) | LUALIB_API const char *luaL_gsub (lua_State *L, const char *s, const cha...
function LUALIB_API (line 357) | LUALIB_API const char *luaL_findtable (lua_State *L, int idx,
function emptybuffer (line 398) | static int emptybuffer (luaL_Buffer *B) {
function adjuststack (line 410) | static void adjuststack (luaL_Buffer *B) {
function LUALIB_API (line 429) | LUALIB_API char *luaL_prepbuffer (luaL_Buffer *B) {
function LUALIB_API (line 436) | LUALIB_API void luaL_addlstring (luaL_Buffer *B, const char *s, size_t l) {
function LUALIB_API (line 442) | LUALIB_API void luaL_addstring (luaL_Buffer *B, const char *s) {
function LUALIB_API (line 447) | LUALIB_API void luaL_pushresult (luaL_Buffer *B) {
function LUALIB_API (line 454) | LUALIB_API void luaL_addvalue (luaL_Buffer *B) {
function LUALIB_API (line 472) | LUALIB_API void luaL_buffinit (lua_State *L, luaL_Buffer *B) {
function LUALIB_API (line 481) | LUALIB_API int luaL_ref (lua_State *L, int t) {
function LUALIB_API (line 504) | LUALIB_API void luaL_unref (lua_State *L, int t, int ref) {
type LoadF (line 522) | typedef struct LoadF {
function errfile (line 543) | static int errfile (lua_State *L, const char *what, int fnameindex) {
type LoadS (line 597) | typedef struct LoadS {
function LUALIB_API (line 613) | LUALIB_API int luaL_loadbuffer (lua_State *L, const char *buff, size_t s...
function LUALIB_API (line 622) | LUALIB_API int (luaL_loadstring) (lua_State *L, const char *s) {
function panic (line 643) | static int panic (lua_State *L) {
function LUALIB_API (line 651) | LUALIB_API lua_State *luaL_newstate (void) {
FILE: Src/LuaPlus/lua51-luaplus/src/lauxlib.h
type luaL_Reg (line 35) | typedef struct luaL_Reg {
type luaL_Buffer (line 129) | typedef struct luaL_Buffer {
FILE: Src/LuaPlus/lua51-luaplus/src/lbaselib.c
function luaB_print (line 31) | static int luaB_print (lua_State *L) {
function luaB_tonumber (line 53) | static int luaB_tonumber (lua_State *L) {
function luaB_error (line 81) | static int luaB_error (lua_State *L) {
function luaB_getmetatable (line 93) | static int luaB_getmetatable (lua_State *L) {
function luaB_setmetatable (line 104) | static int luaB_setmetatable (lua_State *L) {
function getfunc (line 117) | static void getfunc (lua_State *L, int opt) {
function luaB_getfenv (line 133) | static int luaB_getfenv (lua_State *L) {
function luaB_setfenv (line 143) | static int luaB_setfenv (lua_State *L) {
function luaB_rawequal (line 161) | static int luaB_rawequal (lua_State *L) {
function luaB_rawget (line 169) | static int luaB_rawget (lua_State *L) {
function luaB_rawset (line 177) | static int luaB_rawset (lua_State *L) {
function luaB_gcinfo (line 187) | static int luaB_gcinfo (lua_State *L) {
function luaB_collectgarbage (line 193) | static int luaB_collectgarbage (lua_State *L) {
function luaB_type (line 219) | static int luaB_type (lua_State *L) {
function luaB_next (line 226) | static int luaB_next (lua_State *L) {
function luaB_pairs (line 238) | static int luaB_pairs (lua_State *L) {
function ipairsaux (line 247) | static int ipairsaux (lua_State *L) {
function luaB_ipairs (line 257) | static int luaB_ipairs (lua_State *L) {
function load_aux (line 266) | static int load_aux (lua_State *L, int status) {
function luaB_loadstring (line 277) | static int luaB_loadstring (lua_State *L) {
function luaB_loadfile (line 285) | static int luaB_loadfile (lua_State *L) {
function luaB_load (line 315) | static int luaB_load (lua_State *L) {
function luaB_dofile (line 325) | static int luaB_dofile (lua_State *L) {
function luaB_assert (line 334) | static int luaB_assert (lua_State *L) {
function luaB_unpack (line 342) | static int luaB_unpack (lua_State *L) {
function luaB_select (line 358) | static int luaB_select (lua_State *L) {
function luaB_pcall (line 374) | static int luaB_pcall (lua_State *L) {
function luaB_xpcall (line 384) | static int luaB_xpcall (lua_State *L) {
function luaB_tostring (line 400) | static int luaB_tostring (lua_State *L) {
function luaB_newproxy (line 431) | static int luaB_newproxy (lua_State *L) {
function costatus (line 510) | static int costatus (lua_State *L, lua_State *co) {
function luaB_costatus (line 530) | static int luaB_costatus (lua_State *L) {
function auxresume (line 538) | static int auxresume (lua_State *L, lua_State *co, int narg) {
function luaB_coresume (line 563) | static int luaB_coresume (lua_State *L) {
function luaB_auxwrap (line 581) | static int luaB_auxwrap (lua_State *L) {
function luaB_cocreate (line 596) | static int luaB_cocreate (lua_State *L) {
function luaB_cowrap (line 606) | static int luaB_cowrap (lua_State *L) {
function luaB_yield (line 613) | static int luaB_yield (lua_State *L) {
function luaB_corunning (line 618) | static int luaB_corunning (lua_State *L) {
function auxopen (line 638) | static void auxopen (lua_State *L, const char *name,
function base_open (line 646) | static void base_open (lua_State *L) {
function LUALIB_API (line 668) | LUALIB_API int luaopen_base (lua_State *L) {
FILE: Src/LuaPlus/lua51-luaplus/src/lcode.c
function isnumeral (line 30) | static int isnumeral(expdesc *e) {
function luaK_nil (line 35) | void luaK_nil (FuncState *fs, int from, int n) {
function luaK_jump (line 59) | int luaK_jump (FuncState *fs) {
function luaK_ret (line 69) | void luaK_ret (FuncState *fs, int first, int nret) {
function condjump (line 74) | static int condjump (FuncState *fs, OpCode op, int A, int B, int C) {
function fixjump (line 80) | static void fixjump (FuncState *fs, int pc, int dest) {
function luaK_getlabel (line 94) | int luaK_getlabel (FuncState *fs) {
function getjump (line 100) | static int getjump (FuncState *fs, int pc) {
function Instruction (line 109) | static Instruction *getjumpcontrol (FuncState *fs, int pc) {
function need_value (line 122) | static int need_value (FuncState *fs, int list) {
function patchtestreg (line 131) | static int patchtestreg (FuncState *fs, int node, int reg) {
function removevalues (line 144) | static void removevalues (FuncState *fs, int list) {
function patchlistaux (line 150) | static void patchlistaux (FuncState *fs, int list, int vtarget, int reg,
function dischargejpc (line 163) | static void dischargejpc (FuncState *fs) {
function luaK_patchlist (line 169) | void luaK_patchlist (FuncState *fs, int list, int target) {
function luaK_patchtohere (line 179) | void luaK_patchtohere (FuncState *fs, int list) {
function luaK_concat (line 185) | void luaK_concat (FuncState *fs, int *l1, int l2) {
function luaK_checkstack (line 199) | void luaK_checkstack (FuncState *fs, int n) {
function luaK_reserveregs (line 209) | void luaK_reserveregs (FuncState *fs, int n) {
function freereg (line 215) | static void freereg (FuncState *fs, int reg) {
function freeexp (line 223) | static void freeexp (FuncState *fs, expdesc *e) {
function addk (line 229) | static int addk (FuncState *fs, TValue *k, TValue *v) {
function luaK_stringK (line 256) | int luaK_stringK (FuncState *fs, TString *s) {
function luaK_numberK (line 263) | int luaK_numberK (FuncState *fs, lua_Number r) {
function boolK (line 270) | static int boolK (FuncState *fs, int b) {
function nilK (line 277) | static int nilK (FuncState *fs) {
function luaK_setreturns (line 286) | void luaK_setreturns (FuncState *fs, expdesc *e, int nresults) {
function luaK_setoneret (line 298) | void luaK_setoneret (FuncState *fs, expdesc *e) {
function luaK_dischargevars (line 310) | void luaK_dischargevars (FuncState *fs, expdesc *e) {
function code_label (line 343) | static int code_label (FuncState *fs, int A, int b, int jump) {
function discharge2reg (line 349) | static void discharge2reg (FuncState *fs, expdesc *e, int reg) {
function discharge2anyreg (line 388) | static void discharge2anyreg (FuncState *fs, expdesc *e) {
function exp2reg (line 396) | static void exp2reg (FuncState *fs, expdesc *e, int reg) {
function luaK_exp2nextreg (line 420) | void luaK_exp2nextreg (FuncState *fs, expdesc *e) {
function luaK_exp2anyreg (line 428) | int luaK_exp2anyreg (FuncState *fs, expdesc *e) {
function luaK_exp2val (line 442) | void luaK_exp2val (FuncState *fs, expdesc *e) {
function luaK_exp2RK (line 450) | int luaK_exp2RK (FuncState *fs, expdesc *e) {
function luaK_storevar (line 478) | void luaK_storevar (FuncState *fs, expdesc *var, expdesc *ex) {
function luaK_self (line 509) | void luaK_self (FuncState *fs, expdesc *e, expdesc *key) {
function invertjump (line 522) | static void invertjump (FuncState *fs, expdesc *e) {
function jumponcond (line 530) | static int jumponcond (FuncState *fs, expdesc *e, int cond) {
function luaK_goiftrue (line 545) | void luaK_goiftrue (FuncState *fs, expdesc *e) {
function luaK_goiffalse (line 569) | static void luaK_goiffalse (FuncState *fs, expdesc *e) {
function codenot (line 592) | static void codenot (FuncState *fs, expdesc *e) {
function luaK_indexed (line 627) | void luaK_indexed (FuncState *fs, expdesc *t, expdesc *k) {
function constfolding (line 633) | static int constfolding (OpCode op, expdesc *e1, expdesc *e2) {
function codearith (line 659) | static void codearith (FuncState *fs, OpCode op, expdesc *e1, expdesc *e...
function codecomp (line 679) | static void codecomp (FuncState *fs, OpCode op, int cond, expdesc *e1,
function luaK_prefix (line 695) | void luaK_prefix (FuncState *fs, UnOpr op, expdesc *e) {
function luaK_infix (line 716) | void luaK_infix (FuncState *fs, BinOpr op, expdesc *v) {
function luaK_posfix (line 743) | void luaK_posfix (FuncState *fs, BinOpr op, expdesc *e1, expdesc *e2) {
function luaK_fixline (line 790) | void luaK_fixline (FuncState *fs, int line) {
function luaK_code (line 795) | static int luaK_code (FuncState *fs, Instruction i, int line) {
function luaK_codeABC (line 822) | int luaK_codeABC (FuncState *fs, OpCode o, int a, int b, int c) {
function luaK_codeABx (line 830) | int luaK_codeABx (FuncState *fs, OpCode o, int a, unsigned int bc) {
function luaK_setlist (line 837) | void luaK_setlist (FuncState *fs, int base, int nelems, int tostore) {
FILE: Src/LuaPlus/lua51-luaplus/src/lcode.h
type BinOpr (line 26) | typedef enum BinOpr {
type UnOpr (line 36) | typedef enum UnOpr { OPR_MINUS, OPR_NOT, OPR_LEN, OPR_NOUNOPR } UnOpr;
FILE: Src/LuaPlus/lua51-luaplus/src/ldblib.c
function db_getregistry (line 22) | static int db_getregistry (lua_State *L) {
function db_getmetatable (line 28) | static int db_getmetatable (lua_State *L) {
function db_setmetatable (line 37) | static int db_setmetatable (lua_State *L) {
function db_getfenv (line 47) | static int db_getfenv (lua_State *L) {
function db_setfenv (line 54) | static int db_setfenv (lua_State *L) {
function settabss (line 64) | static void settabss (lua_State *L, const char *i, const char *v) {
function settabsi (line 70) | static void settabsi (lua_State *L, const char *i, int v) {
function lua_State (line 76) | static lua_State *getthread (lua_State *L, int *arg) {
function treatstackoption (line 88) | static void treatstackoption (lua_State *L, lua_State *L1, const char *f...
function db_getinfo (line 99) | static int db_getinfo (lua_State *L) {
function db_getlocal (line 144) | static int db_getlocal (lua_State *L) {
function db_setlocal (line 165) | static int db_setlocal (lua_State *L) {
function auxupvalue (line 179) | static int auxupvalue (lua_State *L, int get) {
function db_getupvalue (line 192) | static int db_getupvalue (lua_State *L) {
function db_setupvalue (line 197) | static int db_setupvalue (lua_State *L) {
function hookf (line 207) | static void hookf (lua_State *L, lua_Debug *ar) {
function makemask (line 225) | static int makemask (const char *smask, int count) {
function gethooktable (line 245) | static void gethooktable (lua_State *L) {
function db_sethook (line 258) | static int db_sethook (lua_State *L) {
function db_gethook (line 282) | static int db_gethook (lua_State *L) {
function db_debug (line 302) | static int db_debug (lua_State *L) {
function db_errorfb (line 322) | static int db_errorfb (lua_State *L) {
function LUALIB_API (line 394) | LUALIB_API int luaopen_debug (lua_State *L) {
FILE: Src/LuaPlus/lua51-luaplus/src/ldebug.c
function currentpc (line 36) | static int currentpc (lua_State *L, CallInfo *ci) {
function currentline (line 44) | static int currentline (lua_State *L, CallInfo *ci) {
function LUA_API (line 56) | LUA_API int lua_sethook (lua_State *L, lua_Hook func, int mask, int coun...
function LUA_API (line 69) | LUA_API lua_Hook lua_gethook (lua_State *L) {
function LUA_API (line 74) | LUA_API int lua_gethookmask (lua_State *L) {
function LUA_API (line 79) | LUA_API int lua_gethookcount (lua_State *L) {
function LUA_API (line 84) | LUA_API int lua_getstack (lua_State *L, int level, lua_Debug *ar) {
function Proto (line 107) | static Proto *getluaproto (CallInfo *ci) {
function LUA_API (line 127) | LUA_API const char *lua_getlocal (lua_State *L, const lua_Debug *ar, int...
function LUA_API (line 138) | LUA_API const char *lua_setlocal (lua_State *L, const lua_Debug *ar, int...
function LUA_API (line 151) | LUA_API int lua_getvararg (lua_State *L, const lua_Debug *ar, int n) {
function funcinfo (line 171) | static void funcinfo (lua_Debug *ar, Closure *cl) {
function info_tailcall (line 188) | static void info_tailcall (lua_Debug *ar) {
function collectvalidlines (line 198) | static void collectvalidlines (lua_State *L, Closure *f) {
function auxgetinfo (line 214) | static int auxgetinfo (lua_State *L, const char *what, lua_Debug *ar,
function LUA_API (line 253) | LUA_API int lua_getinfo (lua_State *L, const char *what, lua_Debug *ar) {
function precheck (line 297) | static int precheck (const Proto *pt) {
function luaG_checkopenop (line 311) | int luaG_checkopenop (Instruction i) {
function checkArgMode (line 325) | static int checkArgMode (const Proto *pt, int r, enum OpArgMask mode) {
function Instruction (line 338) | static Instruction symbexec (const Proto *pt, int lastpc, int reg) {
function luaG_checkcode (line 505) | int luaG_checkcode (const Proto *pt) {
function isinstack (line 580) | static int isinstack (CallInfo *ci, const TValue *o) {
function luaG_typeerror (line 588) | void luaG_typeerror (lua_State *L, const TValue *o, const char *op) {
function luaG_concaterror (line 602) | void luaG_concaterror (lua_State *L, StkId p1, StkId p2) {
function luaG_aritherror (line 609) | void luaG_aritherror (lua_State *L, const TValue *p1, const TValue *p2) {
function luaG_ordererror (line 617) | int luaG_ordererror (lua_State *L, const TValue *p1, const TValue *p2) {
function addinfo (line 628) | static void addinfo (lua_State *L, const char *msg) {
function luaG_errormsg (line 639) | void luaG_errormsg (lua_State *L) {
function luaG_runerror (line 656) | void luaG_runerror (lua_State *L, const char *fmt, ...) {
FILE: Src/LuaPlus/lua51-luaplus/src/ldo.c
type lua_longjmp (line 44) | struct lua_longjmp {
function luaD_seterrorobj (line 51) | void luaD_seterrorobj (lua_State *L, int errcode, StkId oldtop) {
function restore_stack_limit (line 71) | static void restore_stack_limit (lua_State *L) {
function resetstack (line 81) | static void resetstack (lua_State *L, int status) {
function luaD_throw (line 94) | void luaD_throw (lua_State *L, int errcode) {
function luaD_rawrunprotected (line 111) | int luaD_rawrunprotected (lua_State *L, Pfunc f, void *ud) {
function correctstack (line 126) | static void correctstack (lua_State *L, TValue *oldstack) {
function luaD_reallocstack (line 141) | void luaD_reallocstack (lua_State *L, int newsize) {
function luaD_reallocCI (line 152) | void luaD_reallocCI (lua_State *L, int newsize) {
function luaD_growstack (line 161) | void luaD_growstack (lua_State *L, int n) {
function CallInfo (line 169) | static CallInfo *growCI (lua_State *L) {
function luaD_callhook (line 181) | void luaD_callhook (lua_State *L, int event, int line) {
function StkId (line 208) | static StkId adjust_varargs (lua_State *L, Proto *p, int actual) {
function StkId (line 244) | static StkId tryfuncTM (lua_State *L, StkId func) {
function luaD_precall (line 265) | int luaD_precall (lua_State *L, StkId func, int nresults) {
function StkId (line 332) | static StkId callrethooks (lua_State *L, StkId firstResult) {
function luaD_poscall (line 343) | int luaD_poscall (lua_State *L, StkId firstResult) {
function luaD_call (line 370) | void luaD_call (lua_State *L, StkId func, int nResults) {
function resume (line 384) | static void resume (lua_State *L, void *ud) {
function resume_error (line 409) | static int resume_error (lua_State *L, const char *msg) {
function LUA_API (line 418) | LUA_API int lua_resume (lua_State *L, int nargs) {
function LUA_API (line 444) | LUA_API int lua_yield (lua_State *L, int nresults) {
function luaD_pcall (line 456) | int luaD_pcall (lua_State *L, Pfunc func, void *u,
type SParser (line 485) | struct SParser { /* data to `f_parser' */
function f_parser (line 491) | static void f_parser (lua_State *L, void *ud) {
function luaD_protectedparser (line 509) | int luaD_protectedparser (lua_State *L, ZIO *z, const char *name) {
FILE: Src/LuaPlus/lua51-luaplus/src/ldump.c
type DumpState (line 18) | typedef struct {
function DumpBlock (line 39) | static void DumpBlock(const void* b, size_t size, DumpState* D)
function DumpEndianBlock (line 51) | static void DumpEndianBlock(const void* b, size_t size, DumpState* D)
function DumpChar (line 75) | static void DumpChar(int y, DumpState* D)
function DumpInt (line 81) | static void DumpInt(int x, DumpState* D)
function DumpNumber (line 86) | static void DumpNumber(lua_Number x, DumpState* D)
function DumpVector (line 91) | static void DumpVector(const void* b, size_t n, size_t size, DumpState* D)
function DumpString (line 124) | static void DumpString(const TString* s, DumpState* D)
function DumpConstants (line 143) | static void DumpConstants(const Proto* f, DumpState* D)
function DumpDebug (line 174) | static void DumpDebug(const Proto* f, DumpState* D)
function DumpFunction (line 192) | static void DumpFunction(const Proto* f, const TString* p, DumpState* D)
function DumpHeader (line 206) | static void DumpHeader(DumpState* D)
function doendian (line 223) | static int doendian(int c)
FILE: Src/LuaPlus/lua51-luaplus/src/lfunc.c
function Closure (line 23) | Closure *luaF_newCclosure (lua_State *L, int nelems, Table *e) {
function Closure (line 42) | Closure *luaF_newLclosure (lua_State *L, int nelems, Table *e) {
function UpVal (line 62) | UpVal *luaF_newupval (lua_State *L) {
function UpVal (line 80) | UpVal *luaF_findupval (lua_State *L, StkId level) {
function unlinkupval (line 115) | static void unlinkupval (UpVal *uv) {
function luaF_freeupval (line 122) | void luaF_freeupval (lua_State *L, UpVal *uv) {
function luaF_close (line 129) | void luaF_close (lua_State *L, StkId level) {
function Proto (line 148) | Proto *luaF_newproto (lua_State *L) {
function luaF_freeproto (line 183) | void luaF_freeproto (lua_State *L, Proto *f) {
function luaF_freeclosure (line 194) | void luaF_freeclosure (lua_State *L, Closure *c) {
FILE: Src/LuaPlus/lua51-luaplus/src/lgc.c
function removeentry (line 62) | static void removeentry (Node *n) {
function reallymarkobject (line 69) | static void reallymarkobject (global_State *g, GCObject *o) {
function marktmu (line 115) | static void marktmu (global_State *g) {
function luaC_separateudata (line 128) | size_t luaC_separateudata (lua_State *L, int all) {
function traversetable (line 158) | static int traversetable (global_State *g, Table *h) {
function traverseproto (line 203) | static void traverseproto (global_State *g, Proto *f) {
function traverseclosure (line 224) | static void traverseclosure (global_State *g, Closure *cl) {
function checkstacksizes (line 241) | static void checkstacksizes (lua_State *L, StkId max) {
function traversestack (line 256) | static void traversestack (global_State *g, lua_State *l) {
function l_mem (line 277) | static l_mem propagatemark (global_State *g) {
function propagateall (line 323) | static size_t propagateall (global_State *g) {
function iscleared (line 337) | static int iscleared (const TValue *o, int iskey) {
function cleartable (line 351) | static void cleartable (GCObject *l) {
function freeobj (line 378) | static void freeobj (lua_State *L, GCObject *o) {
function GCObject (line 407) | static GCObject **sweeplist (lua_State *L, GCObject **p, lu_mem count) {
function checkSizes (line 431) | static void checkSizes (lua_State *L) {
function GCTM (line 445) | static void GCTM (lua_State *L) {
function luaC_callGCTM (line 477) | void luaC_callGCTM (lua_State *L) {
function luaC_freeall (line 483) | void luaC_freeall (lua_State *L) {
function markmt (line 493) | static void markmt (global_State *g) {
function markroot (line 501) | static void markroot (lua_State *L) {
function remarkupvals (line 518) | static void remarkupvals (global_State *g) {
function atomic (line 528) | static void atomic (lua_State *L) {
function l_mem (line 559) | static l_mem singlestep (lua_State *L) {
function luaC_step (line 613) | void luaC_step (lua_State *L) {
function luaC_fullgc (line 638) | void luaC_fullgc (lua_State *L) {
function luaC_barrierf (line 664) | void luaC_barrierf (lua_State *L, GCObject *o, GCObject *v) {
function luaC_barrierback (line 677) | void luaC_barrierback (lua_State *L, Table *t) {
function luaC_link (line 688) | void luaC_link (lua_State *L, GCObject *o, lu_byte tt) {
function luaC_linkupval (line 697) | void luaC_linkupval (lua_State *L, UpVal *uv) {
FILE: Src/LuaPlus/lua51-luaplus/src/linit.c
function LUALIB_API (line 30) | LUALIB_API void luaL_openlibs (lua_State *L) {
FILE: Src/LuaPlus/lua51-luaplus/src/liolib.c
function pushresult (line 30) | static int pushresult (lua_State *L, int i, const char *filename) {
function fileerror (line 48) | static void fileerror (lua_State *L, int arg, const char *filename) {
function io_type (line 57) | static int io_type (lua_State *L) {
function FILE (line 72) | static FILE *tofile (lua_State *L) {
function FILE (line 86) | static FILE **newfile (lua_State *L) {
function io_noclose (line 98) | static int io_noclose (lua_State *L) {
function io_pclose (line 108) | static int io_pclose (lua_State *L) {
function io_fclose (line 119) | static int io_fclose (lua_State *L) {
function aux_close (line 127) | static int aux_close (lua_State *L) {
function io_close (line 134) | static int io_close (lua_State *L) {
function io_gc (line 142) | static int io_gc (lua_State *L) {
function io_tostring (line 151) | static int io_tostring (lua_State *L) {
function io_open (line 161) | static int io_open (lua_State *L) {
function io_popen (line 174) | static int io_popen (lua_State *L) {
function io_tmpfile (line 183) | static int io_tmpfile (lua_State *L) {
function FILE (line 194) | static FILE *getiofile (lua_State *L, int findex) {
function g_iofile (line 204) | static int g_iofile (lua_State *L, int f, const char *mode) {
function io_input (line 225) | static int io_input (lua_State *L) {
function io_output (line 230) | static int io_output (lua_State *L) {
function aux_lines (line 238) | static void aux_lines (lua_State *L, int idx, int toclose) {
function f_lines (line 245) | static int f_lines (lua_State *L) {
function io_lines (line 252) | static int io_lines (lua_State *L) {
function read_number (line 277) | static int read_number (lua_State *L, FILE *f) {
function test_eof (line 290) | static int test_eof (lua_State *L, FILE *f) {
function read_line (line 298) | static int read_line (lua_State *L, FILE *f) {
function read_chars (line 320) | static int read_chars (lua_State *L, FILE *f, size_t n) {
function g_read (line 338) | static int g_read (lua_State *L, FILE *f, int first) {
function io_read (line 385) | static int io_read (lua_State *L) {
function f_read (line 390) | static int f_read (lua_State *L) {
function io_readline (line 395) | static int io_readline (lua_State *L) {
function g_write (line 417) | static int g_write (lua_State *L, FILE *f, int arg) {
function io_write (line 436) | static int io_write (lua_State *L) {
function f_write (line 441) | static int f_write (lua_State *L) {
function f_seek (line 446) | static int f_seek (lua_State *L) {
function f_setvbuf (line 462) | static int f_setvbuf (lua_State *L) {
function io_flush (line 474) | static int io_flush (lua_State *L) {
function f_flush (line 479) | static int f_flush (lua_State *L) {
function createmeta (line 514) | static void createmeta (lua_State *L) {
function createstdfile (line 522) | static void createstdfile (lua_State *L, FILE *f, int k, const char *fna...
function newfenv (line 534) | static void newfenv (lua_State *L, lua_CFunction cls) {
function LUALIB_API (line 541) | LUALIB_API int luaopen_io (lua_State *L) {
FILE: Src/LuaPlus/lua51-luaplus/src/llex.c
function save (line 51) | static void save (LexState *ls, int c) {
function luaX_init (line 64) | void luaX_init (lua_State *L) {
function luaX_lexerror (line 102) | void luaX_lexerror (LexState *ls, const char *msg, int token) {
function luaX_syntaxerror (line 112) | void luaX_syntaxerror (LexState *ls, const char *msg) {
function TString (line 117) | TString *luaX_newstring (LexState *ls, const char *str, size_t l) {
function inclinenumber (line 129) | static void inclinenumber (LexState *ls) {
function luaX_setinput (line 140) | void luaX_setinput (lua_State *L, LexState *ls, ZIO *z, TString *source) {
function check_next (line 163) | static int check_next (LexState *ls, const char *set) {
function buffreplace (line 171) | static void buffreplace (LexState *ls, char from, char to) {
function trydecpoint (line 179) | static void trydecpoint (LexState *ls, SemInfo *seminfo) {
function read_numeral (line 194) | static void read_numeral (LexState *ls, SemInfo *seminfo) {
function skip_sep (line 210) | static int skip_sep (LexState *ls) {
function read_long_string (line 223) | static void read_long_string (LexState *ls, SemInfo *seminfo, int sep) {
function read_string (line 278) | static void read_string (LexState *ls, int del, SemInfo *seminfo) {
function llex (line 357) | static int llex (LexState *ls, SemInfo *seminfo) {
function luaX_next (line 471) | void luaX_next (LexState *ls) {
function luaX_lookahead (line 482) | void luaX_lookahead (LexState *ls) {
FILE: Src/LuaPlus/lua51-luaplus/src/llex.h
type RESERVED (line 24) | enum RESERVED {
type SemInfo (line 43) | typedef union {
type Token (line 49) | typedef struct Token {
type LexState (line 55) | typedef struct LexState {
FILE: Src/LuaPlus/lua51-luaplus/src/llimits.h
type LUAI_UINT32 (line 18) | typedef LUAI_UINT32 lu_int32;
type LUAI_UMEM (line 20) | typedef LUAI_UMEM lu_mem;
type LUAI_MEM (line 22) | typedef LUAI_MEM l_mem;
type lu_byte (line 27) | typedef unsigned char lu_byte;
type LUAI_USER_ALIGNMENT_T (line 47) | typedef LUAI_USER_ALIGNMENT_T L_Umaxalign;
type LUAI_UACNUMBER (line 51) | typedef LUAI_UACNUMBER l_uacNumber;
type lu_int32 (line 88) | typedef lu_int32 Instruction;
FILE: Src/LuaPlus/lua51-luaplus/src/lmathlib.c
function math_abs (line 26) | static int math_abs (lua_State *L) {
function math_sin (line 31) | static int math_sin (lua_State *L) {
function math_sinh (line 36) | static int math_sinh (lua_State *L) {
function math_cos (line 41) | static int math_cos (lua_State *L) {
function math_cosh (line 46) | static int math_cosh (lua_State *L) {
function math_tan (line 51) | static int math_tan (lua_State *L) {
function math_tanh (line 56) | static int math_tanh (lua_State *L) {
function math_asin (line 61) | static int math_asin (lua_State *L) {
function math_acos (line 66) | static int math_acos (lua_State *L) {
function math_atan (line 71) | static int math_atan (lua_State *L) {
function math_atan2 (line 76) | static int math_atan2 (lua_State *L) {
function math_ceil (line 81) | static int math_ceil (lua_State *L) {
function math_floor (line 86) | static int math_floor (lua_State *L) {
function math_fmod (line 91) | static int math_fmod (lua_State *L) {
function math_modf (line 96) | static int math_modf (lua_State *L) {
function math_sqrt (line 104) | static int math_sqrt (lua_State *L) {
function math_pow (line 109) | static int math_pow (lua_State *L) {
function math_log (line 114) | static int math_log (lua_State *L) {
function math_log10 (line 119) | static int math_log10 (lua_State *L) {
function math_exp (line 124) | static int math_exp (lua_State *L) {
function math_deg (line 129) | static int math_deg (lua_State *L) {
function math_rad (line 134) | static int math_rad (lua_State *L) {
function math_frexp (line 139) | static int math_frexp (lua_State *L) {
function math_ldexp (line 146) | static int math_ldexp (lua_State *L) {
function math_min (line 153) | static int math_min (lua_State *L) {
function math_max (line 167) | static int math_max (lua_State *L) {
function math_random (line 181) | static int math_random (lua_State *L) {
function math_randomseed (line 209) | static int math_randomseed (lua_State *L) {
function LUALIB_API (line 251) | LUALIB_API int luaopen_math (lua_State *L) {
FILE: Src/LuaPlus/lua51-luaplus/src/loadlib.c
function lp_loadlocalconfig (line 68) | static void lp_loadlocalconfig(lua_State *L) {
function setprogdir (line 109) | static void setprogdir (lua_State *L) {
function ll_unloadlib (line 133) | static void ll_unloadlib (void *lib) {
function lua_CFunction (line 145) | static lua_CFunction ll_sym (lua_State *L, void *lib, const char *sym) {
function lp_loadlocalconfig (line 166) | static void lp_loadlocalconfig(lua_State *L) {
function pusherror (line 262) | static void pusherror (lua_State *L) {
function ll_unloadlib (line 272) | static void ll_unloadlib (void *lib) {
function lua_CFunction (line 305) | static lua_CFunction ll_sym (lua_State *L, void *lib, const char *sym) {
function lp_loadlocalconfig (line 335) | static void lp_loadlocalconfig(lua_State *L) {
function setprogdir (line 377) | static void setprogdir (lua_State *L) {
function pusherror (line 399) | static void pusherror (lua_State *L) {
function ll_unloadlib (line 426) | static void ll_unloadlib (void *lib) {
function lua_CFunction (line 452) | static lua_CFunction ll_sym (lua_State *L, void *lib, const char *sym) {
function ll_unloadlib (line 479) | static void ll_unloadlib (void *lib) {
function lua_CFunction (line 491) | static lua_CFunction ll_sym (lua_State *L, void *lib, const char *sym) {
function gctm (line 526) | static int gctm (lua_State *L) {
function ll_loadfunc (line 534) | static int ll_loadfunc (lua_State *L, const char *path, const char *sym) {
function ll_loadlib (line 549) | static int ll_loadlib (lua_State *L) {
function readable (line 572) | static int readable (const char *filename) {
function loaderror (line 614) | static void loaderror (lua_State *L, const char *filename) {
function loader_Lua (line 620) | static int loader_Lua (lua_State *L) {
function loader_C (line 642) | static int loader_C (lua_State *L) {
function loader_Croot (line 654) | static int loader_Croot (lua_State *L) {
function loader_preload (line 675) | static int loader_preload (lua_State *L) {
function ll_require (line 691) | static int ll_require (lua_State *L) {
function setfenv (line 747) | static void setfenv (lua_State *L) {
function dooptions (line 759) | static void dooptions (lua_State *L, int n) {
function modinit (line 769) | static void modinit (lua_State *L, const char *modname) {
function ll_module (line 784) | static int ll_module (lua_State *L) {
function ll_seeall (line 812) | static int ll_seeall (lua_State *L) {
function setpath (line 832) | static void setpath (lua_State *L, const char *fieldname, const char *en...
function LUALIB_API (line 871) | LUALIB_API int luaopen_package (lua_State *L) {
FILE: Src/LuaPlus/lua51-luaplus/src/lobject.c
function luaO_int2fb (line 35) | int luaO_int2fb (unsigned int x) {
function luaO_fb2int (line 47) | int luaO_fb2int (int x) {
function luaO_log2 (line 54) | int luaO_log2 (unsigned int x) {
function luaO_rawequalObj (line 72) | int luaO_rawequalObj (const TValue *t1, const TValue *t2) {
function luaO_str2d (line 90) | int luaO_str2d (const char *s, lua_Number *result) {
function pushstr (line 104) | static void pushstr (lua_State *L, const char *str) {
function luaO_chunkid (line 182) | void luaO_chunkid (char *out, const char *source, size_t bufflen) {
FILE: Src/LuaPlus/lua51-luaplus/src/lobject.h
type GCObject (line 36) | typedef union GCObject GCObject;
type GCheader (line 49) | typedef struct GCheader {
type Value (line 60) | typedef union {
type Value (line 76) | typedef union {
type TValue (line 93) | typedef struct lua_TValue {
type TValuefields (line 133) | typedef TValuefields TValue;
type TValue (line 342) | typedef TValue *StkId;
type TString (line 348) | typedef union TString {
type Udata (line 364) | typedef union Udata {
type Proto (line 380) | typedef struct Proto {
type LocVar (line 411) | typedef struct LocVar {
type UpVal (line 423) | typedef struct UpVal {
type CClosure (line 444) | typedef struct CClosure {
type LClosure (line 451) | typedef struct LClosure {
type Closure (line 458) | typedef union Closure {
type TKey (line 474) | typedef union TKey {
type TKey (line 486) | typedef struct TKey {
type Node (line 497) | typedef struct Node {
type Table (line 503) | typedef struct Table {
FILE: Src/LuaPlus/lua51-luaplus/src/lopcodes.h
type OpMode (line 31) | enum OpMode {iABC, iABx, iAsBx}
type OpCode (line 150) | typedef enum {
type OpArgMask (line 245) | enum OpArgMask {
FILE: Src/LuaPlus/lua51-luaplus/src/loslib.c
function os_pushresult (line 23) | static int os_pushresult (lua_State *L, int i, const char *filename) {
function os_execute (line 38) | static int os_execute (lua_State *L) {
function os_remove (line 48) | static int os_remove (lua_State *L) {
function os_rename (line 54) | static int os_rename (lua_State *L) {
function os_tmpname (line 61) | static int os_tmpname (lua_State *L) {
function os_getenv (line 76) | static int os_getenv (lua_State *L) {
function os_clock (line 86) | static int os_clock (lua_State *L) {
function setfield (line 100) | static void setfield (lua_State *L, const char *key, int value) {
function setboolfield (line 105) | static void setboolfield (lua_State *L, const char *key, int value) {
function getboolfield (line 112) | static int getboolfield (lua_State *L, const char *key) {
function getfield (line 121) | static int getfield (lua_State *L, const char *key, int d) {
function os_date (line 136) | static int os_date (lua_State *L) {
function os_time (line 182) | static int os_time (lua_State *L) {
function os_difftime (line 207) | static int os_difftime (lua_State *L) {
function os_setlocale (line 216) | static int os_setlocale (lua_State *L) {
function os_exit (line 228) | static int os_exit (lua_State *L) {
function LUALIB_API (line 252) | LUALIB_API int luaopen_os (lua_State *L) {
FILE: Src/LuaPlus/lua51-luaplus/src/lparser.c
type BlockCnt (line 40) | typedef struct BlockCnt {
function anchor_token (line 57) | static void anchor_token (LexState *ls) {
function error_expected (line 65) | static void error_expected (LexState *ls, int token) {
function errorlimit (line 71) | static void errorlimit (FuncState *fs, int limit, const char *what) {
function testnext (line 80) | static int testnext (LexState *ls, int c) {
function check (line 89) | static void check (LexState *ls, int c) {
function checknext (line 94) | static void checknext (LexState *ls, int c) {
function check_match (line 104) | static void check_match (LexState *ls, int what, int who, int where) {
function TString (line 117) | static TString *str_checkname (LexState *ls) {
function init_exp (line 126) | static void init_exp (expdesc *e, expkind k, int i) {
function codestring (line 133) | static void codestring (LexState *ls, expdesc *e, TString *s) {
function checkname (line 138) | static void checkname(LexState *ls, expdesc *e) {
function registerlocalvar (line 143) | static int registerlocalvar (LexState *ls, TString *varname) {
function new_localvar (line 166) | static void new_localvar (LexState *ls, TString *name, int n) {
function adjustlocalvars (line 173) | static void adjustlocalvars (LexState *ls, int nvars) {
function removevars (line 182) | static void removevars (LexState *ls, int tolevel) {
function indexupvalue (line 189) | static int indexupvalue (FuncState *fs, TString *name, expdesc *v) {
function searchvar (line 219) | static int searchvar (FuncState *fs, TString *n) {
function markupval (line 229) | static void markupval (FuncState *fs, int level) {
function singlevaraux (line 236) | static int singlevaraux (FuncState *fs, TString *n, expdesc *var, int ba...
function singlevar (line 260) | static void singlevar (LexState *ls, expdesc *var) {
function adjust_assign (line 268) | static void adjust_assign (LexState *ls, int nvars, int nexps, expdesc *...
function enterlevel (line 288) | static void enterlevel (LexState *ls) {
function enterblock (line 297) | static void enterblock (FuncState *fs, BlockCnt *bl, lu_byte isbreakable) {
function leaveblock (line 308) | static void leaveblock (FuncState *fs) {
function pushclosure (line 322) | static void pushclosure (LexState *ls, FuncState *func, expdesc *v) {
function open_func (line 346) | static void open_func (LexState *ls, FuncState *fs) {
function close_func (line 374) | static void close_func (LexState *ls) {
function Proto (line 422) | Proto *luaY_parser (lua_State *L, ZIO *z, Mbuffer *buff, const char *nam...
function field (line 446) | static void field (LexState *ls, expdesc *v) {
function yindex (line 457) | static void yindex (LexState *ls, expdesc *v) {
type ConsControl (line 473) | struct ConsControl {
function recfield (line 482) | static void recfield (LexState *ls, struct ConsControl *cc) {
function closelistfield (line 503) | static void closelistfield (FuncState *fs, struct ConsControl *cc) {
function lastlistfield (line 514) | static void lastlistfield (FuncState *fs, struct ConsControl *cc) {
function listfield (line 529) | static void listfield (LexState *ls, struct ConsControl *cc) {
function constructor (line 537) | static void constructor (LexState *ls, expdesc *t) {
function parlist (line 582) | static void parlist (LexState *ls) {
function body (line 615) | static void body (LexState *ls, expdesc *e, int needself, int line) {
function explist1 (line 635) | static int explist1 (LexState *ls, expdesc *v) {
function funcargs (line 648) | static void funcargs (LexState *ls, expdesc *f) {
function prefixexp (line 706) | static void prefixexp (LexState *ls, expdesc *v) {
function primaryexp (line 729) | static void primaryexp (LexState *ls, expdesc *v) {
function simpleexp (line 766) | static void simpleexp (LexState *ls, expdesc *v) {
function UnOpr (line 817) | static UnOpr getunopr (int op) {
function BinOpr (line 827) | static BinOpr getbinopr (int op) {
function BinOpr (line 867) | static BinOpr subexpr (LexState *ls, expdesc *v, unsigned int limit) {
function expr (line 895) | static void expr (LexState *ls, expdesc *v) {
function block_follow (line 910) | static int block_follow (int token) {
function block (line 920) | static void block (LexState *ls) {
type LHS_assign (line 935) | struct LHS_assign {
function check_conflict (line 947) | static void check_conflict (LexState *ls, struct LHS_assign *lh, expdesc...
function assignment (line 970) | static void assignment (LexState *ls, struct LHS_assign *lh, int nvars) {
function cond (line 1004) | static int cond (LexState *ls) {
function breakstat (line 1014) | static void breakstat (LexState *ls) {
function whilestat (line 1030) | static void whilestat (LexState *ls, int line) {
function repeatstat (line 1049) | static void repeatstat (LexState *ls, int line) {
function exp1 (line 1075) | static int exp1 (LexState *ls) {
function forbody (line 1085) | static void forbody (LexState *ls, int base, int line, int nvars, int is...
function fornum (line 1106) | static void fornum (LexState *ls, TString *varname, int line) {
function forlist (line 1128) | static void forlist (LexState *ls, TString *indexname) {
function forstat (line 1151) | static void forstat (LexState *ls, int line) {
FILE: Src/LuaPlus/lua51-luaplus/src/lparser.h
type expkind (line 19) | typedef enum {
type expdesc (line 37) | typedef struct expdesc {
type upvaldesc (line 48) | typedef struct upvaldesc {
type BlockCnt (line 54) | struct BlockCnt
type FuncState (line 58) | typedef struct FuncState {
FILE: Src/LuaPlus/lua51-luaplus/src/lstate.c
type LG (line 35) | typedef struct LG {
function stack_init (line 42) | static void stack_init (lua_State *L1, lua_State *L) {
function freestack (line 70) | static void freestack (lua_State *L, lua_State *L1) {
function f_luaopen (line 79) | static void f_luaopen (lua_State *L, void *ud) {
function preinit_state (line 110) | static void preinit_state (lua_State *L, global_State *g) {
function close_state (line 131) | static void close_state (lua_State *L) {
function lua_State (line 145) | lua_State *luaE_newthread (lua_State *L) {
function luaE_freethread (line 166) | void luaE_freethread (lua_State *L, lua_State *L1) {
function LUA_API (line 175) | LUA_API lua_State *lua_newstate (lua_Alloc f, void *ud) {
function callallgcTM (line 225) | static void callallgcTM (lua_State *L, void *ud) {
function LUA_API (line 231) | LUA_API void lua_close (lua_State *L) {
FILE: Src/LuaPlus/lua51-luaplus/src/lstate.h
type lua_longjmp (line 18) | struct lua_longjmp
type stringtable (line 38) | typedef struct stringtable {
type CallInfo (line 48) | typedef struct CallInfo {
type global_State (line 68) | typedef struct global_State {
type lua_State (line 104) | struct lua_State {
type Table (line 151) | struct Table
type Proto (line 152) | struct Proto
type UpVal (line 153) | struct UpVal
type lua_State (line 154) | struct lua_State
FILE: Src/LuaPlus/lua51-luaplus/src/lstring.c
function luaS_resize (line 22) | void luaS_resize (lua_State *L, int newsize) {
function TString (line 56) | static TString *newlstr (lua_State *L, const char *str, size_t l,
function TString (line 87) | TString *luaS_newlstr (lua_State *L, const char *str, size_t l) {
function Udata (line 108) | Udata *luaS_newudata (lua_State *L, size_t s, Table *e) {
FILE: Src/LuaPlus/lua51-luaplus/src/lstrlib.c
function str_len (line 28) | static int str_len (lua_State *L) {
function posrelat (line 36) | static ptrdiff_t posrelat (ptrdiff_t pos, size_t len) {
function str_sub (line 43) | static int str_sub (lua_State *L) {
function str_reverse (line 57) | static int str_reverse (lua_State *L) {
function str_lower (line 68) | static int str_lower (lua_State *L) {
function str_upper (line 81) | static int str_upper (lua_State *L) {
function str_rep (line 93) | static int str_rep (lua_State *L) {
function str_byte (line 106) | static int str_byte (lua_State *L) {
function str_char (line 125) | static int str_char (lua_State *L) {
function writer (line 140) | static int writer (lua_State *L, const void* b, size_t size, void* B) {
function str_dump (line 147) | static int str_dump (lua_State *L) {
type MatchState (line 189) | typedef struct MatchState {
function check_capture (line 205) | static int check_capture (MatchState *ms, int l) {
function capture_to_close (line 213) | static int capture_to_close (MatchState *ms) {
function match_class (line 245) | static int match_class (int c, int cl) {
function matchbracketclass (line 264) | static int matchbracketclass (int c, const char *p, const char *ec) {
function singlematch (line 287) | static int singlematch (int c, const char *p, const char *ep) {
function push_onecapture (line 485) | static void push_onecapture (MatchState *ms, int i, const char *s,
function push_captures (line 504) | static int push_captures (MatchState *ms, const char *s, const char *e) {
function str_find_aux (line 514) | static int str_find_aux (lua_State *L, int find) {
function str_find (line 557) | static int str_find (lua_State *L) {
function str_match (line 562) | static int str_match (lua_State *L) {
function gmatch_aux (line 567) | static int gmatch_aux (lua_State *L) {
function gmatch (line 593) | static int gmatch (lua_State *L) {
function gfind_nodef (line 603) | static int gfind_nodef (lua_State *L) {
function add_s (line 609) | static void add_s (MatchState *ms, luaL_Buffer *b, const char *s,
function add_value (line 631) | static void add_value (MatchState *ms, luaL_Buffer *b, const char *s,
function str_gsub (line 663) | static int str_gsub (lua_State *L) {
function addquoted (line 715) | static void addquoted (lua_State *L, luaL_Buffer *b, int arg) {
function addintlen (line 766) | static void addintlen (char *form) {
function str_format (line 775) | static int str_format (lua_State *L) {
function createmetatable (line 866) | static void createmetatable (lua_State *L) {
function LUALIB_API (line 881) | LUALIB_API int luaopen_string (lua_State *L) {
FILE: Src/LuaPlus/lua51-luaplus/src/ltable.c
function Node (line 84) | static Node *hashnum (const Table *t, lua_Number n) {
function Node (line 100) | static Node *mainposition (const Table *t, const TValue *key) {
function arrayindex (line 120) | static int arrayindex (const TValue *key) {
function findindex (line 137) | static int findindex (lua_State *L, Table *t, StkId key) {
function luaH_next (line 162) | int luaH_next (lua_State *L, Table *t, StkId key) {
function computesizes (line 189) | static int computesizes (int nums[], int *narray) {
function countint (line 211) | static int countint (const TValue *key, int *nums) {
function numusearray (line 222) | static int numusearray (const Table *t, int *nums) {
function numusehash (line 247) | static int numusehash (const Table *t, int *nums, int *pnasize) {
function setarrayvector (line 263) | static void setarrayvector (lua_State *L, Table *t, int size) {
function setnodevector (line 278) | static void setnodevector (lua_State *L, Table *t, int size) {
function resize (line 309) | static void resize (lua_State *L, Table *t, int nasize, int nhsize) {
function luaH_resizearray (line 345) | void luaH_resizearray (lua_State *L, Table *t, int nasize) {
function rehash (line 351) | static void rehash (lua_State *L, Table *t, const TValue *ek) {
function Table (line 376) | Table *luaH_new (lua_State *L, int narray, int nhash) {
function luaH_free (line 401) | void luaH_free (lua_State *L, Table *t) {
function Node (line 409) | static Node *getfreepos (Table *t) {
function TValue (line 426) | static TValue *newkey (lua_State *L, Table *t, const TValue *key) {
function TValue (line 466) | const TValue *luaH_getnum (Table *t, int key) {
function TValue (line 486) | const TValue *luaH_getstr (Table *t, TString *key) {
function TValue (line 500) | const TValue *luaH_get (Table *t, const TValue *key) {
function TValue (line 525) | TValue *luaH_set (lua_State *L, Table *t, const TValue *key) {
function TValue (line 539) | TValue *luaH_setnum (lua_State *L, Table *t, int key) {
function TValue (line 551) | TValue *luaH_setstr (lua_State *L, Table *t, TString *key) {
function unbound_search (line 563) | static int unbound_search (Table *t, unsigned int j) {
function luaH_getn (line 591) | int luaH_getn (Table *t) {
function Node (line 613) | Node *luaH_mainposition (const Table *t, const TValue *key) {
function luaH_isdummy (line 617) | int luaH_isdummy (Node *n) { return n == dummynode; }
FILE: Src/LuaPlus/lua51-luaplus/src/ltablib.c
function foreachi (line 22) | static int foreachi (lua_State *L) {
function foreach (line 39) | static int foreach (lua_State *L) {
function maxn (line 56) | static int maxn (lua_State *L) {
function getn (line 72) | static int getn (lua_State *L) {
function setn (line 78) | static int setn (lua_State *L) {
function tinsert (line 90) | static int tinsert (lua_State *L) {
function tremove (line 118) | static int tremove (lua_State *L) {
function addfield (line 135) | static void addfield (lua_State *L, luaL_Buffer *b, int i) {
function tconcat (line 144) | static int tconcat (lua_State *L) {
function set2 (line 173) | static void set2 (lua_State *L, int i, int j) {
function sort_comp (line 178) | static int sort_comp (lua_State *L, int a, int b) {
function auxsort (line 193) | static void auxsort (lua_State *L, int l, int u) {
function sort (line 256) | static int sort (lua_State *L) {
function LUALIB_API (line 283) | LUALIB_API int luaopen_table (lua_State *L) {
FILE: Src/LuaPlus/lua51-luaplus/src/ltm.c
function luaT_init (line 30) | void luaT_init (lua_State *L) {
function TValue (line 50) | const TValue *luaT_gettm (Table *events, TMS event, TString *ename) {
function TValue (line 61) | const TValue *luaT_gettmbyobj (lua_State *L, const TValue *o, TMS event) {
FILE: Src/LuaPlus/lua51-luaplus/src/ltm.h
type TMS (line 18) | typedef enum {
FILE: Src/LuaPlus/lua51-luaplus/src/lua.c
function lstop (line 33) | static void lstop (lua_State *L, lua_Debug *ar) {
function laction (line 40) | static void laction (int i) {
function print_usage (line 47) | static void print_usage (void) {
function l_message (line 63) | static void l_message (const char *pname, const char *msg) {
function report (line 70) | static int report (lua_State *L, int status) {
function traceback (line 81) | static int traceback (lua_State *L) {
function docall (line 101) | static int docall (lua_State *L, int narg, int clear) {
function print_version (line 116) | static void print_version (void) {
function getargs (line 121) | static int getargs (lua_State *L, char **argv, int n) {
function dofile (line 139) | static int dofile (lua_State *L, const char *name) {
function dostring (line 145) | static int dostring (lua_State *L, const char *s, const char *name) {
function dolibrary (line 151) | static int dolibrary (lua_State *L, const char *name) {
function incomplete (line 168) | static int incomplete (lua_State *L, int status) {
function pushline (line 182) | static int pushline (lua_State *L, int firstline) {
function loadline (line 201) | static int loadline (lua_State *L) {
function dotty (line 221) | static void dotty (lua_State *L) {
function handle_script (line 244) | static int handle_script (lua_State *L, char **argv, int n) {
function collectargs (line 266) | static int collectargs (char **argv, int *pi, int *pv, int *pe) {
function runargs (line 299) | static int runargs (lua_State *L, char **argv, int n) {
function handle_luainit (line 328) | static int handle_luainit (lua_State *L) {
type Smain (line 338) | struct Smain {
function pmain (line 345) | static int pmain (lua_State *L) {
function main (line 382) | int main (int argc, char **argv) {
FILE: Src/LuaPlus/lua51-luaplus/src/lua.cpp
function lstop (line 36) | static void lstop (lua_State *L, lua_Debug *ar) {
function laction (line 43) | static void laction (int i) {
function print_usage (line 50) | static void print_usage (void) {
function l_message (line 66) | static void l_message (const char *pname, const char *msg) {
function report (line 73) | static int report (lua_State *L, int status) {
function traceback (line 84) | static int traceback (lua_State *L) {
function docall (line 104) | static int docall (lua_State *L, int narg, int clear) {
function print_version (line 119) | static void print_version (void) {
function getargs (line 124) | static int getargs (lua_State *L, char **argv, int n) {
function dofile (line 142) | static int dofile (lua_State *L, const char *name) {
function dostring (line 148) | static int dostring (lua_State *L, const char *s, const char *name) {
function dolibrary (line 154) | static int dolibrary (lua_State *L, const char *name) {
function incomplete (line 171) | static int incomplete (lua_State *L, int status) {
function pushline (line 185) | static int pushline (lua_State *L, int firstline) {
function loadline (line 204) | static int loadline (lua_State *L) {
function dotty (line 224) | static void dotty (lua_State *L) {
function handle_script (line 247) | static int handle_script (lua_State *L, char **argv, int n) {
function DebugLineHook (line 272) | static void DebugLineHook( lua_State* inState, lua_Debug* ar )
function collectargs (line 296) | static int collectargs (char **argv, int *pi, int *pv, int *pe) {
FILE: Src/LuaPlus/lua51-luaplus/src/lua.h
type lua_State (line 50) | typedef struct lua_State lua_State;
type LUA_NUMBER (line 103) | typedef LUA_NUMBER lua_Number;
type LUA_INTEGER (line 107) | typedef LUA_INTEGER lua_Integer;
type lua_Debug (line 336) | typedef struct lua_Debug lua_Debug;
type lua_Debug (line 359) | struct lua_Debug {
FILE: Src/LuaPlus/lua51-luaplus/src/luac.c
function fatal (line 37) | static void fatal(const char* message)
function cannot (line 43) | static void cannot(const char* what)
function usage (line 49) | static void usage(const char* message)
function doargs (line 72) | static int doargs(int argc, char* argv[])
function Proto (line 121) | static Proto* combine(lua_State* L, int n)
function writer (line 149) | static int writer(lua_State* L, const void* p, size_t size, void* u)
type Smain (line 155) | struct Smain {
function pmain (line 160) | static int pmain(lua_State* L)
function main (line 188) | int main(int argc, char* argv[])
FILE: Src/LuaPlus/lua51-luaplus/src/lundump.c
type LoadState (line 23) | typedef struct {
function error (line 39) | static void error(LoadState* S, const char* why)
function LoadBlock (line 53) | static void LoadBlock(LoadState* S, void* b, size_t size)
function LoadMem (line 60) | static void LoadMem (LoadState* S, void* b, size_t n, size_t size)
function LoadChar (line 101) | static int LoadChar(LoadState* S)
function LoadInt (line 108) | static int LoadInt(LoadState* S)
function lua_Number (line 116) | static lua_Number LoadNumber(LoadState* S)
function TString (line 123) | static TString* LoadString(LoadState* S)
function LoadCode (line 137) | static void LoadCode(LoadState* S, Proto* f)
function LoadConstants (line 147) | static void LoadConstants(LoadState* S, Proto* f)
function LoadDebug (line 184) | static void LoadDebug(LoadState* S, Proto* f)
function Proto (line 208) | static Proto* LoadFunction(LoadState* S, TString* p)
function LoadHeader (line 230) | static void LoadHeader(LoadState* S)
function Proto (line 248) | Proto* luaU_undump (lua_State* L, ZIO* Z, Mbuffer* buff, const char* name)
FILE: Src/LuaPlus/lua51-luaplus/src/lvm.c
function TValue (line 35) | const TValue *luaV_tonumber (const TValue *obj, TValue *n) {
function luaV_tostring (line 47) | int luaV_tostring (lua_State *L, StkId obj) {
function traceexec (line 60) | static void traceexec (lua_State *L, const Instruction *pc) {
function callTMres (line 80) | static void callTMres (lua_State *L, StkId res, const TValue *f,
function callTM (line 96) | static void callTM (lua_State *L, const TValue *f, const TValue *p1,
function luaV_gettable (line 108) | void luaV_gettable (lua_State *L, const TValue *t, TValue *key, StkId va...
function luaV_settable (line 134) | void luaV_settable (lua_State *L, const TValue *t, TValue *key, StkId va...
function call_binTM (line 165) | static int call_binTM (lua_State *L, const TValue *p1, const TValue *p2,
function TValue (line 176) | static const TValue *get_compTM (lua_State *L, Table *mt1, Table *mt2,
function call_orderTM (line 190) | static int call_orderTM (lua_State *L, const TValue *p1, const TValue *p2,
function l_strcmp (line 203) | static int l_strcmp (const TString *ls, const TString *rs) {
function luaV_lessthan (line 225) | int luaV_lessthan (lua_State *L, const TValue *l, const TValue *r) {
function lessequal (line 239) | static int lessequal (lua_State *L, const TValue *l, const TValue *r) {
function luaV_equalval (line 255) | int luaV_equalval (lua_State *L, const TValue *t1, const TValue *t2) {
function luaV_concat (line 282) | void luaV_concat (lua_State *L, int total, int last) {
function Arith (line 317) | static void Arith (lua_State *L, StkId ra, const TValue *rb,
function luaV_execute (line 377) | void luaV_execute (lua_State *L, int nexeccalls) {
FILE: Src/LuaPlus/lua51-luaplus/src/lzio.c
function luaZ_fill (line 21) | int luaZ_fill (ZIO *z) {
function luaZ_lookahead (line 35) | int luaZ_lookahead (ZIO *z) {
function luaZ_init (line 48) | void luaZ_init (lua_State *L, ZIO *z, lua_Reader reader, void *data) {
function luaZ_read (line 58) | size_t luaZ_read (ZIO *z, void *b, size_t n) {
function luaZ_resizebuffer (line 84) | void luaZ_resizebuffer(lua_State *L, Mbuffer *buff, size_t size)
FILE: Src/LuaPlus/lua51-luaplus/src/lzio.h
type ZIO (line 18) | typedef struct Zio ZIO;
type Mbuffer (line 24) | typedef struct Mbuffer {
type Zio (line 60) | struct Zio {
FILE: Src/LuaPlus/lua51-luaplus/src/print.c
function PrintString (line 23) | static void PrintString(const TString* ts)
function PrintConstant (line 51) | static void PrintConstant(const Proto* f, int i)
function PrintCode (line 74) | static void PrintCode(const Proto* f)
function PrintHeader (line 161) | static void PrintHeader(const Proto* f)
function PrintConstants (line 181) | static void PrintConstants(const Proto* f)
function PrintLocals (line 193) | static void PrintLocals(const Proto* f)
function PrintUpvalues (line 204) | static void PrintUpvalues(const Proto* f)
function PrintFunction (line 215) | void PrintFunction(const Proto* f, int full)
FILE: Src/LuaPlus/lua51/etc/min.c
function print (line 12) | static int print(lua_State *L)
function main (line 32) | int main(void)
FILE: Src/LuaPlus/lua51/etc/noparser.c
function LUAI_FUNC (line 21) | LUAI_FUNC void luaX_init (lua_State *L) {
function LUAI_FUNC (line 25) | LUAI_FUNC Proto *luaY_parser (lua_State *L, ZIO *z, Mbuffer *buff, const...
function LUAI_FUNC (line 37) | LUAI_FUNC int luaU_dump (lua_State* L, const Proto* f, lua_Writer w, voi...
FILE: Src/LuaPlus/lua51/src/lapi.c
function TValue (line 49) | static TValue *index2adr (lua_State *L, int idx) {
function Table (line 79) | static Table *getcurrenv (lua_State *L) {
function luaA_pushobject (line 89) | void luaA_pushobject (lua_State *L, const TValue *o) {
function LUA_API (line 95) | LUA_API int lua_checkstack (lua_State *L, int size) {
function LUA_API (line 110) | LUA_API void lua_xmove (lua_State *from, lua_State *to, int n) {
function LUA_API (line 125) | LUA_API void lua_setlevel (lua_State *from, lua_State *to) {
function LUA_API (line 130) | LUA_API lua_CFunction lua_atpanic (lua_State *L, lua_CFunction panicf) {
function LUA_API (line 140) | LUA_API lua_State *lua_newthread (lua_State *L) {
function LUA_API (line 159) | LUA_API int lua_gettop (lua_State *L) {
function LUA_API (line 164) | LUA_API void lua_settop (lua_State *L, int idx) {
function LUA_API (line 180) | LUA_API void lua_remove (lua_State *L, int idx) {
function LUA_API (line 191) | LUA_API void lua_insert (lua_State *L, int idx) {
function LUA_API (line 203) | LUA_API void lua_replace (lua_State *L, int idx) {
function LUA_API (line 228) | LUA_API void lua_pushvalue (lua_State *L, int idx) {
function LUA_API (line 242) | LUA_API int lua_type (lua_State *L, int idx) {
function LUA_API (line 248) | LUA_API const char *lua_typename (lua_State *L, int t) {
function LUA_API (line 254) | LUA_API int lua_iscfunction (lua_State *L, int idx) {
function LUA_API (line 260) | LUA_API int lua_isnumber (lua_State *L, int idx) {
function LUA_API (line 267) | LUA_API int lua_isstring (lua_State *L, int idx) {
function LUA_API (line 273) | LUA_API int lua_isuserdata (lua_State *L, int idx) {
function LUA_API (line 279) | LUA_API int lua_rawequal (lua_State *L, int index1, int index2) {
function LUA_API (line 287) | LUA_API int lua_equal (lua_State *L, int index1, int index2) {
function LUA_API (line 299) | LUA_API int lua_lessthan (lua_State *L, int index1, int index2) {
function LUA_API (line 313) | LUA_API lua_Number lua_tonumber (lua_State *L, int idx) {
function LUA_API (line 323) | LUA_API lua_Integer lua_tointeger (lua_State *L, int idx) {
function LUA_API (line 337) | LUA_API int lua_toboolean (lua_State *L, int idx) {
function LUA_API (line 343) | LUA_API const char *lua_tolstring (lua_State *L, int idx, size_t *len) {
function LUA_API (line 361) | LUA_API size_t lua_objlen (lua_State *L, int idx) {
function LUA_API (line 379) | LUA_API lua_CFunction lua_tocfunction (lua_State *L, int idx) {
function LUA_API (line 385) | LUA_API void *lua_touserdata (lua_State *L, int idx) {
function LUA_API (line 395) | LUA_API lua_State *lua_tothread (lua_State *L, int idx) {
function LUA_API (line 401) | LUA_API const void *lua_topointer (lua_State *L, int idx) {
function LUA_API (line 421) | LUA_API void lua_pushnil (lua_State *L) {
function LUA_API (line 429) | LUA_API void lua_pushnumber (lua_State *L, lua_Number n) {
function LUA_API (line 437) | LUA_API void lua_pushinteger (lua_State *L, lua_Integer n) {
function LUA_API (line 445) | LUA_API void lua_pushlstring (lua_State *L, const char *s, size_t len) {
function LUA_API (line 454) | LUA_API void lua_pushstring (lua_State *L, const char *s) {
function LUA_API (line 462) | LUA_API const char *lua_pushvfstring (lua_State *L, const char *fmt,
function LUA_API (line 473) | LUA_API const char *lua_pushfstring (lua_State *L, const char *fmt, ...) {
function LUA_API (line 486) | LUA_API void lua_pushcclosure (lua_State *L, lua_CFunction fn, int n) {
function LUA_API (line 503) | LUA_API void lua_pushboolean (lua_State *L, int b) {
function LUA_API (line 511) | LUA_API void lua_pushlightuserdata (lua_State *L, void *p) {
function LUA_API (line 519) | LUA_API int lua_pushthread (lua_State *L) {
function LUA_API (line 534) | LUA_API void lua_gettable (lua_State *L, int idx) {
function LUA_API (line 544) | LUA_API void lua_getfield (lua_State *L, int idx, const char *k) {
function LUA_API (line 557) | LUA_API void lua_rawget (lua_State *L, int idx) {
function LUA_API (line 567) | LUA_API void lua_rawgeti (lua_State *L, int idx, int n) {
function LUA_API (line 578) | LUA_API void lua_createtable (lua_State *L, int narray, int nrec) {
function LUA_API (line 587) | LUA_API int lua_getmetatable (lua_State *L, int objindex) {
function LUA_API (line 616) | LUA_API void lua_getfenv (lua_State *L, int idx) {
function LUA_API (line 645) | LUA_API void lua_settable (lua_State *L, int idx) {
function LUA_API (line 657) | LUA_API void lua_setfield (lua_State *L, int idx, const char *k) {
function LUA_API (line 671) | LUA_API void lua_rawset (lua_State *L, int idx) {
function LUA_API (line 684) | LUA_API void lua_rawseti (lua_State *L, int idx, int n) {
function LUA_API (line 697) | LUA_API int lua_setmetatable (lua_State *L, int objindex) {
function LUA_API (line 734) | LUA_API int lua_setfenv (lua_State *L, int idx) {
function LUA_API (line 776) | LUA_API void lua_call (lua_State *L, int nargs, int nresults) {
type CallS (line 792) | struct CallS { /* data to `f_call' */
function f_call (line 798) | static void f_call (lua_State *L, void *ud) {
function LUA_API (line 805) | LUA_API int lua_pcall (lua_State *L, int nargs, int nresults, int errfun...
type CCallS (line 831) | struct CCallS { /* data to `f_Ccall' */
function f_Ccall (line 837) | static void f_Ccall (lua_State *L, void *ud) {
function LUA_API (line 850) | LUA_API int lua_cpcall (lua_State *L, lua_CFunction func, void *ud) {
function LUA_API (line 862) | LUA_API int lua_load (lua_State *L, lua_Reader reader, void *data,
function LUA_API (line 875) | LUA_API int lua_dump (lua_State *L, lua_Writer writer, void *data) {
function LUA_API (line 890) | LUA_API int lua_status (lua_State *L) {
function LUA_API (line 899) | LUA_API int lua_gc (lua_State *L, int what, int data) {
function LUA_API (line 964) | LUA_API int lua_error (lua_State *L) {
function LUA_API (line 973) | LUA_API int lua_next (lua_State *L, int idx) {
function LUA_API (line 990) | LUA_API void lua_concat (lua_State *L, int n) {
function LUA_API (line 1007) | LUA_API lua_Alloc lua_getallocf (lua_State *L, void **ud) {
function LUA_API (line 1017) | LUA_API void lua_setallocf (lua_State *L, lua_Alloc f, void *ud) {
function LUA_API (line 1025) | LUA_API void *lua_newuserdata (lua_State *L, size_t size) {
function LUA_API (line 1057) | LUA_API const char *lua_getupvalue (lua_State *L, int funcindex, int n) {
function LUA_API (line 1071) | LUA_API const char *lua_setupvalue (lua_State *L, int funcindex, int n) {
FILE: Src/LuaPlus/lua51/src/lauxlib.c
function LUALIB_API (line 43) | LUALIB_API int luaL_argerror (lua_State *L, int narg, const char *extram...
function LUALIB_API (line 61) | LUALIB_API int luaL_typerror (lua_State *L, int narg, const char *tname) {
function tag_error (line 68) | static void tag_error (lua_State *L, int narg, int tag) {
function LUALIB_API (line 73) | LUALIB_API void luaL_where (lua_State *L, int level) {
function LUALIB_API (line 86) | LUALIB_API int luaL_error (lua_State *L, const char *fmt, ...) {
function LUALIB_API (line 99) | LUALIB_API int luaL_checkoption (lua_State *L, int narg, const char *def,
function LUALIB_API (line 112) | LUALIB_API int luaL_newmetatable (lua_State *L, const char *tname) {
function LUALIB_API (line 124) | LUALIB_API void *luaL_checkudata (lua_State *L, int ud, const char *tnam...
function LUALIB_API (line 140) | LUALIB_API void luaL_checkstack (lua_State *L, int space, const char *me...
function LUALIB_API (line 146) | LUALIB_API void luaL_checktype (lua_State *L, int narg, int t) {
function LUALIB_API (line 152) | LUALIB_API void luaL_checkany (lua_State *L, int narg) {
function LUALIB_API (line 158) | LUALIB_API const char *luaL_checklstring (lua_State *L, int narg, size_t...
function LUALIB_API (line 165) | LUALIB_API const char *luaL_optlstring (lua_State *L, int narg,
function LUALIB_API (line 176) | LUALIB_API lua_Number luaL_checknumber (lua_State *L, int narg) {
function LUALIB_API (line 184) | LUALIB_API lua_Number luaL_optnumber (lua_State *L, int narg, lua_Number...
function LUALIB_API (line 189) | LUALIB_API lua_Integer luaL_checkinteger (lua_State *L, int narg) {
function LUALIB_API (line 197) | LUALIB_API lua_Integer luaL_optinteger (lua_State *L, int narg,
function LUALIB_API (line 203) | LUALIB_API int luaL_getmetafield (lua_State *L, int obj, const char *eve...
function LUALIB_API (line 219) | LUALIB_API int luaL_callmeta (lua_State *L, int obj, const char *event) {
function LUALIB_API (line 229) | LUALIB_API void (luaL_register) (lua_State *L, const char *libname,
function libsize (line 235) | static int libsize (const luaL_Reg *l) {
function LUALIB_API (line 242) | LUALIB_API void luaI_openlib (lua_State *L, const char *libname,
function checkint (line 280) | static int checkint (lua_State *L, int topop) {
function getsizes (line 287) | static void getsizes (lua_State *L) {
function LUALIB_API (line 302) | LUALIB_API void luaL_setn (lua_State *L, int t, int n) {
function LUALIB_API (line 321) | LUALIB_API int luaL_getn (lua_State *L, int t) {
function LUALIB_API (line 340) | LUALIB_API const char *luaL_gsub (lua_State *L, const char *s, const cha...
function LUALIB_API (line 357) | LUALIB_API const char *luaL_findtable (lua_State *L, int idx,
function emptybuffer (line 398) | static int emptybuffer (luaL_Buffer *B) {
function adjuststack (line 410) | static void adjuststack (luaL_Buffer *B) {
function LUALIB_API (line 429) | LUALIB_API char *luaL_prepbuffer (luaL_Buffer *B) {
function LUALIB_API (line 436) | LUALIB_API void luaL_addlstring (luaL_Buffer *B, const char *s, size_t l) {
function LUALIB_API (line 442) | LUALIB_API void luaL_addstring (luaL_Buffer *B, const char *s) {
function LUALIB_API (line 447) | LUALIB_API void luaL_pushresult (luaL_Buffer *B) {
function LUALIB_API (line 454) | LUALIB_API void luaL_addvalue (luaL_Buffer *B) {
function LUALIB_API (line 472) | LUALIB_API void luaL_buffinit (lua_State *L, luaL_Buffer *B) {
function LUALIB_API (line 481) | LUALIB_API int luaL_ref (lua_State *L, int t) {
function LUALIB_API (line 504) | LUALIB_API void luaL_unref (lua_State *L, int t, int ref) {
type LoadF (line 522) | typedef struct LoadF {
function errfile (line 543) | static int errfile (lua_State *L, const char *what, int fnameindex) {
function LUALIB_API (line 552) | LUALIB_API int luaL_loadfile (lua_State *L, const char *filename) {
type LoadS (line 593) | typedef struct LoadS {
function LUALIB_API (line 609) | LUALIB_API int luaL_loadbuffer (lua_State *L, const char *buff, size_t s...
function LUALIB_API (line 618) | LUALIB_API int (luaL_loadstring) (lua_State *L, const char *s) {
function panic (line 639) | static int panic (lua_State *L) {
function LUALIB_API (line 647) | LUALIB_API lua_State *luaL_newstate (void) {
FILE: Src/LuaPlus/lua51/src/lauxlib.h
type luaL_Reg (line 35) | typedef struct luaL_Reg {
type luaL_Buffer (line 129) | typedef struct luaL_Buffer {
FILE: Src/LuaPlus/lua51/src/lbaselib.c
function luaB_print (line 31) | static int luaB_print (lua_State *L) {
function luaB_tonumber (line 53) | static int luaB_tonumber (lua_State *L) {
function luaB_error (line 81) | static int luaB_error (lua_State *L) {
function luaB_getmetatable (line 93) | static int luaB_getmetatable (lua_State *L) {
function luaB_setmetatable (line 104) | static int luaB_setmetatable (lua_State *L) {
function getfunc (line 117) | static void getfunc (lua_State *L, int opt) {
function luaB_getfenv (line 133) | static int luaB_getfenv (lua_State *L) {
function luaB_setfenv (line 143) | static int luaB_setfenv (lua_State *L) {
function luaB_rawequal (line 161) | static int luaB_rawequal (lua_State *L) {
function luaB_rawget (line 169) | static int luaB_rawget (lua_State *L) {
function luaB_rawset (line 177) | static int luaB_rawset (lua_State *L) {
function luaB_gcinfo (line 187) | static int luaB_gcinfo (lua_State *L) {
function luaB_collectgarbage (line 193) | static int luaB_collectgarbage (lua_State *L) {
function luaB_type (line 219) | static int luaB_type (lua_State *L) {
function luaB_next (line 226) | static int luaB_next (lua_State *L) {
function luaB_pairs (line 238) | static int luaB_pairs (lua_State *L) {
function ipairsaux (line 247) | static int ipairsaux (lua_State *L) {
function luaB_ipairs (line 257) | static int luaB_ipairs (lua_State *L) {
function load_aux (line 266) | static int load_aux (lua_State *L, int status) {
function luaB_loadstring (line 277) | static int luaB_loadstring (lua_State *L) {
function luaB_loadfile (line 285) | static int luaB_loadfile (lua_State *L) {
function luaB_load (line 315) | static int luaB_load (lua_State *L) {
function luaB_dofile (line 325) | static int luaB_dofile (lua_State *L) {
function luaB_assert (line 334) | static int luaB_assert (lua_State *L) {
function luaB_unpack (line 342) | static int luaB_unpack (lua_State *L) {
function luaB_select (line 358) | static int luaB_select (lua_State *L) {
function luaB_pcall (line 374) | static int luaB_pcall (lua_State *L) {
function luaB_xpcall (line 384) | static int luaB_xpcall (lua_State *L) {
function luaB_tostring (line 396) | static int luaB_tostring (lua_State *L) {
function luaB_newproxy (line 421) | static int luaB_newproxy (lua_State *L) {
function costatus (line 490) | static int costatus (lua_State *L, lua_State *co) {
function luaB_costatus (line 510) | static int luaB_costatus (lua_State *L) {
function auxresume (line 518) | static int auxresume (lua_State *L, lua_State *co, int narg) {
function luaB_coresume (line 543) | static int luaB_coresume (lua_State *L) {
function luaB_auxwrap (line 561) | static int luaB_auxwrap (lua_State *L) {
function luaB_cocreate (line 576) | static int luaB_cocreate (lua_State *L) {
function luaB_cowrap (line 586) | static int luaB_cowrap (lua_State *L) {
function luaB_yield (line 593) | static int luaB_yield (lua_State *L) {
function luaB_corunning (line 598) | static int luaB_corunning (lua_State *L) {
function auxopen (line 618) | static void auxopen (lua_State *L, const char *name,
function base_open (line 626) | static void base_open (lua_State *L) {
function LUALIB_API (line 648) | LUALIB_API int luaopen_base (lua_State *L) {
FILE: Src/LuaPlus/lua51/src/lcode.c
function isnumeral (line 30) | static int isnumeral(expdesc *e) {
function luaK_nil (line 35) | void luaK_nil (FuncState *fs, int from, int n) {
function luaK_jump (line 59) | int luaK_jump (FuncState *fs) {
function luaK_ret (line 69) | void luaK_ret (FuncState *fs, int first, int nret) {
function condjump (line 74) | static int condjump (FuncState *fs, OpCode op, int A, int B, int C) {
function fixjump (line 80) | static void fixjump (FuncState *fs, int pc, int dest) {
function luaK_getlabel (line 94) | int luaK_getlabel (FuncState *fs) {
function getjump (line 100) | static int getjump (FuncState *fs, int pc) {
function Instruction (line 109) | static Instruction *getjumpcontrol (FuncState *fs, int pc) {
function need_value (line 122) | static int need_value (FuncState *fs, int list) {
function patchtestreg (line 131) | static int patchtestreg (FuncState *fs, int node, int reg) {
function removevalues (line 144) | static void removevalues (FuncState *fs, int list) {
function patchlistaux (line 150) | static void patchlistaux (FuncState *fs, int list, int vtarget, int reg,
function dischargejpc (line 163) | static void dischargejpc (FuncState *fs) {
function luaK_patchlist (line 169) | void luaK_patchlist (FuncState *fs, int list, int target) {
function luaK_patchtohere (line 179) | void luaK_patchtohere (FuncState *fs, int list) {
function luaK_concat (line 185) | void luaK_concat (FuncState *fs, int *l1, int l2) {
function luaK_checkstack (line 199) | void luaK_checkstack (FuncState *fs, int n) {
function luaK_reserveregs (line 209) | void luaK_reserveregs (FuncState *fs, int n) {
function freereg (line 215) | static void freereg (FuncState *fs, int reg) {
function freeexp (line 223) | static void freeexp (FuncState *fs, expdesc *e) {
function addk (line 229) | static int addk (FuncState *fs, TValue *k, TValue *v) {
function luaK_stringK (line 250) | int luaK_stringK (FuncState *fs, TString *s) {
function luaK_numberK (line 257) | int luaK_numberK (FuncState *fs, lua_Number r) {
function boolK (line 264) | static int boolK (FuncState *fs, int b) {
function nilK (line 271) | static int nilK (FuncState *fs) {
function luaK_setreturns (line 280) | void luaK_setreturns (FuncState *fs, expdesc *e, int nresults) {
function luaK_setoneret (line 292) | void luaK_setoneret (FuncState *fs, expdesc *e) {
function luaK_dischargevars (line 304) | void luaK_dischargevars (FuncState *fs, expdesc *e) {
function code_label (line 337) | static int code_label (FuncState *fs, int A, int b, int jump) {
function discharge2reg (line 343) | static void discharge2reg (FuncState *fs, expdesc *e, int reg) {
function discharge2anyreg (line 382) | static void discharge2anyreg (FuncState *fs, expdesc *e) {
function exp2reg (line 390) | static void exp2reg (FuncState *fs, expdesc *e, int reg) {
function luaK_exp2nextreg (line 414) | void luaK_exp2nextreg (FuncState *fs, expdesc *e) {
function luaK_exp2anyreg (line 422) | int luaK_exp2anyreg (FuncState *fs, expdesc *e) {
function luaK_exp2val (line 436) | void luaK_exp2val (FuncState *fs, expdesc *e) {
function luaK_exp2RK (line 444) | int luaK_exp2RK (FuncState *fs, expdesc *e) {
function luaK_storevar (line 472) | void luaK_storevar (FuncState *fs, expdesc *var, expdesc *ex) {
function luaK_self (line 503) | void luaK_self (FuncState *fs, expdesc *e, expdesc *key) {
function invertjump (line 516) | static void invertjump (FuncState *fs, expdesc *e) {
function jumponcond (line 524) | static int jumponcond (FuncState *fs, expdesc *e, int cond) {
function luaK_goiftrue (line 539) | void luaK_goiftrue (FuncState *fs, expdesc *e) {
function luaK_goiffalse (line 563) | static void luaK_goiffalse (FuncState *fs, expdesc *e) {
function codenot (line 586) | static void codenot (FuncState *fs, expdesc *e) {
function luaK_indexed (line 621) | void luaK_indexed (FuncState *fs, expdesc *t, expdesc *k) {
function constfolding (line 627) | static int constfolding (OpCode op, expdesc *e1, expdesc *e2) {
function codearith (line 653) | static void codearith (FuncState *fs, OpCode op, expdesc *e1, expdesc *e...
function codecomp (line 673) | static void codecomp (FuncState *fs, OpCode op, int cond, expdesc *e1,
function luaK_prefix (line 689) | void luaK_prefix (FuncState *fs, UnOpr op, expdesc *e) {
function luaK_infix (line 710) | void luaK_infix (FuncState *fs, BinOpr op, expdesc *v) {
function luaK_posfix (line 737) | void luaK_posfix (FuncState *fs, BinOpr op, expdesc *e1, expdesc *e2) {
function luaK_fixline (line 784) | void luaK_fixline (FuncState *fs, int line) {
function luaK_code (line 789) | static int luaK_code (FuncState *fs, Instruction i, int line) {
function luaK_codeABC (line 804) | int luaK_codeABC (FuncState *fs, OpCode o, int a, int b, int c) {
function luaK_codeABx (line 812) | int luaK_codeABx (FuncState *fs, OpCode o, int a, unsigned int bc) {
function luaK_setlist (line 819) | void luaK_setlist (FuncState *fs, int base, int nelems, int tostore) {
FILE: Src/LuaPlus/lua51/src/lcode.h
type BinOpr (line 26) | typedef enum BinOpr {
type UnOpr (line 36) | typedef enum UnOpr { OPR_MINUS, OPR_NOT, OPR_LEN, OPR_NOUNOPR } UnOpr;
FILE: Src/LuaPlus/lua51/src/ldblib.c
function db_getregistry (line 22) | static int db_getregistry (lua_State *L) {
function db_getmetatable (line 28) | static int db_getmetatable (lua_State *L) {
function db_setmetatable (line 37) | static int db_setmetatable (lua_State *L) {
function db_getfenv (line 47) | static int db_getfenv (lua_State *L) {
function db_setfenv (line 54) | static int db_setfenv (lua_State *L) {
function settabss (line 64) | static void settabss (lua_State *L, const char *i, const char *v) {
function settabsi (line 70) | static void settabsi (lua_State *L, const char *i, int v) {
function lua_State (line 76) | static lua_State *getthread (lua_State *L, int *arg) {
function treatstackoption (line 88) | static void treatstackoption (lua_State *L, lua_State *L1, const char *f...
function db_getinfo (line 99) | static int db_getinfo (lua_State *L) {
function db_getlocal (line 144) | static int db_getlocal (lua_State *L) {
function db_setlocal (line 165) | static int db_setlocal (lua_State *L) {
function auxupvalue (line 179) | static int auxupvalue (lua_State *L, int get) {
function db_getupvalue (line 192) | static int db_getupvalue (lua_State *L) {
function db_setupvalue (line 197) | static int db_setupvalue (lua_State *L) {
function hookf (line 207) | static void hookf (lua_State *L, lua_Debug *ar) {
function makemask (line 225) | static int makemask (const char *smask, int count) {
function gethooktable (line 245) | static void gethooktable (lua_State *L) {
function db_sethook (line 258) | static int db_sethook (lua_State *L) {
function db_gethook (line 282) | static int db_gethook (lua_State *L) {
function db_debug (line 302) | static int db_debug (lua_State *L) {
function db_errorfb (line 322) | static int db_errorfb (lua_State *L) {
function LUALIB_API (line 394) | LUALIB_API int luaopen_debug (lua_State *L) {
FILE: Src/LuaPlus/lua51/src/ldebug.c
function currentpc (line 36) | static int currentpc (lua_State *L, CallInfo *ci) {
function currentline (line 44) | static int currentline (lua_State *L, CallInfo *ci) {
function LUA_API (line 56) | LUA_API int lua_sethook (lua_State *L, lua_Hook func, int mask, int coun...
function LUA_API (line 69) | LUA_API lua_Hook lua_gethook (lua_State *L) {
function LUA_API (line 74) | LUA_API int lua_gethookmask (lua_State *L) {
function LUA_API (line 79) | LUA_API int lua_gethookcount (lua_State *L) {
function LUA_API (line 84) | LUA_API int lua_getstack (lua_State *L, int level, lua_Debug *ar) {
function Proto (line 107) | static Proto *getluaproto (CallInfo *ci) {
function LUA_API (line 127) | LUA_API const char *lua_getlocal (lua_State *L, const lua_Debug *ar, int...
function LUA_API (line 138) | LUA_API const char *lua_setlocal (lua_State *L, const lua_Debug *ar, int...
function funcinfo (line 150) | static void funcinfo (lua_Debug *ar, Closure *cl) {
function info_tailcall (line 167) | static void info_tailcall (lua_Debug *ar) {
function collectvalidlines (line 177) | static void collectvalidlines (lua_State *L, Closure *f) {
function auxgetinfo (line 193) | static int auxgetinfo (lua_State *L, const char *what, lua_Debug *ar,
function LUA_API (line 232) | LUA_API int lua_getinfo (lua_State *L, const char *what, lua_Debug *ar) {
function precheck (line 276) | static int precheck (const Proto *pt) {
function luaG_checkopenop (line 290) | int luaG_checkopenop (Instruction i) {
function checkArgMode (line 304) | static int checkArgMode (const Proto *pt, int r, enum OpArgMask mode) {
function Instruction (line 317) | static Instruction symbexec (const Proto *pt, int lastpc, int reg) {
function luaG_checkcode (line 484) | int luaG_checkcode (const Proto *pt) {
function isinstack (line 559) | static int isinstack (CallInfo *ci, const TValue *o) {
function luaG_typeerror (line 567) | void luaG_typeerror (lua_State *L, const TValue *o, const char *op) {
function luaG_concaterror (line 581) | void luaG_concaterror (lua_State *L, StkId p1, StkId p2) {
function luaG_aritherror (line 588) | void luaG_aritherror (lua_State *L, const TValue *p1, const TValue *p2) {
function luaG_ordererror (line 596) | int luaG_ordererror (lua_State *L, const TValue *p1, const TValue *p2) {
function addinfo (line 607) | static void addinfo (lua_State *L, const char *msg) {
function luaG_errormsg (line 618) | void luaG_errormsg (lua_State *L) {
function luaG_runerror (line 631) | void luaG_runerror (lua_State *L, const char *fmt, ...) {
FILE: Src/LuaPlus/lua51/src/ldo.c
type lua_longjmp (line 44) | struct lua_longjmp {
function luaD_seterrorobj (line 51) | void luaD_seterrorobj (lua_State *L, int errcode, StkId oldtop) {
function restore_stack_limit (line 71) | static void restore_stack_limit (lua_State *L) {
function resetstack (line 81) | static void resetstack (lua_State *L, int status) {
function luaD_throw (line 94) | void luaD_throw (lua_State *L, int errcode) {
function luaD_rawrunprotected (line 111) | int luaD_rawrunprotected (lua_State *L, Pfunc f, void *ud) {
function correctstack (line 126) | static void correctstack (lua_State *L, TValue *oldstack) {
function luaD_reallocstack (line 141) | void luaD_reallocstack (lua_State *L, int newsize) {
function luaD_reallocCI (line 152) | void luaD_reallocCI (lua_State *L, int newsize) {
function luaD_growstack (line 161) | void luaD_growstack (lua_State *L, int n) {
function CallInfo (line 169) | static CallInfo *growCI (lua_State *L) {
function luaD_callhook (line 181) | void luaD_callhook (lua_State *L, int event, int line) {
function StkId (line 208) | static StkId adjust_varargs (lua_State *L, Proto *p, int actual) {
function StkId (line 244) | static StkId tryfuncTM (lua_State *L, StkId func) {
function luaD_precall (line 265) | int luaD_precall (lua_State *L, StkId func, int nresults) {
function StkId (line 332) | static StkId callrethooks (lua_State *L, StkId firstResult) {
function luaD_poscall (line 343) | int luaD_poscall (lua_State *L, StkId firstResult) {
function luaD_call (line 370) | void luaD_call (lua_State *L, StkId func, int nResults) {
function resume (line 384) | static void resume (lua_State *L, void *ud) {
function resume_error (line 409) | static int resume_error (lua_State *L, const char *msg) {
function LUA_API (line 418) | LUA_API int lua_resume (lua_State *L, int nargs) {
function LUA_API (line 444) | LUA_API int lua_yield (lua_State *L, int nresults) {
function luaD_pcall (line 456) | int luaD_pcall (lua_State *L, Pfunc func, void *u,
type SParser (line 485) | struct SParser { /* data to `f_parser' */
function f_parser (line 491) | static void f_parser (lua_State *L, void *ud) {
function luaD_protectedparser (line 509) | int luaD_protectedparser (lua_State *L, ZIO *z, const char *name) {
FILE: Src/LuaPlus/lua51/src/ldump.c
type DumpState (line 18) | typedef struct {
function DumpBlock (line 29) | static void DumpBlock(const void* b, size_t size, DumpState* D)
function DumpChar (line 39) | static void DumpChar(int y, DumpState* D)
function DumpInt (line 45) | static void DumpInt(int x, DumpState* D)
function DumpNumber (line 50) | static void DumpNumber(lua_Number x, DumpState* D)
function DumpVector (line 55) | static void DumpVector(const void* b, int n, size_t size, DumpState* D)
function DumpString (line 61) | static void DumpString(const TString* s, DumpState* D)
function DumpConstants (line 80) | static void DumpConstants(const Proto* f, DumpState* D)
function DumpDebug (line 111) | static void DumpDebug(const Proto* f, DumpState* D)
function DumpFunction (line 129) | static void DumpFunction(const Proto* f, const TString* p, DumpState* D)
function DumpHeader (line 143) | static void DumpHeader(DumpState* D)
function luaU_dump (line 153) | int luaU_dump (lua_State* L, const Proto* f, lua_Writer w, void* data, i...
FILE: Src/LuaPlus/lua51/src/lfunc.c
function Closure (line 23) | Closure *luaF_newCclosure (lua_State *L, int nelems, Table *e) {
function Closure (line 33) | Closure *luaF_newLclosure (lua_State *L, int nelems, Table *e) {
function UpVal (line 44) | UpVal *luaF_newupval (lua_State *L) {
function UpVal (line 53) | UpVal *luaF_findupval (lua_State *L, StkId level) {
function unlinkupval (line 82) | static void unlinkupval (UpVal *uv) {
function luaF_freeupval (line 89) | void luaF_freeupval (lua_State *L, UpVal *uv) {
function luaF_close (line 96) | void luaF_close (lua_State *L, StkId level) {
function Proto (line 115) | Proto *luaF_newproto (lua_State *L) {
function luaF_freeproto (line 141) | void luaF_freeproto (lua_State *L, Proto *f) {
function luaF_freeclosure (line 152) | void luaF_freeclosure (lua_State *L, Closure *c) {
FILE: Src/LuaPlus/lua51/src/lgc.c
function removeentry (line 62) | static void removeentry (Node *n) {
function reallymarkobject (line 69) | static void reallymarkobject (global_State *g, GCObject *o) {
function marktmu (line 115) | static void marktmu (global_State *g) {
function luaC_separateudata (line 128) | size_t luaC_separateudata (lua_State *L, int all) {
function traversetable (line 158) | static int traversetable (global_State *g, Table *h) {
function traverseproto (line 203) | static void traverseproto (global_State *g, Proto *f) {
function traverseclosure (line 224) | static void traverseclosure (global_State *g, Closure *cl) {
function checkstacksizes (line 241) | static void checkstacksizes (lua_State *L, StkId max) {
function traversestack (line 256) | static void traversestack (global_State *g, lua_State *l) {
function l_mem (line 277) | static l_mem propagatemark (global_State *g) {
function propagateall (line 323) | static size_t propagateall (global_State *g) {
function iscleared (line 337) | static int iscleared (const TValue *o, int iskey) {
function cleartable (line 351) | static void cleartable (GCObject *l) {
function freeobj (line 378) | static void freeobj (lua_State *L, GCObject *o) {
function GCObject (line 407) | static GCObject **sweeplist (lua_State *L, GCObject **p, lu_mem count) {
function checkSizes (line 431) | static void checkSizes (lua_State *L) {
function GCTM (line 445) | static void GCTM (lua_State *L) {
function luaC_callGCTM (line 477) | void luaC_callGCTM (lua_State *L) {
function luaC_freeall (line 483) | void luaC_freeall (lua_State *L) {
function markmt (line 493) | static void markmt (global_State *g) {
function markroot (line 501) | static void markroot (lua_State *L) {
function remarkupvals (line 515) | static void remarkupvals (global_State *g) {
function atomic (line 525) | static void atomic (lua_State *L) {
function l_mem (line 556) | static l_mem singlestep (lua_State *L) {
function luaC_step (line 610) | void luaC_step (lua_State *L) {
function luaC_fullgc (line 635) | void luaC_fullgc (lua_State *L) {
function luaC_barrierf (line 661) | void luaC_barrierf (lua_State *L, GCObject *o, GCObject *v) {
function luaC_barrierback (line 674) | void luaC_barrierback (lua_State *L, Table *t) {
function luaC_link (line 685) | void luaC_link (lua_State *L, GCObject *o, lu_byte tt) {
function luaC_linkupval (line 694) | void luaC_linkupval (lua_State *L, UpVal *uv) {
FILE: Src/LuaPlus/lua51/src/linit.c
function LUALIB_API (line 30) | LUALIB_API void luaL_openlibs (lua_State *L) {
FILE: Src/LuaPlus/lua51/src/liolib.c
function pushresult (line 30) | static int pushresult (lua_State *L, int i, const char *filename) {
function fileerror (line 48) | static void fileerror (lua_State *L, int arg, const char *filename) {
function io_type (line 57) | static int io_type (lua_State *L) {
function FILE (line 72) | static FILE *tofile (lua_State *L) {
function FILE (line 86) | static FILE **newfile (lua_State *L) {
function io_noclose (line 98) | static int io_noclose (lua_State *L) {
function io_pclose (line 108) | static int io_pclose (lua_State *L) {
function io_fclose (line 119) | static int io_fclose (lua_State *L) {
function aux_close (line 127) | static int aux_close (lua_State *L) {
function io_close (line 134) | static int io_close (lua_State *L) {
function io_gc (line 142) | static int io_gc (lua_State *L) {
function io_tostring (line 151) | static int io_tostring (lua_State *L) {
function io_open (line 161) | static int io_open (lua_State *L) {
function io_popen (line 174) | static int io_popen (lua_State *L) {
function io_tmpfile (line 183) | static int io_tmpfile (lua_State *L) {
function FILE (line 190) | static FILE *getiofile (lua_State *L, int findex) {
function g_iofile (line 200) | static int g_iofile (lua_State *L, int f, const char *mode) {
function io_input (line 221) | static int io_input (lua_State *L) {
function io_output (line 226) | static int io_output (lua_State *L) {
function aux_lines (line 234) | static void aux_lines (lua_State *L, int idx, int toclose) {
function f_lines (line 241) | static int f_lines (lua_State *L) {
function io_lines (line 248) | static int io_lines (lua_State *L) {
function read_number (line 273) | static int read_number (lua_State *L, FILE *f) {
function test_eof (line 286) | static int test_eof (lua_State *L, FILE *f) {
function read_line (line 294) | static int read_line (lua_State *L, FILE *f) {
function read_chars (line 316) | static int read_chars (lua_State *L, FILE *f, size_t n) {
function g_read (line 334) | static int g_read (lua_State *L, FILE *f, int first) {
function io_read (line 381) | static int io_read (lua_State *L) {
function f_read (line 386) | static int f_read (lua_State *L) {
function io_readline (line 391) | static int io_readline (lua_State *L) {
function g_write (line 413) | static int g_write (lua_State *L, FILE *f, int arg) {
function io_write (line 432) | static int io_write (lua_State *L) {
function f_write (line 437) | static int f_write (lua_State *L) {
function f_seek (line 442) | static int f_seek (lua_State *L) {
function f_setvbuf (line 458) | static int f_setvbuf (lua_State *L) {
function io_flush (line 470) | static int io_flush (lua_State *L) {
function f_flush (line 475) | static int f_flush (lua_State *L) {
function createmeta (line 510) | static void createmeta (lua_State *L) {
function createstdfile (line 518) | static void createstdfile (lua_State *L, FILE *f, int k, const char *fna...
function newfenv (line 530) | static void newfenv (lua_State *L, lua_CFunction cls) {
function LUALIB_API (line 537) | LUALIB_API int luaopen_io (lua_State *L) {
FILE: Src/LuaPlus/lua51/src/llex.c
function save (line 51) | static void save (LexState *ls, int c) {
function luaX_init (line 64) | void luaX_init (lua_State *L) {
function luaX_lexerror (line 102) | void luaX_lexerror (LexState *ls, const char *msg, int token) {
function luaX_syntaxerror (line 112) | void luaX_syntaxerror (LexState *ls, const char *msg) {
function TString (line 117) | TString *luaX_newstring (LexState *ls, const char *str, size_t l) {
function inclinenumber (line 129) | static void inclinenumber (LexState *ls) {
function luaX_setinput (line 140) | void luaX_setinput (lua_State *L, LexState *ls, ZIO *z, TString *source) {
function check_next (line 163) | static int check_next (LexState *ls, const char *set) {
function buffreplace (line 171) | static void buffreplace (LexState *ls, char from, char to) {
function trydecpoint (line 179) | static void trydecpoint (LexState *ls, SemInfo *seminfo) {
function read_numeral (line 194) | static void read_numeral (LexState *ls, SemInfo *seminfo) {
function skip_sep (line 210) | static int skip_sep (LexState *ls) {
function read_long_string (line 223) | static void read_long_string (LexState *ls, SemInfo *seminfo, int sep) {
function read_string (line 278) | static void read_string (LexState *ls, int del, SemInfo *seminfo) {
function llex (line 334) | static int llex (LexState *ls, SemInfo *seminfo) {
function luaX_next (line 448) | void luaX_next (LexState *ls) {
function luaX_lookahead (line 459) | void luaX_lookahead (LexState *ls) {
FILE: Src/LuaPlus/lua51/src/llex.h
type RESERVED (line 24) | enum RESERVED {
type SemInfo (line 43) | typedef union {
type Token (line 49) | typedef struct Token {
type LexState (line 55) | typedef struct LexState {
FILE: Src/LuaPlus/lua51/src/llimits.h
type LUAI_UINT32 (line 18) | typedef LUAI_UINT32 lu_int32;
type LUAI_UMEM (line 20) | typedef LUAI_UMEM lu_mem;
type LUAI_MEM (line 22) | typedef LUAI_MEM l_mem;
type lu_byte (line 27) | typedef unsigned char lu_byte;
type LUAI_USER_ALIGNMENT_T (line 47) | typedef LUAI_USER_ALIGNMENT_T L_Umaxalign;
type LUAI_UACNUMBER (line 51) | typedef LUAI_UACNUMBER l_uacNumber;
type lu_int32 (line 88) | typedef lu_int32 Instruction;
FILE: Src/LuaPlus/lua51/src/lmathlib.c
function math_abs (line 26) | static int math_abs (lua_State *L) {
function math_sin (line 31) | static int math_sin (lua_State *L) {
function math_sinh (line 36) | static int math_sinh (lua_State *L) {
function math_cos (line 41) | static int math_cos (lua_State *L) {
function math_cosh (line 46) | static int math_cosh (lua_State *L) {
function math_tan (line 51) | static int math_tan (lua_State *L) {
function math_tanh (line 56) | static int math_tanh (lua_State *L) {
function math_asin (line 61) | static int math_asin (lua_State *L) {
function math_acos (line 66) | static int math_acos (lua_State *L) {
function math_atan (line 71) | static int math_atan (lua_State *L) {
function math_atan2 (line 76) | static int math_atan2 (lua_State *L) {
function math_ceil (line 81) | static int math_ceil (lua_State *L) {
function math_floor (line 86) | static int math_floor (lua_State *L) {
function math_fmod (line 91) | static int math_fmod (lua_State *L) {
function math_modf (line 96) | static int math_modf (lua_State *L) {
function math_sqrt (line 104) | static int math_sqrt (lua_State *L) {
function math_pow (line 109) | static int math_pow (lua_State *L) {
function math_log (line 114) | static int math_log (lua_State *L) {
function math_log10 (line 119) | static int math_log10 (lua_State *L) {
function math_exp (line 124) | static int math_exp (lua_State *L) {
function math_deg (line 129) | static int math_deg (lua_State *L) {
function math_rad (line 134) | static int math_rad (lua_State *L) {
function math_frexp (line 139) | static int math_frexp (lua_State *L) {
function math_ldexp (line 146) | static int math_ldexp (lua_State *L) {
function math_min (line 153) | static int math_min (lua_State *L) {
function math_max (line 167) | static int math_max (lua_State *L) {
function math_random (line 181) | static int math_random (lua_State *L) {
function math_randomseed (line 209) | static int math_randomseed (lua_State *L) {
function LUALIB_API (line 251) | LUALIB_API int luaopen_math (lua_State *L) {
FILE: Src/LuaPlus/lua51/src/loadlib.c
function ll_unloadlib (line 63) | static void ll_unloadlib (void *lib) {
function lua_CFunction (line 75) | static lua_CFunction ll_sym (lua_State *L, void *lib, const char *sym) {
function setprogdir (line 97) | static void setprogdir (lua_State *L) {
function pusherror (line 112) | static void pusherror (lua_State *L) {
function ll_unloadlib (line 122) | static void ll_unloadlib (void *lib) {
function lua_CFunction (line 134) | static lua_CFunction ll_sym (lua_State *L, void *lib, const char *sym) {
function pusherror (line 159) | static void pusherror (lua_State *L) {
function ll_unloadlib (line 186) | static void ll_unloadlib (void *lib) {
function lua_CFunction (line 212) | static lua_CFunction ll_sym (lua_State *L, void *lib, const char *sym) {
function ll_unloadlib (line 239) | static void ll_unloadlib (void *lib) {
function lua_CFunction (line 251) | static lua_CFunction ll_sym (lua_State *L, void *lib, const char *sym) {
function gctm (line 286) | static int gctm (lua_State *L) {
function ll_loadfunc (line 294) | static int ll_loadfunc (lua_State *L, const char *path, const char *sym) {
function ll_loadlib (line 309) | static int ll_loadlib (lua_State *L) {
function readable (line 332) | static int readable (const char *filename) {
function loaderror (line 374) | static void loaderror (lua_State *L, const char *filename) {
function loader_Lua (line 380) | static int loader_Lua (lua_State *L) {
function loader_C (line 402) | static int loader_C (lua_State *L) {
function loader_Croot (line 414) | static int loader_Croot (lua_State *L) {
function loader_preload (line 435) | static int loader_preload (lua_State *L) {
function ll_require (line 451) | static int ll_require (lua_State *L) {
function setfenv (line 507) | static void setfenv (lua_State *L) {
function dooptions (line 519) | static void dooptions (lua_State *L, int n) {
function modinit (line 529) | static void modinit (lua_State *L, const char *modname) {
function ll_module (line 544) | static int ll_module (lua_State *L) {
function ll_seeall (line 572) | static int ll_seeall (lua_State *L) {
function setpath (line 592) | static void setpath (lua_State *L, const char *fieldname, const char *en...
function LUALIB_API (line 627) | LUALIB_API int luaopen_package (lua_State *L) {
FILE: Src/LuaPlus/lua51/src/lobject.c
function luaO_int2fb (line 35) | int luaO_int2fb (unsigned int x) {
function luaO_fb2int (line 47) | int luaO_fb2int (int x) {
function luaO_log2 (line 54) | int luaO_log2 (unsigned int x) {
function luaO_rawequalObj (line 72) | int luaO_rawequalObj (const TValue *t1, const TValue *t2) {
function luaO_str2d (line 90) | int luaO_str2d (const char *s, lua_Number *result) {
function pushstr (line 104) | static void pushstr (lua_State *L, const char *str) {
function luaO_chunkid (line 182) | void luaO_chunkid (char *out, const char *source, size_t bufflen) {
FILE: Src/LuaPlus/lua51/src/lobject.h
type GCObject (line 36) | typedef union GCObject GCObject;
type GCheader (line 49) | typedef struct GCheader {
type Value (line 59) | typedef union {
type TValue (line 73) | typedef struct lua_TValue {
type TValue (line 193) | typedef TValue *StkId;
type TString (line 199) | typedef union TString {
type Udata (line 215) | typedef union Udata {
type Proto (line 231) | typedef struct Proto {
type LocVar (line 262) | typedef struct LocVar {
type UpVal (line 274) | typedef struct UpVal {
type CClosure (line 295) | typedef struct CClosure {
type LClosure (line 302) | typedef struct LClosure {
type Closure (line 309) | typedef union Closure {
type TKey (line 323) | typedef union TKey {
type Node (line 332) | typedef struct Node {
type Table (line 338) | typedef struct Table {
FILE: Src/LuaPlus/lua51/src/lopcodes.h
type OpMode (line 31) | enum OpMode {iABC, iABx, iAsBx}
type OpCode (line 150) | typedef enum {
type OpArgMask (line 245) | enum OpArgMask {
FILE: Src/LuaPlus/lua51/src/loslib.c
function os_pushresult (line 23) | static int os_pushresult (lua_State *L, int i, const char *filename) {
function os_execute (line 38) | static int os_execute (lua_State *L) {
function os_remove (line 44) | static int os_remove (lua_State *L) {
function os_rename (line 50) | static int os_rename (lua_State *L) {
function os_tmpname (line 57) | static int os_tmpname (lua_State *L) {
function os_getenv (line 68) | static int os_getenv (lua_State *L) {
function os_clock (line 74) | static int os_clock (lua_State *L) {
function setfield (line 88) | static void setfield (lua_State *L, const char *key, int value) {
function setboolfield (line 93) | static void setboolfield (lua_State *L, const char *key, int value) {
function getboolfield (line 100) | static int getboolfield (lua_State *L, const char *key) {
function getfield (line 109) | static int getfield (lua_State *L, const char *key, int d) {
function os_date (line 124) | static int os_date (lua_State *L) {
function os_time (line 170) | static int os_time (lua_State *L) {
function os_difftime (line 195) | static int os_difftime (lua_State *L) {
function os_setlocale (line 204) | static int os_setlocale (lua_State *L) {
function os_exit (line 216) | static int os_exit (lua_State *L) {
function LUALIB_API (line 239) | LUALIB_API int luaopen_os (lua_State *L) {
FILE: Src/LuaPlus/lua51/src/lparser.c
type BlockCnt (line 40) | typedef struct BlockCnt {
function anchor_token (line 57) | static void anchor_token (LexState *ls) {
function error_expected (line 65) | static void error_expected (LexState *ls, int token) {
function errorlimit (line 71) | static void errorlimit (FuncState *fs, int limit, const char *what) {
function testnext (line 80) | static int testnext (LexState *ls, int c) {
function check (line 89) | static void check (LexState *ls, int c) {
function checknext (line 94) | static void checknext (LexState *ls, int c) {
function check_match (line 104) | static void check_match (LexState *ls, int what, int who, int where) {
function TString (line 117) | static TString *str_checkname (LexState *ls) {
function init_exp (line 126) | static void init_exp (expdesc *e, expkind k, int i) {
function codestring (line 133) | static void codestring (LexState *ls, expdesc *e, TString *s) {
function checkname (line 138) | static void checkname(LexState *ls, expdesc *e) {
function registerlocalvar (line 143) | static int registerlocalvar (LexState *ls, TString *varname) {
function new_localvar (line 160) | static void new_localvar (LexState *ls, TString *name, int n) {
function adjustlocalvars (line 167) | static void adjustlocalvars (LexState *ls, int nvars) {
function removevars (line 176) | static void removevars (LexState *ls, int tolevel) {
function indexupvalue (line 183) | static int indexupvalue (FuncState *fs, TString *name, expdesc *v) {
function searchvar (line 207) | static int searchvar (FuncState *fs, TString *n) {
function markupval (line 217) | static void markupval (FuncState *fs, int level) {
function singlevaraux (line 224) | static int singlevaraux (FuncState *fs, TString *n, expdesc *var, int ba...
function singlevar (line 248) | static void singlevar (LexState *ls, expdesc *var) {
function adjust_assign (line 256) | static void adjust_assign (LexState *ls, int nvars, int nexps, expdesc *...
function enterlevel (line 276) | static void enterlevel (LexState *ls) {
function enterblock (line 285) | static void enterblock (FuncState *fs, BlockCnt *bl, lu_byte isbreakable) {
function leaveblock (line 296) | static void leaveblock (FuncState *fs) {
function pushclosure (line 310) | static void pushclosure (LexState *ls, FuncState *func, expdesc *v) {
function open_func (line 328) | static void open_func (LexState *ls, FuncState *fs) {
function close_func (line 356) | static void close_func (LexState *ls) {
function Proto (line 383) | Proto *luaY_parser (lua_State *L, ZIO *z, Mbuffer *buff, const char *nam...
function field (line 407) | static void field (LexState *ls, expdesc *v) {
function yindex (line 418) | static void yindex (LexState *ls, expdesc *v) {
type ConsControl (line 434) | struct ConsControl {
function recfield (line 443) | static void recfield (LexState *ls, struct ConsControl *cc) {
function closelistfield (line 464) | static void closelistfield (FuncState *fs, struct ConsControl *cc) {
function lastlistfield (line 475) | static void lastlistfield (FuncState *fs, struct ConsControl *cc) {
function listfield (line 490) | static void listfield (LexState *ls, struct ConsControl *cc) {
function constructor (line 498) | static void constructor (LexState *ls, expdesc *t) {
function parlist (line 543) | static void parlist (LexState *ls) {
function body (line 576) | static void body (LexState *ls, expdesc *e, int needself, int line) {
function explist1 (line 596) | static int explist1 (LexState *ls, expdesc *v) {
function funcargs (line 609) | static void funcargs (LexState *ls, expdesc *f) {
function prefixexp (line 667) | static void prefixexp (LexState *ls, expdesc *v) {
function primaryexp (line 690) | static void primaryexp (LexState *ls, expdesc *v) {
function simpleexp (line 727) | static void simpleexp (LexState *ls, expdesc *v) {
function UnOpr (line 778) | static UnOpr getunopr (int op) {
function BinOpr (line 788) | static BinOpr getbinopr (int op) {
function BinOpr (line 828) | static BinOpr subexpr (LexState *ls, expdesc *v, unsigned int limit) {
function expr (line 856) | static void expr (LexState *ls, expdesc *v) {
function block_follow (line 871) | static int block_follow (int token) {
function block (line 881) | static void block (LexState *ls) {
type LHS_assign (line 896) | struct LHS_assign {
function check_conflict (line 908) | static void check_conflict (LexState *ls, struct LHS_assign *lh, expdesc...
function assignment (line 931) | static void assignment (LexState *ls, struct LHS_assign *lh, int nvars) {
function cond (line 965) | static int cond (LexState *ls) {
function breakstat (line 975) | static void breakstat (LexState *ls) {
function whilestat (line 991) | static void whilestat (LexState *ls, int line) {
function repeatstat (line 1010) | static void repeatstat (LexState *ls, int line) {
function exp1 (line 1036) | static int exp1 (LexState *ls) {
function forbody (line 1046) | static void forbody (LexState *ls, int base, int line, int nvars, int is...
function fornum (line 1067) | static void fornum (LexState *ls, TString *varname, int line) {
function forlist (line 1089) | static void forlist (LexState *ls, TString *indexname) {
function forstat (line 1112) | static void forstat (LexState *ls, int line) {
FILE: Src/LuaPlus/lua51/src/lparser.h
type expkind (line 19) | typedef enum {
type expdesc (line 37) | typedef struct expdesc {
type upvaldesc (line 48) | typedef struct upvaldesc {
type BlockCnt (line 54) | struct BlockCnt
type FuncState (line 58) | typedef struct FuncState {
FILE: Src/LuaPlus/lua51/src/lstate.c
type LG (line 35) | typedef struct LG {
function stack_init (line 42) | static void stack_init (lua_State *L1, lua_State *L) {
function freestack (line 61) | static void freestack (lua_State *L, lua_State *L1) {
function f_luaopen (line 70) | static void f_luaopen (lua_State *L, void *ud) {
function preinit_state (line 84) | static void preinit_state (lua_State *L, global_State *g) {
function close_state (line 105) | static void close_state (lua_State *L) {
function lua_State (line 119) | lua_State *luaE_newthread (lua_State *L) {
function luaE_freethread (line 134) | void luaE_freethread (lua_State *L, lua_State *L1) {
function LUA_API (line 143) | LUA_API lua_State *lua_newstate (lua_Alloc f, void *ud) {
function callallgcTM (line 193) | static void callallgcTM (lua_State *L, void *ud) {
function LUA_API (line 199) | LUA_API void lua_close (lua_State *L) {
FILE: Src/LuaPlus/lua51/src/lstate.h
type lua_longjmp (line 18) | struct lua_longjmp
type stringtable (line 38) | typedef struct stringtable {
type CallInfo (line 48) | typedef struct CallInfo {
type global_State (line 68) | typedef struct global_State {
type lua_State (line 100) | struct lua_State {
type Table (line 141) | struct Table
type Proto (line 142) | struct Proto
type UpVal (line 143) | struct UpVal
type lua_State (line 144) | struct lua_State
FILE: Src/LuaPlus/lua51/src/lstring.c
function luaS_resize (line 22) | void luaS_resize (lua_State *L, int newsize) {
function TString (line 50) | static TString *newlstr (lua_State *L, const char *str, size_t l,
function TString (line 75) | TString *luaS_newlstr (lua_State *L, const char *str, size_t l) {
function Udata (line 96) | Udata *luaS_newudata (lua_State *L, size_t s, Table *e) {
FILE: Src/LuaPlus/lua51/src/lstrlib.c
function str_len (line 28) | static int str_len (lua_State *L) {
function posrelat (line 36) | static ptrdiff_t posrelat (ptrdiff_t pos, size_t len) {
function str_sub (line 43) | static int str_sub (lua_State *L) {
function str_reverse (line 57) | static int str_reverse (lua_State *L) {
function str_lower (line 68) | static int str_lower (lua_State *L) {
function str_upper (line 81) | static int str_upper (lua_State *L) {
function str_rep (line 93) | static int str_rep (lua_State *L) {
function str_byte (line 106) | static int str_byte (lua_State *L) {
function str_char (line 125) | static int str_char (lua_State *L) {
function writer (line 140) | static int writer (lua_State *L, const void* b, size_t size, void* B) {
function str_dump (line 147) | static int str_dump (lua_State *L) {
type MatchState (line 170) | typedef struct MatchState {
function check_capture (line 186) | static int check_capture (MatchState *ms, int l) {
function capture_to_close (line 194) | static int capture_to_close (MatchState *ms) {
function match_class (line 226) | static int match_class (int c, int cl) {
function matchbracketclass (line 245) | static int matchbracketclass (int c, const char *p, const char *ec) {
function singlematch (line 268) | static int singlematch (int c, const char *p, const char *ep) {
function push_onecapture (line 466) | static void push_onecapture (MatchState *ms, int i, const char *s,
function push_captures (line 485) | static int push_captures (MatchState *ms, const char *s, const char *e) {
function str_find_aux (line 495) | static int str_find_aux (lua_State *L, int find) {
function str_find (line 538) | static int str_find (lua_State *L) {
function str_match (line 543) | static int str_match (lua_State *L) {
function gmatch_aux (line 548) | static int gmatch_aux (lua_State *L) {
function gmatch (line 574) | static int gmatch (lua_State *L) {
function gfind_nodef (line 584) | static int gfind_nodef (lua_State *L) {
function add_s (line 590) | static void add_s (MatchState *ms, luaL_Buffer *b, const char *s,
function add_value (line 612) | static void add_value (MatchState *ms, luaL_Buffer *b, const char *s,
function str_gsub (line 644) | static int str_gsub (lua_State *L) {
function addquoted (line 696) | static void addquoted (lua_State *L, luaL_Buffer *b, int arg) {
function addintlen (line 747) | static void addintlen (char *form) {
function str_format (line 756) | static int str_format (lua_State *L) {
function createmetatable (line 847) | static void createmetatable (lua_State *L) {
function LUALIB_API (line 862) | LUALIB_API int luaopen_string (lua_State *L) {
FILE: Src/LuaPlus/lua51/src/ltable.c
function Node (line 84) | static Node *hashnum (const Table *t, lua_Number n) {
function Node (line 100) | static Node *mainposition (const Table *t, const TValue *key) {
function arrayindex (line 120) | static int arrayindex (const TValue *key) {
function findindex (line 137) | static int findindex (lua_State *L, Table *t, StkId key) {
function luaH_next (line 162) | int luaH_next (lua_State *L, Table *t, StkId key) {
function computesizes (line 189) | static int computesizes (int nums[], int *narray) {
function countint (line 211) | static int countint (const TValue *key, int *nums) {
function numusearray (line 222) | static int numusearray (const Table *t, int *nums) {
function numusehash (line 247) | static int numusehash (const Table *t, int *nums, int *pnasize) {
function setarrayvector (line 263) | static void setarrayvector (lua_State *L, Table *t, int size) {
function setnodevector (line 272) | static void setnodevector (lua_State *L, Table *t, int size) {
function resize (line 297) | static void resize (lua_State *L, Table *t, int nasize, int nhsize) {
function luaH_resizearray (line 327) | void luaH_resizearray (lua_State *L, Table *t, int nasize) {
function rehash (line 333) | static void rehash (lua_State *L, Table *t, const TValue *ek) {
function Table (line 358) | Table *luaH_new (lua_State *L, int narray, int nhash) {
function luaH_free (line 374) | void luaH_free (lua_State *L, Table *t) {
function Node (line 382) | static Node *getfreepos (Table *t) {
function TValue (line 399) | static TValue *newkey (lua_State *L, Table *t, const TValue *key) {
function TValue (line 435) | const TValue *luaH_getnum (Table *t, int key) {
function TValue (line 455) | const TValue *luaH_getstr (Table *t, TString *key) {
function TValue (line 469) | const TValue *luaH_get (Table *t, const TValue *key) {
function TValue (line 494) | TValue *luaH_set (lua_State *L, Table *t, const TValue *key) {
function TValue (line 508) | TValue *luaH_setnum (lua_State *L, Table *t, int key) {
function TValue (line 520) | TValue *luaH_setstr (lua_State *L, Table *t, TString *key) {
function unbound_search (line 532) | static int unbound_search (Table *t, unsigned int j) {
function luaH_getn (line 560) | int luaH_getn (Table *t) {
function Node (line 582) | Node *luaH_mainposition (const Table *t, const TValue *key) {
function luaH_isdummy (line 586) | int luaH_isdummy (Node *n) { return n == dummynode; }
FILE: Src/LuaPlus/lua51/src/ltablib.c
function foreachi (line 22) | static int foreachi (lua_State *L) {
function foreach (line 39) | static int foreach (lua_State *L) {
function maxn (line 56) | static int maxn (lua_State *L) {
function getn (line 72) | static int getn (lua_State *L) {
function setn (line 78) | static int setn (lua_State *L) {
function tinsert (line 90) | static int tinsert (lua_State *L) {
function tremove (line 118) | static int tremove (lua_State *L) {
function addfield (line 135) | static void addfield (lua_State *L, luaL_Buffer *b, int i) {
function tconcat (line 144) | static int tconcat (lua_State *L) {
function set2 (line 173) | static void set2 (lua_State *L, int i, int j) {
function sort_comp (line 178) | static int sort_comp (lua_State *L, int a, int b) {
function auxsort (line 193) | static void auxsort (lua_State *L, int l, int u) {
function sort (line 256) | static int sort (lua_State *L) {
function LUALIB_API (line 283) | LUALIB_API int luaopen_table (lua_State *L) {
FILE: Src/LuaPlus/lua51/src/ltm.c
function luaT_init (line 30) | void luaT_init (lua_State *L) {
function TValue (line 50) | const TValue *luaT_gettm (Table *events, TMS event, TString *ename) {
function TValue (line 61) | const TValue *luaT_gettmbyobj (lua_State *L, const TValue *o, TMS event) {
FILE: Src/LuaPlus/lua51/src/ltm.h
type TMS (line 18) | typedef enum {
FILE: Src/LuaPlus/lua51/src/lua.c
function lstop (line 28) | static void lstop (lua_State *L, lua_Debug *ar) {
function laction (line 35) | static void laction (int i) {
function print_usage (line 42) | static void print_usage (void) {
function l_message (line 58) | static void l_message (const char *pname, const char *msg) {
function report (line 65) | static int report (lua_State *L, int status) {
function traceback (line 76) | static int traceback (lua_State *L) {
function docall (line 96) | static int docall (lua_State *L, int narg, int clear) {
function print_version (line 111) | static void print_version (void) {
function getargs (line 116) | static int getargs (lua_State *L, char **argv, int n) {
function dofile (line 134) | static int dofile (lua_State *L, const char *name) {
function dostring (line 140) | static int dostring (lua_State *L, const char *s, const char *name) {
function dolibrary (line 146) | static int dolibrary (lua_State *L, const char *name) {
function incomplete (line 163) | static int incomplete (lua_State *L, int status) {
function pushline (line 177) | static int pushline (lua_State *L, int firstline) {
function loadline (line 196) | static int loadline (lua_State *L) {
function dotty (line 216) | static void dotty (lua_State *L) {
function handle_script (line 239) | static int handle_script (lua_State *L, char **argv, int n) {
function collectargs (line 261) | static int collectargs (char **argv, int *pi, int *pv, int *pe) {
function runargs (line 294) | static int runargs (lua_State *L, char **argv, int n) {
function handle_luainit (line 323) | static int handle_luainit (lua_State *L) {
type Smain (line 333) | struct Smain {
function pmain (line 340) | static int pmain (lua_State *L) {
function main (line 377) | int main (int argc, char **argv) {
FILE: Src/LuaPlus/lua51/src/lua.h
type lua_State (line 50) | typedef struct lua_State lua_State;
type LUA_NUMBER (line 99) | typedef LUA_NUMBER lua_Number;
type LUA_INTEGER (line 103) | typedef LUA_INTEGER lua_Integer;
type lua_Debug (line 326) | typedef struct lua_Debug lua_Debug;
type lua_Debug (line 346) | struct lua_Debug {
FILE: Src/LuaPlus/lua51/src/luac.c
function fatal (line 36) | static void fatal(const char* message)
function cannot (line 42) | static void cannot(const char* what)
function usage (line 48) | static void usage(const char* message)
function doargs (line 70) | static int doargs(int argc, char* argv[])
function Proto (line 119) | static const Proto* combine(lua_State* L, int n)
function writer (line 147) | static int writer(lua_State* L, const void* p, size_t size, void* u)
type Smain (line 153) | struct Smain {
function pmain (line 158) | static int pmain(lua_State* L)
function main (line 186) | int main(int argc, char* argv[])
FILE: Src/LuaPlus/lua51/src/lundump.c
type LoadState (line 23) | typedef struct {
function error (line 36) | static void error(LoadState* S, const char* why)
function LoadBlock (line 48) | static void LoadBlock(LoadState* S, void* b, size_t size)
function LoadChar (line 54) | static int LoadChar(LoadState* S)
function LoadInt (line 61) | static int LoadInt(LoadState* S)
function lua_Number (line 69) | static lua_Number LoadNumber(LoadState* S)
function TString (line 76) | static TString* LoadString(LoadState* S)
function LoadCode (line 90) | static void LoadCode(LoadState* S, Proto* f)
function LoadConstants (line 100) | static void LoadConstants(LoadState* S, Proto* f)
function LoadDebug (line 137) | static void LoadDebug(LoadState* S, Proto* f)
function Proto (line 161) | static Proto* LoadFunction(LoadState* S, TString* p)
function LoadHeader (line 183) | static void LoadHeader(LoadState* S)
function Proto (line 195) | Proto* luaU_undump (lua_State* L, ZIO* Z, Mbuffer* buff, const char* name)
function luaU_header (line 214) | void luaU_header (char* h)
FILE: Src/LuaPlus/lua51/src/lvm.c
function TValue (line 35) | const TValue *luaV_tonumber (const TValue *obj, TValue *n) {
function luaV_tostring (line 47) | int luaV_tostring (lua_State *L, StkId obj) {
function traceexec (line 60) | static void traceexec (lua_State *L, const Instruction *pc) {
function callTMres (line 80) | static void callTMres (lua_State *L, StkId res, const TValue *f,
function callTM (line 96) | static void callTM (lua_State *L, const TValue *f, const TValue *p1,
function luaV_gettable (line 108) | void luaV_gettable (lua_State *L, const TValue *t, TValue *key, StkId va...
function luaV_settable (line 134) | void luaV_settable (lua_State *L, const TValue *t, TValue *key, StkId va...
function call_binTM (line 165) | static int call_binTM (lua_State *L, const TValue *p1, const TValue *p2,
function TValue (line 176) | static const TValue *get_compTM (lua_State *L, Table *mt1, Table *mt2,
function call_orderTM (line 190) | static int call_orderTM (lua_State *L, const TValue *p1, const TValue *p2,
function l_strcmp (line 203) | static int l_strcmp (const TString *ls, const TString *rs) {
function luaV_lessthan (line 225) | int luaV_lessthan (lua_State *L, const TValue *l, const TValue *r) {
function lessequal (line 239) | static int lessequal (lua_State *L, const TValue *l, const TValue *r) {
function luaV_equalval (line 255) | int luaV_equalval (lua_State *L, const TValue *t1, const TValue *t2) {
function luaV_concat (line 282) | void luaV_concat (lua_State *L, int total, int last) {
function Arith (line 317) | static void Arith (lua_State *L, StkId ra, const TValue *rb,
function luaV_execute (line 377) | void luaV_execute (lua_State *L, int nexeccalls) {
FILE: Src/LuaPlus/lua51/src/lzio.c
function luaZ_fill (line 21) | int luaZ_fill (ZIO *z) {
function luaZ_lookahead (line 35) | int luaZ_lookahead (ZIO *z) {
function luaZ_init (line 48) | void luaZ_init (lua_State *L, ZIO *z, lua_Reader reader, void *data) {
function luaZ_read (line 58) | size_t luaZ_read (ZIO *z, void *b, size_t n) {
FILE: Src/LuaPlus/lua51/src/lzio.h
type ZIO (line 18) | typedef struct Zio ZIO;
type Mbuffer (line 24) | typedef struct Mbuffer {
type Zio (line 56) | struct Zio {
FILE: Src/LuaPlus/lua51/src/print.c
function PrintString (line 23) | static void PrintString(const TString* ts)
function PrintConstant (line 51) | static void PrintConstant(const Proto* f, int i)
function PrintCode (line 74) | static void PrintCode(const Proto* f)
function PrintHeader (line 161) | static void PrintHeader(const Proto* f)
function PrintConstants (line 181) | static void PrintConstants(const Proto* f)
function PrintLocals (line 193) | static void PrintLocals(const Proto* f)
function PrintUpvalues (line 204) | static void PrintUpvalues(const Proto* f)
function PrintFunction (line 215) | void PrintFunction(const Proto* f, int full)
FILE: Src/LuaPlus/lua52-luaplus/src/lapi.c
function TValue (line 55) | static TValue *index2addr (lua_State *L, int idx) {
function growstack (line 94) | static void growstack (lua_State *L, void *ud) {
function LUA_API (line 100) | LUA_API int lua_checkstack (lua_State *L, int size) {
function LUA_API (line 120) | LUA_API void lua_xmove (lua_State *from, lua_State *to, int n) {
function LUA_API (line 135) | LUA_API lua_CFunction lua_atpanic (lua_State *L, lua_CFunction panicf) {
function LUA_API (line 145) | LUA_API const lua_Number *lua_version (lua_State *L) {
function LUA_API (line 161) | LUA_API int lua_absindex (lua_State *L, int idx) {
function LUA_API (line 168) | LUA_API int lua_gettop (lua_State *L) {
function LUA_API (line 173) | LUA_API void lua_settop (lua_State *L, int idx) {
function LUA_API (line 190) | LUA_API void lua_remove (lua_State *L, int idx) {
function LUA_API (line 201) | LUA_API void lua_insert (lua_State *L, int idx) {
function moveto (line 214) | static void moveto (lua_State *L, TValue *fr, int idx) {
function LUA_API (line 225) | LUA_API void lua_replace (lua_State *L, int idx) {
function LUA_API (line 234) | LUA_API void lua_copy (lua_State *L, int fromidx, int toidx) {
function LUA_API (line 243) | LUA_API void lua_pushvalue (lua_State *L, int idx) {
function LUA_API (line 257) | LUA_API int lua_type (lua_State *L, int idx) {
function LUA_API (line 263) | LUA_API const char *lua_typename (lua_State *L, int t) {
function LUA_API (line 269) | LUA_API int lua_iscfunction (lua_State *L, int idx) {
function LUA_API (line 275) | LUA_API int lua_isnumber (lua_State *L, int idx) {
function LUA_API (line 282) | LUA_API int lua_isstring (lua_State *L, int idx) {
function LUA_API (line 288) | LUA_API int lua_isuserdata (lua_State *L, int idx) {
function LUA_API (line 294) | LUA_API int lua_rawequal (lua_State *L, int index1, int index2) {
function LUA_API (line 301) | LUA_API void lua_arith (lua_State *L, int op) {
function LUA_API (line 324) | LUA_API int lua_compare (lua_State *L, int index1, int index2, int op) {
function LUA_API (line 343) | LUA_API lua_Number lua_tonumberx (lua_State *L, int idx, int *isnum) {
function LUA_API (line 357) | LUA_API lua_Integer lua_tointegerx (lua_State *L, int idx, int *isnum) {
function LUA_API (line 374) | LUA_API lua_Unsigned lua_tounsignedx (lua_State *L, int idx, int *isnum) {
function LUA_API (line 391) | LUA_API int lua_toboolean (lua_State *L, int idx) {
function LUA_API (line 397) | LUA_API const char *lua_tolstring (lua_State *L, int idx, size_t *len) {
function LUA_API (line 415) | LUA_API size_t lua_rawlen (lua_State *L, int idx) {
function LUA_
Copy disabled (too large)
Download .json
Condensed preview — 5000 files, each showing path, character count, and a content snippet. Download the .json file for the full structured content (71,263K chars).
[
{
"path": ".gitignore",
"chars": 51,
"preview": ".DS_Store\nCVS/\n.build*/\nbin.*/\nbuild*/\nobj/\n.svn/\n\n"
},
{
"path": ".gitmodules",
"chars": 96,
"preview": "[submodule \"Tools/JamPlus\"]\n\tpath = Tools/JamPlus\n\turl = https://github.com/jamplus/jamplus.git\n"
},
{
"path": "AddAutoExp.bat",
"chars": 27,
"preview": "lua \"%~dp0AddAutoExp.lua\"\r\n"
},
{
"path": "AddAutoExp.lua",
"chars": 1264,
"preview": "require \"ex\"\r\n\r\nfunction AddAutoExp(autoexpFileName)\r\n\tlocal ignore = false\r\n\r\n\tlocal file = io.open(autoexpFileName .. "
},
{
"path": "AutoExpAdditions.txt",
"chars": 5559,
"preview": "; -- LuaPlus and Lua begin --\n;------------------------------------------------------------------------------\n;---------"
},
{
"path": "BootstrapJamPlus-linux64",
"chars": 78,
"preview": "git submodule update --init\ncd Tools/JamPlus\n./bootstrap-linux64.sh\ncd ../..\n\n"
},
{
"path": "BootstrapJamPlus-macosx64",
"chars": 79,
"preview": "git submodule update --init\ncd Tools/JamPlus\n./bootstrap-macosx64.sh\ncd ../..\n\n"
},
{
"path": "BootstrapJamPlus-win64.bat",
"chars": 91,
"preview": "@echo off\ncall git submodule update --init\ncall %~dp0Tools\\JamPlus\\bootstrap-win64-vc.bat\n\n"
},
{
"path": "CreateJamLinuxWorkspace.config",
"chars": 250,
"preview": "Config =\n{\n\tJamfileVariables =\n\t{\n\t\t{ 'LUA_VERSION', { 'lua53-luaplus', 'lua53', 'lua52-luaplus', 'lua52', 'lua51-luaplu"
},
{
"path": "CreateJamLinuxWorkspace.sh",
"chars": 110,
"preview": "Tools/JamPlus/bin/linux64/jam --workspace -gen=none -config=CreateJamLinuxWorkspace.config Jamfile.jam .build\n"
},
{
"path": "CreateJamWindowsWorkspace.config",
"chars": 407,
"preview": "Config =\n{\n\tPlatforms =\n\t{\n\t\t'win64', 'win32',\n\t},\n\n\tUserVariables = {\n\t --{ 'LUA_VERSION', { 'lua51', 'lua51-luaplus"
},
{
"path": "CreateJamXcodeWorkspace.config",
"chars": 250,
"preview": "Config =\n{\n\tJamfileVariables =\n\t{\n\t\t{ 'LUA_VERSION', { 'lua51', 'lua51-luaplus', 'lua52', 'lua52-luaplus', 'lua53', 'lua"
},
{
"path": "CreateJamXcodeWorkspace.sh",
"chars": 112,
"preview": "Tools/JamPlus/bin/macosx64/jam --workspace -gen=xcode -config=CreateJamXcodeWorkspace.config Jamfile.jam .build\n"
},
{
"path": "CreateVS2017Workspace.bat",
"chars": 141,
"preview": "@%~dp0Tools\\JamPlus\\bin\\win64\\jam --workspace -gen=vs2017 --compiler=vs2017 -config=CreateJamWindowsWorkspace.config Jam"
},
{
"path": "CreateVS2019Workspace.bat",
"chars": 141,
"preview": "@%~dp0Tools\\JamPlus\\bin\\win64\\jam --workspace -gen=vs2019 --compiler=vs2019 -config=CreateJamWindowsWorkspace.config Jam"
},
{
"path": "Docs/LuaCopyright",
"chars": 1508,
"preview": "Lua License\n-----------\n\nLua is licensed under the terms of the MIT license reproduced below.\nThis mean that Lua is free"
},
{
"path": "Docs/LuaManual.html",
"chars": 240544,
"preview": "<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 3.2 Final//EN\">\n<html>\n\n<head>\n<title>Lua 5.1 Reference Manual</title>\n<link rel"
},
{
"path": "Docs/LuaPlus.html",
"chars": 91372,
"preview": "<html>\r\n\r\n<head>\r\n<meta http-equiv=\"Content-Language\" content=\"en-us\">\r\n<meta name=\"GENERATOR\" content=\"Microsoft FrontP"
},
{
"path": "Docs/LuaPlusBuilds.html",
"chars": 27617,
"preview": "<html>\n\n<head>\n<meta http-equiv=\"Content-Language\" content=\"en-us\">\n<meta name=\"GENERATOR\" content=\"Microsoft FrontPage "
},
{
"path": "Docs/LuaPlusCallDispatcher.html",
"chars": 34157,
"preview": "<html>\n\n<head>\n<meta http-equiv=\"Content-Language\" content=\"en-us\">\n<meta name=\"GENERATOR\" content=\"Microsoft FrontPage "
},
{
"path": "Jamfile.jam",
"chars": 2126,
"preview": "SubDir LUAPLUS ;\n\n#C.Defines * : LUA_WIDESTRING=1 LUA_WIDESTRING_FILE=1 ;\n\nWorkspace LuaPlus :\n\t\tlua\n\t\tluac\n\t\t$(LUA_VERS"
},
{
"path": "LUAPLUS.jamrules",
"chars": 7629,
"preview": "if ! $(LUA_VERSION) {\n local dirs = [ Glob $(LUAPLUS)/Src/LuaPlus : */ : 1 ] ;\n dirs = $(dirs:P) ;\n dirs = $(di"
},
{
"path": "License.txt",
"chars": 1826,
"preview": "LuaPlus License\n---------------\n\nLuaPlus, like Lua, is licensed under the terms of the MIT license and can be\nused unres"
},
{
"path": "README.md",
"chars": 4819,
"preview": "# Building LuaPlus for Windows\n\n## Prerequisites\n\n* Download _Wget_. One location to grab it from is [https://eternallyb"
},
{
"path": "Samples/ManagedLuaPlusTest/AssemblyInfo.cs",
"chars": 2390,
"preview": "using System.Reflection;\nusing System.Runtime.CompilerServices;\n\n//\n// General Information about an assembly is controll"
},
{
"path": "Samples/ManagedLuaPlusTest/Class1.cs",
"chars": 4436,
"preview": "using System;\nusing System.IO;\nusing ManagedLuaPlus;\n\nnamespace ManagedLuaPlusTest\n{\n\t/// <summary>\n\t/// Summary descrip"
},
{
"path": "Samples/ManagedLuaPlusTest/ManagedLuaPlusTest.csproj",
"chars": 4135,
"preview": "<VisualStudioProject>\n <CSHARP\n ProjectType = \"Local\"\n ProductVersion = \"7.10.3077\"\n SchemaVersi"
},
{
"path": "Samples/ManagedLuaPlusTest/ManagedLuaPlusTest.sln",
"chars": 900,
"preview": "Microsoft Visual Studio Solution File, Format Version 8.00\nProject(\"{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}\") = \"ManagedL"
},
{
"path": "Samples/ManagedLuaPlusTest/ManagedLuaPlusTest.slnenv",
"chars": 39,
"preview": "PATH=$(SolutionDir)\\..\\..\\Bin;$(PATH)\n\n"
},
{
"path": "Samples/MinimalTestLib/MinimalTestLib.cpp",
"chars": 1034,
"preview": "#include \"LuaPlus/LuaPlus.h\"\nusing namespace LuaPlus;\nextern \"C\" {\n#include \"lualib.h\"\n}\n//#include <math.h>\n//#include "
},
{
"path": "Samples/MinimalTestLib/MinimalTestLib.jam",
"chars": 443,
"preview": "{\n\nSubDir LUAPLUS Samples MinimalTestLib ;\n\nLUAPLUS_OUTPUT_DIRECTORY = $(ALL_LOCATE_TARGET)/image ;\nC.OutputPath * : $(A"
},
{
"path": "Samples/Simple/Jamfile.jam",
"chars": 513,
"preview": "{\n\nSubDir LUAPLUS Samples Simple ;\n\nlocal SRCS =\n\t\tSimple.cpp\n;\n\n#LUAPLUS_OUTPUT_DIRECTORY = $(ALL_LOCATE_TARGET)/image "
},
{
"path": "Samples/Simple/Simple.cpp",
"chars": 204,
"preview": "#include \"LuaPlus/LuaPlus.h\"\n\nusing namespace LuaPlus;\n\nint main()\n{\n\tLuaStateOwner state(true);\n\tint ret = state->DoStr"
},
{
"path": "Samples/TestClass/TestClass.cpp",
"chars": 16728,
"preview": "#include \"LuaPlus/LuaPlus.h\"\nusing namespace LuaPlus;\n#include <string>\n#include \"lstate.h\"\n\nnamespace LPCD\n{\n\ttemplate<"
},
{
"path": "Samples/TestClass/TestClass.jam",
"chars": 419,
"preview": "{\n\nSubDir LUAPLUS Samples TestClass ;\n\nLUAPLUS_OUTPUT_DIRECTORY = $(ALL_LOCATE_TARGET)/image ;\nC.OutputPath * : $(ALL_LO"
},
{
"path": "Samples/TestScript/.gitignore",
"chars": 68,
"preview": "MemoryDump.txt\r\ndump.lua\r\ndump.txt\r\ntest.lua\r\ntest1.lua\r\ntest2.lua\r\n"
},
{
"path": "Samples/TestScript/CompileMe.lua",
"chars": 24,
"preview": "global = 10\n\nprint(\"Hi\")"
},
{
"path": "Samples/TestScript/CreateVS2017Workspace.bat",
"chars": 76,
"preview": "@jam --workspace --gen=vs2017 --compiler=vs2017 --gui TestScript.jam .build\n"
},
{
"path": "Samples/TestScript/Jamfile.jam",
"chars": 25,
"preview": "include TestScript.jam ;\n"
},
{
"path": "Samples/TestScript/ScriptArrayTest.lua",
"chars": 77,
"preview": "TestArray =\n{\n\t\"String 1\",\n\t5,\n\t\"String 2\",\n\t\"String 3\",\n\t[1000] = 10.0,\n}\n\n\n"
},
{
"path": "Samples/TestScript/ScriptCallbackTest.lua",
"chars": 56,
"preview": "Number = 5\n\nPrintNumber(Number)\nPrintNumber(Add(1, 2))\n\n"
},
{
"path": "Samples/TestScript/ScriptDumpTest.lua",
"chars": 12,
"preview": "Number = 5\n\n"
},
{
"path": "Samples/TestScript/ScriptSaveTest.lua",
"chars": 398,
"preview": "TestNumber = 5\nTestString = \"Hello\"\n\nTestTable =\n{\n Value1 = 5,\n Value2 = \"Hi\",\n Value3 = { [1] = 5, [100] = 50 },\n "
},
{
"path": "Samples/TestScript/ScriptVectorDump.lua",
"chars": 1129,
"preview": "VectorMetaTable =\n{\n\tFormattedWrite = function(file, value, alphabetical, indentLevel,\n\t\t\tmaxIndentLevel, writeAll, writ"
},
{
"path": "Samples/TestScript/SimpleHeap.cpp",
"chars": 29956,
"preview": "#include \"SimpleHeap.h\"\r\n#include <windows.h>\r\n#include <stdio.h>\r\n#include <stdlib.h>\r\n#include <assert.h>\r\n\r\n#define S"
},
{
"path": "Samples/TestScript/SimpleHeap.h",
"chars": 2430,
"preview": "#ifndef SIMPLEHEAP_H\n#define SIMPLEHEAP_H\n\n#include <stdio.h>\n\n#define SIMPLEHEAP_STATS\n\nnamespace SimpleMem {\n\n////////"
},
{
"path": "Samples/TestScript/TestScript.cpp",
"chars": 47616,
"preview": "#include \"LuaPlus/LuaPlus.h\"\nusing namespace LuaPlus;\n#include \"SimpleHeap.h\"\n#include \"Timer.h\"\n#include <math.h>\n#incl"
},
{
"path": "Samples/TestScript/TestScript.jam",
"chars": 569,
"preview": "{\n\nSubDir LUAPLUS Samples TestScript ;\n\nLUAPLUS_OUTPUT_DIRECTORY = $(ALL_LOCATE_TARGET)/image ;\nC.OutputPath * : $(ALL_L"
},
{
"path": "Samples/TestScript/Timer.h",
"chars": 1156,
"preview": "// This code is from the Workspace Whiz! source distribution.\n// Copyright 2000 Joshua C. Jensen\n#if defined(_MSC_VER)\n#"
},
{
"path": "Samples/TestScript/testgc.lua",
"chars": 475,
"preview": "iters = 1 --1000\nlistlen = 2 --100\nmaster = {}\n\nfunction mklist(n,tail)\n if n == 0 then return tail end;\n local head ="
},
{
"path": "Samples/TestSuite/.gitignore",
"chars": 13,
"preview": "CompileMe.lc\n"
},
{
"path": "Samples/TestSuite/CompileMe.lua",
"chars": 25,
"preview": "global = 10\n\nprint(\"Hi\")\n"
},
{
"path": "Samples/TestSuite/TestSuite.cpp",
"chars": 59062,
"preview": "// TestSuite.cpp : Defines the entry point for the console application.\r\n//\r\n\r\n#include \"stdafx.h\"\r\n#include \"../TestScr"
},
{
"path": "Samples/TestSuite/TestSuite.jam",
"chars": 846,
"preview": "{\n\nSubDir LUAPLUS Samples TestSuite ;\n\nLUAPLUS_OUTPUT_DIRECTORY = $(ALL_LOCATE_TARGET)/image ;\nC.OutputPath * : $(ALL_LO"
},
{
"path": "Samples/TestSuite/stdafx.cpp",
"chars": 288,
"preview": "// stdafx.cpp : source file that includes just the standard includes\n// TestSuite.pch will be the pre-compiled header\n//"
},
{
"path": "Samples/TestSuite/stdafx.h",
"chars": 89,
"preview": "#pragma once\n\n#include <stdio.h>\n\n#include \"LuaPlus/LuaPlus.h\"\nusing namespace LuaPlus;\n\n"
},
{
"path": "Samples/UnitTest++/COPYING",
"chars": 1077,
"preview": "Copyright (c) 2006 Noel Llopis and Charles Nicholson\n\nPermission is hereby granted, free of charge, to any person obtain"
},
{
"path": "Samples/UnitTest++/Makefile",
"chars": 2365,
"preview": "CXX = g++\r\nCXXFLAGS ?= -g -Wall -W -Winline -ansi \r\nLDFLAGS ?= \r\nSED = sed\r\nMV = mv\r\nRM = rm\r\n\r\n.SUFFIXES: .o .cpp\r\n\r\nli"
},
{
"path": "Samples/UnitTest++/README",
"chars": 2178,
"preview": "UnitTest++ README\r\nVersion: v1.4\r\nLast update: 2008-10-30\r\n\r\nUnitTest++ is free software. You may copy, distribute, and "
},
{
"path": "Samples/UnitTest++/TestUnitTest++.vsnet2003.vcproj",
"chars": 4589,
"preview": "<?xml version=\"1.0\" encoding=\"Windows-1252\"?>\r\n<VisualStudioProject\r\n\tProjectType=\"Visual C++\"\r\n\tVersion=\"7.10\"\r\n\tName=\""
},
{
"path": "Samples/UnitTest++/TestUnitTest++.vsnet2005.vcproj",
"chars": 5149,
"preview": "<?xml version=\"1.0\" encoding=\"Windows-1252\"?>\r\n<VisualStudioProject\r\n\tProjectType=\"Visual C++\"\r\n\tVersion=\"8.00\"\r\n\tName=\""
},
{
"path": "Samples/UnitTest++/TestUnitTestPP_vs6.dsp",
"chars": 5622,
"preview": "# Microsoft Developer Studio Project File - Name=\"TestUnitTestPP_vs6\" - Package Owner=<4>\r\n# Microsoft Developer Studio "
},
{
"path": "Samples/UnitTest++/UnitTest++.jam",
"chars": 1085,
"preview": "{\n\nSubDir LUAPLUS Samples UnitTest++ ;\n\nlocal WIN32_SRCS =\n\t\tsrc/Win32/TimeHelpers.cpp\n\t\tsrc/Win32/TimeHelpers.h\n;\n\nloca"
},
{
"path": "Samples/UnitTest++/UnitTest++.vsnet2003.sln",
"chars": 1515,
"preview": "Microsoft Visual Studio Solution File, Format Version 8.00\nProject(\"{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}\") = \"UnitTest"
},
{
"path": "Samples/UnitTest++/UnitTest++.vsnet2003.vcproj",
"chars": 5270,
"preview": "<?xml version=\"1.0\" encoding=\"Windows-1252\"?>\r\n<VisualStudioProject\r\n\tProjectType=\"Visual C++\"\r\n\tVersion=\"7.10\"\r\n\tName=\""
},
{
"path": "Samples/UnitTest++/UnitTest++.vsnet2005.sln",
"chars": 1513,
"preview": "\nMicrosoft Visual Studio Solution File, Format Version 9.00\n# Visual Studio 2005\nProject(\"{8BC9CEB8-8B4A-11D0-8D11-00A0"
},
{
"path": "Samples/UnitTest++/UnitTest++.vsnet2005.vcproj",
"chars": 5847,
"preview": "<?xml version=\"1.0\" encoding=\"Windows-1252\"?>\r\n<VisualStudioProject\r\n\tProjectType=\"Visual C++\"\r\n\tVersion=\"8.00\"\r\n\tName=\""
},
{
"path": "Samples/UnitTest++/UnitTestPP_vs6.dsp",
"chars": 5683,
"preview": "# Microsoft Developer Studio Project File - Name=\"UnitTestPP_vs6\" - Package Owner=<4>\r\n# Microsoft Developer Studio Gene"
},
{
"path": "Samples/UnitTest++/UnitTestPP_vs6.dsw",
"chars": 826,
"preview": "Microsoft Developer Studio Workspace File, Format Version 6.00\r\n# x: ܰ߰ ̧ ҏW܂͍폜Ȃł!\r\n\r\n##################################"
},
{
"path": "Samples/UnitTest++/docs/UnitTest++.html",
"chars": 12332,
"preview": "<html>\n<head>\n\t<title>UnitTest++ in brief</title>\n</head>\n<body>\n<h1>UnitTest++ in brief</h1>\n<h2>Introduction</h2>\n<p>T"
},
{
"path": "Samples/UnitTest++/src/AssertException.cpp",
"chars": 610,
"preview": "#include \"AssertException.h\"\r\n#include <cstring>\r\n\r\nnamespace UnitTest {\r\n\r\nAssertException::AssertException(char const*"
},
{
"path": "Samples/UnitTest++/src/AssertException.h",
"chars": 507,
"preview": "#ifndef UNITTEST_ASSERTEXCEPTION_H\n#define UNITTEST_ASSERTEXCEPTION_H\n\n#include <exception>\n\n\nnamespace UnitTest {\n\nclas"
},
{
"path": "Samples/UnitTest++/src/CheckMacros.h",
"chars": 4571,
"preview": "#ifndef UNITTEST_CHECKMACROS_H \r\n#define UNITTEST_CHECKMACROS_H\r\n\r\n#include \"Checks.h\"\r\n#include \"AssertException.h\"\r\n#i"
},
{
"path": "Samples/UnitTest++/src/Checks.cpp",
"chars": 1242,
"preview": "#include \"Checks.h\"\r\n#include <cstring>\r\n\r\nnamespace UnitTest {\r\n\r\nnamespace {\r\n\r\nvoid CheckStringsEqual(TestResults& re"
},
{
"path": "Samples/UnitTest++/src/Checks.h",
"chars": 5093,
"preview": "#ifndef UNITTEST_CHECKS_H\r\n#define UNITTEST_CHECKS_H\r\n\r\n#include \"Config.h\"\r\n#include \"TestResults.h\"\r\n#include \"MemoryO"
},
{
"path": "Samples/UnitTest++/src/Config.h",
"chars": 1009,
"preview": "#ifndef UNITTEST_CONFIG_H\r\n#define UNITTEST_CONFIG_H\r\n\r\n// Standard defines documented here: http://predef.sourceforge.n"
},
{
"path": "Samples/UnitTest++/src/CurrentTest.cpp",
"chars": 307,
"preview": "#include \"CurrentTest.h\"\r\n#include <cstddef>\r\n\r\nnamespace UnitTest {\r\n\r\nTestResults*& CurrentTest::Results()\r\n{\r\n\tstatic"
},
{
"path": "Samples/UnitTest++/src/CurrentTest.h",
"chars": 250,
"preview": "#ifndef UNITTEST_CURRENTTESTRESULTS_H\r\n#define UNITTEST_CURRENTTESTRESULTS_H\r\n\r\nnamespace UnitTest {\r\n\r\nclass TestResult"
},
{
"path": "Samples/UnitTest++/src/DeferredTestReporter.cpp",
"chars": 837,
"preview": "#include \"DeferredTestReporter.h\"\r\n#include \"TestDetails.h\"\r\n\r\nusing namespace UnitTest;\r\n\r\nvoid DeferredTestReporter::R"
},
{
"path": "Samples/UnitTest++/src/DeferredTestReporter.h",
"chars": 692,
"preview": "#ifndef UNITTEST_DEFERREDTESTREPORTER_H\r\n#define UNITTEST_DEFERREDTESTREPORTER_H\r\n\r\n#include \"TestReporter.h\"\r\n#include "
},
{
"path": "Samples/UnitTest++/src/DeferredTestResult.cpp",
"chars": 465,
"preview": "#include \"DeferredTestResult.h\"\r\n#include \"Config.h\"\r\n\r\nnamespace UnitTest\r\n{\r\n\r\nDeferredTestResult::DeferredTestResult("
},
{
"path": "Samples/UnitTest++/src/DeferredTestResult.h",
"chars": 631,
"preview": "#ifndef UNITTEST_DEFERREDTESTRESULT_H\r\n#define UNITTEST_DEFERREDTESTRESULT_H\r\n\r\n#include \"Config.h\"\r\n\r\n#include <string>"
},
{
"path": "Samples/UnitTest++/src/ExecuteTest.h",
"chars": 990,
"preview": "#ifndef UNITTEST_EXECUTE_TEST_H\r\n#define UNITTEST_EXECUTE_TEST_H\r\n\r\n#include \"TestDetails.h\"\r\n#include \"MemoryOutStream."
},
{
"path": "Samples/UnitTest++/src/MemoryOutStream.cpp",
"chars": 2774,
"preview": "#include \"MemoryOutStream.h\"\r\n\r\n#ifndef UNITTEST_USE_CUSTOM_STREAMS\r\n\r\n\r\nnamespace UnitTest {\r\n\r\nchar const* MemoryOutSt"
},
{
"path": "Samples/UnitTest++/src/MemoryOutStream.h",
"chars": 1312,
"preview": "#ifndef UNITTEST_MEMORYOUTSTREAM_H\r\n#define UNITTEST_MEMORYOUTSTREAM_H\r\n\r\n#include \"Config.h\"\r\n\r\n#ifndef UNITTEST_USE_CU"
},
{
"path": "Samples/UnitTest++/src/Posix/SignalTranslator.cpp",
"chars": 1136,
"preview": "#include \"SignalTranslator.h\"\r\n\r\nnamespace UnitTest {\r\n\r\nsigjmp_buf* SignalTranslator::s_jumpTarget = 0;\r\n\r\nnamespace {\r"
},
{
"path": "Samples/UnitTest++/src/Posix/SignalTranslator.h",
"chars": 966,
"preview": "#ifndef UNITTEST_SIGNALTRANSLATOR_H\r\n#define UNITTEST_SIGNALTRANSLATOR_H\r\n\r\n#include <setjmp.h>\r\n#include <signal.h>\r\n\r\n"
},
{
"path": "Samples/UnitTest++/src/Posix/TimeHelpers.cpp",
"chars": 582,
"preview": "#include \"TimeHelpers.h\"\r\n#include <unistd.h>\r\n\r\nnamespace UnitTest {\r\n\r\nTimer::Timer()\r\n{\r\n m_startTime.tv_sec = 0;\r"
},
{
"path": "Samples/UnitTest++/src/Posix/TimeHelpers.h",
"chars": 337,
"preview": "#ifndef UNITTEST_TIMEHELPERS_H\r\n#define UNITTEST_TIMEHELPERS_H\r\n\r\n#include <sys/time.h>\r\n\r\nnamespace UnitTest {\r\n\r\nclass"
},
{
"path": "Samples/UnitTest++/src/ReportAssert.cpp",
"chars": 239,
"preview": "#include \"ReportAssert.h\"\r\n#include \"AssertException.h\"\r\n\r\nnamespace UnitTest {\r\n\r\nvoid ReportAssert(char const* descrip"
},
{
"path": "Samples/UnitTest++/src/ReportAssert.h",
"chars": 172,
"preview": "#ifndef UNITTEST_ASSERT_H\n#define UNITTEST_ASSERT_H\n\nnamespace UnitTest {\n\nvoid ReportAssert(char const* description, ch"
},
{
"path": "Samples/UnitTest++/src/Test.cpp",
"chars": 699,
"preview": "#include \"Config.h\"\r\n#include \"Test.h\"\r\n#include \"TestList.h\"\r\n#include \"TestResults.h\"\r\n#include \"AssertException.h\"\r\n#"
},
{
"path": "Samples/UnitTest++/src/Test.h",
"chars": 596,
"preview": "#ifndef UNITTEST_TEST_H\r\n#define UNITTEST_TEST_H\r\n\r\n#include \"TestDetails.h\"\r\n\r\nnamespace UnitTest {\r\n\r\nclass TestResult"
},
{
"path": "Samples/UnitTest++/src/TestDetails.cpp",
"chars": 484,
"preview": "#include \"TestDetails.h\"\n\nnamespace UnitTest {\n\nTestDetails::TestDetails(char const* testName_, char const* suiteName_, "
},
{
"path": "Samples/UnitTest++/src/TestDetails.h",
"chars": 574,
"preview": "#ifndef UNITTEST_TESTDETAILS_H\n#define UNITTEST_TESTDETAILS_H\n\nnamespace UnitTest {\n\nclass TestDetails\n{\npublic:\n Tes"
},
{
"path": "Samples/UnitTest++/src/TestList.cpp",
"chars": 530,
"preview": "#include \"TestList.h\"\r\n#include \"Test.h\"\r\n\r\n#include <cassert>\r\n\r\nnamespace UnitTest {\r\n\r\nTestList::TestList() \r\n : m"
},
{
"path": "Samples/UnitTest++/src/TestList.h",
"chars": 356,
"preview": "#ifndef UNITTEST_TESTLIST_H\r\n#define UNITTEST_TESTLIST_H\r\n\r\n\r\nnamespace UnitTest {\r\n\r\nclass Test;\r\n\r\nclass TestList\r\n{\r\n"
},
{
"path": "Samples/UnitTest++/src/TestMacros.h",
"chars": 5296,
"preview": "#ifndef UNITTEST_TESTMACROS_H\r\n#define UNITTEST_TESTMACROS_H\r\n\r\n#include \"Config.h\"\r\n#include \"ExecuteTest.h\"\r\n#include "
},
{
"path": "Samples/UnitTest++/src/TestReporter.cpp",
"chars": 87,
"preview": "#include \"TestReporter.h\"\n\nnamespace UnitTest {\n\n\nTestReporter::~TestReporter()\n{\n}\n\n}\n"
},
{
"path": "Samples/UnitTest++/src/TestReporter.h",
"chars": 527,
"preview": "#ifndef UNITTEST_TESTREPORTER_H\n#define UNITTEST_TESTREPORTER_H\n\nnamespace UnitTest {\n\nclass TestDetails;\n\nclass TestRep"
},
{
"path": "Samples/UnitTest++/src/TestReporterStdout.cpp",
"chars": 1331,
"preview": "#include \"TestReporterStdout.h\"\r\n#include <cstdio>\r\n\r\n#include \"TestDetails.h\"\r\n\r\n// cstdio doesn't pull in namespace st"
},
{
"path": "Samples/UnitTest++/src/TestReporterStdout.h",
"chars": 531,
"preview": "#ifndef UNITTEST_TESTREPORTERSTDOUT_H\n#define UNITTEST_TESTREPORTERSTDOUT_H\n\n#include \"TestReporter.h\"\n\nnamespace UnitTe"
},
{
"path": "Samples/UnitTest++/src/TestResults.cpp",
"chars": 1185,
"preview": "#include \"TestResults.h\"\n#include \"TestReporter.h\"\n\n#include \"TestDetails.h\"\n\nnamespace UnitTest {\n\nTestResults::TestRes"
},
{
"path": "Samples/UnitTest++/src/TestResults.h",
"chars": 753,
"preview": "#ifndef UNITTEST_TESTRESULTS_H\n#define UNITTEST_TESTRESULTS_H\n\nnamespace UnitTest {\n\nclass TestReporter;\nclass TestDetai"
},
{
"path": "Samples/UnitTest++/src/TestRunner.cpp",
"chars": 1907,
"preview": "#include \"TestRunner.h\"\r\n#include \"TestResults.h\"\r\n#include \"TestReporter.h\"\r\n#include \"TestReporterStdout.h\"\r\n#include "
},
{
"path": "Samples/UnitTest++/src/TestRunner.h",
"chars": 1145,
"preview": "#ifndef UNITTEST_TESTRUNNER_H\r\n#define UNITTEST_TESTRUNNER_H\r\n\r\n#include \"Test.h\"\r\n#include \"TestList.h\"\r\n#include \"Curr"
},
{
"path": "Samples/UnitTest++/src/TestSuite.h",
"chars": 190,
"preview": "#ifndef UNITTEST_TESTSUITE_H\r\n#define UNITTEST_TESTSUITE_H\r\n\r\nnamespace UnitTestSuite \r\n{\r\n inline char const* GetSui"
},
{
"path": "Samples/UnitTest++/src/TimeConstraint.cpp",
"chars": 694,
"preview": "#include \"TimeConstraint.h\"\r\n#include \"TestResults.h\"\r\n#include \"MemoryOutStream.h\"\r\n#include \"CurrentTest.h\"\r\n\r\nnamespa"
},
{
"path": "Samples/UnitTest++/src/TimeConstraint.h",
"chars": 710,
"preview": "#ifndef UNITTEST_TIMECONSTRAINT_H\r\n#define UNITTEST_TIMECONSTRAINT_H\r\n\r\n#include \"TimeHelpers.h\"\r\n\r\nnamespace UnitTest {"
},
{
"path": "Samples/UnitTest++/src/TimeHelpers.h",
"chars": 131,
"preview": "#include \"Config.h\"\n\n#if defined UNITTEST_POSIX\n #include \"Posix/TimeHelpers.h\"\n#else\n #include \"Win32/TimeHelpers"
},
{
"path": "Samples/UnitTest++/src/UnitTest++.h",
"chars": 311,
"preview": "#ifndef UNITTESTCPP_H\r\n#define UNITTESTCPP_H\r\n\r\n//lint -esym(1509,*Fixture)\r\n\r\n#include \"Config.h\"\r\n#include \"Test.h\"\r\n#"
},
{
"path": "Samples/UnitTest++/src/Win32/TimeHelpers.cpp",
"chars": 1141,
"preview": "#include \"TimeHelpers.h\"\r\n#include <windows.h>\r\n\r\nnamespace UnitTest {\r\n\r\nTimer::Timer()\r\n\t: m_threadHandle(::GetCurrent"
},
{
"path": "Samples/UnitTest++/src/Win32/TimeHelpers.h",
"chars": 634,
"preview": "#ifndef UNITTEST_TIMEHELPERS_H\r\n#define UNITTEST_TIMEHELPERS_H\r\n\r\n#include \"../Config.h\"\r\n\r\n\r\n#ifdef UNITTEST_MINGW\r\n "
},
{
"path": "Samples/UnitTest++/src/XmlTestReporter.cpp",
"chars": 3394,
"preview": "#include \"XmlTestReporter.h\"\r\n#include \"Config.h\"\r\n\r\n#include <iostream>\r\n#include <sstream>\r\n#include <string>\r\n\r\nusing"
},
{
"path": "Samples/UnitTest++/src/XmlTestReporter.h",
"chars": 1006,
"preview": "#ifndef UNITTEST_XMLTESTREPORTER_H\r\n#define UNITTEST_XMLTESTREPORTER_H\r\n\r\n#include \"DeferredTestReporter.h\"\r\n\r\n#include "
},
{
"path": "Samples/UnitTest++/src/tests/Main.cpp",
"chars": 134,
"preview": "#include \"../UnitTest++.h\"\n#include \"../TestReporterStdout.h\"\n\n\nint main(int, char const *[])\n{\n return UnitTest::Run"
},
{
"path": "Samples/UnitTest++/src/tests/RecordingReporter.h",
"chars": 2810,
"preview": "#ifndef UNITTEST_RECORDINGREPORTER_H\r\n#define UNITTEST_RECORDINGREPORTER_H\r\n\r\n#include \"../TestReporter.h\"\r\n#include <cs"
},
{
"path": "Samples/UnitTest++/src/tests/ScopedCurrentTest.h",
"chars": 936,
"preview": "#ifndef UNITTEST_SCOPEDCURRENTTEST_H\r\n#define UNITTEST_SCOPEDCURRENTTEST_H\r\n\r\n#include \"../CurrentTest.h\"\r\n#include <cst"
},
{
"path": "Samples/UnitTest++/src/tests/TestAssertHandler.cpp",
"chars": 786,
"preview": "#include \"../UnitTest++.h\"\n#include \"../AssertException.h\"\n#include \"../ReportAssert.h\"\n\nusing namespace UnitTest;\n\nname"
},
{
"path": "Samples/UnitTest++/src/tests/TestCheckMacros.cpp",
"chars": 21752,
"preview": "#include \"../UnitTest++.h\"\r\n#include \"../CurrentTest.h\"\r\n#include \"RecordingReporter.h\"\r\n#include \"ScopedCurrentTest.h\"\r"
},
{
"path": "Samples/UnitTest++/src/tests/TestChecks.cpp",
"chars": 8788,
"preview": "#include \"../UnitTest++.h\"\r\n#include \"RecordingReporter.h\"\r\n\r\nusing namespace UnitTest;\r\n\r\n\r\nnamespace {\r\n\r\n\r\nTEST(Check"
},
{
"path": "Samples/UnitTest++/src/tests/TestCurrentTest.cpp",
"chars": 678,
"preview": "#include \"../UnitTest++.h\"\r\n#include \"../CurrentTest.h\"\r\n#include \"ScopedCurrentTest.h\"\r\n\r\nnamespace \r\n{\r\n\r\nTEST(CanSeta"
},
{
"path": "Samples/UnitTest++/src/tests/TestDeferredTestReporter.cpp",
"chars": 3369,
"preview": "#include \"../UnitTest++.h\"\r\n#include \"../DeferredTestReporter.h\"\r\n#include \"../Config.h\"\r\n#include <cstring>\r\n\r\nnamespac"
},
{
"path": "Samples/UnitTest++/src/tests/TestMemoryOutStream.cpp",
"chars": 3617,
"preview": "#include \"../UnitTest++.h\"\r\n\r\n#include \"../MemoryOutStream.h\"\r\n#include <cstring>\r\n\r\nusing namespace UnitTest;\r\nusing na"
},
{
"path": "Samples/UnitTest++/src/tests/TestTest.cpp",
"chars": 2401,
"preview": "#include \"../UnitTest++.h\"\r\n#include \"../TestReporter.h\"\r\n#include \"../TimeHelpers.h\"\r\n#include \"ScopedCurrentTest.h\"\r\n\r"
},
{
"path": "Samples/UnitTest++/src/tests/TestTestList.cpp",
"chars": 792,
"preview": "#include \"../UnitTest++.h\"\n#include \"../TestList.h\"\n\nusing namespace UnitTest;\n\nnamespace {\n\n\nTEST (TestListIsEmptyByDef"
},
{
"path": "Samples/UnitTest++/src/tests/TestTestMacros.cpp",
"chars": 4940,
"preview": "#include \"../UnitTest++.h\"\r\n#include \"../TestMacros.h\"\r\n#include \"../TestList.h\"\r\n#include \"../TestResults.h\"\r\n#include "
},
{
"path": "Samples/UnitTest++/src/tests/TestTestResults.cpp",
"chars": 2939,
"preview": "#include \"../UnitTest++.h\"\n#include \"../TestResults.h\"\n#include \"RecordingReporter.h\"\n\nusing namespace UnitTest;\n\nnamesp"
},
{
"path": "Samples/UnitTest++/src/tests/TestTestRunner.cpp",
"chars": 7782,
"preview": "#include \"../UnitTest++.h\"\r\n#include \"RecordingReporter.h\"\r\n#include \"../ReportAssert.h\"\r\n#include \"../TestList.h\"\r\n#inc"
},
{
"path": "Samples/UnitTest++/src/tests/TestTestSuite.cpp",
"chars": 310,
"preview": "#include \"../UnitTest++.h\"\r\n\r\n// We're really testing if it's possible to use the same suite in two files\r\n// to compile"
},
{
"path": "Samples/UnitTest++/src/tests/TestTimeConstraint.cpp",
"chars": 1693,
"preview": "#include \"../UnitTest++.h\"\r\n#include \"../TestResults.h\"\r\n#include \"../TimeHelpers.h\"\r\n#include \"RecordingReporter.h\"\r\n#i"
},
{
"path": "Samples/UnitTest++/src/tests/TestTimeConstraintMacro.cpp",
"chars": 1800,
"preview": "#include \"../UnitTest++.h\"\r\n#include \"../TimeHelpers.h\"\r\n\r\n#include \"RecordingReporter.h\"\r\n#include \"ScopedCurrentTest.h"
},
{
"path": "Samples/UnitTest++/src/tests/TestUnitTest++.cpp",
"chars": 2842,
"preview": "#include \"../UnitTest++.h\"\r\n#include \"../ReportAssert.h\"\r\n#include \"ScopedCurrentTest.h\"\r\n\r\n#include <vector>\r\n\r\n// Thes"
},
{
"path": "Samples/UnitTest++/src/tests/TestXmlTestReporter.cpp",
"chars": 5683,
"preview": "#include \"../UnitTest++.h\"\n#include \"../XmlTestReporter.h\"\n\n#include <sstream>\n\nusing namespace UnitTest;\nusing std::ost"
},
{
"path": "Src/Lua51Proxy/Lua51Proxy.jam",
"chars": 3710,
"preview": "if $(LUA_VERSION) in lua51 lua51-luaplus\n{\n\nif $(MSVCNT) {\n\t__Lua51Proxy_Symbols =\n\t\t\tluaL_addlstring\n\t\t\tluaL_addstring\n"
},
{
"path": "Src/Lua51Proxy/mkforwardlib-vc.lua",
"chars": 4705,
"preview": "local reallib\nlocal fakelib\nlocal machine\nlocal extrasymbols = {}\n\nlocal args = {...}\nlocal errmsg\nif args[1] then reall"
},
{
"path": "Src/LuaPlus/Lua.jam",
"chars": 3158,
"preview": "SubDir LUAPLUS Src LuaPlus ;\n\n{\n\nif $(LUA_VERSION) in lua51-luaplus lua52-luaplus lua53-luaplus {\n if $(NT) {\n "
},
{
"path": "Src/LuaPlus/LuaAutoBlock.h",
"chars": 1694,
"preview": "///////////////////////////////////////////////////////////////////////////////\n// This source file is part of the LuaPl"
},
{
"path": "Src/LuaPlus/LuaC.jam",
"chars": 581,
"preview": "SubDir LUAPLUS Src LuaPlus ;\n\n{\n\nlocal SRCS =\n\t\t$(LUA_VERSION)/src/luac.c\n;\n\nif $(LUA_VERSION) in lua51 lua51-luaplus {\n"
},
{
"path": "Src/LuaPlus/LuaCall.h",
"chars": 1913,
"preview": "///////////////////////////////////////////////////////////////////////////////\n// This source file is part of the LuaPl"
},
{
"path": "Src/LuaPlus/LuaCall.inl",
"chars": 3528,
"preview": "///////////////////////////////////////////////////////////////////////////////\n// This source file is part of the LuaPl"
},
{
"path": "Src/LuaPlus/LuaFunction.h",
"chars": 8459,
"preview": "///////////////////////////////////////////////////////////////////////////////\n// This source file is part of the LuaPl"
},
{
"path": "Src/LuaPlus/LuaHelper.h",
"chars": 626,
"preview": "///////////////////////////////////////////////////////////////////////////////\n// This source file is part of the LuaPl"
},
{
"path": "Src/LuaPlus/LuaHelper_Object.h",
"chars": 11446,
"preview": "///////////////////////////////////////////////////////////////////////////////\n// This source file is part of the LuaPl"
},
{
"path": "Src/LuaPlus/LuaHelper_StackObject.h",
"chars": 6871,
"preview": "///////////////////////////////////////////////////////////////////////////////\n// This source file is part of the LuaPl"
},
{
"path": "Src/LuaPlus/LuaObject.h",
"chars": 20038,
"preview": "///////////////////////////////////////////////////////////////////////////////\n// This source file is part of the LuaPl"
},
{
"path": "Src/LuaPlus/LuaObject.inl",
"chars": 34857,
"preview": "///////////////////////////////////////////////////////////////////////////////\n// This source file is part of the LuaPl"
},
{
"path": "Src/LuaPlus/LuaPlus.cpp",
"chars": 1207,
"preview": "///////////////////////////////////////////////////////////////////////////////\n// This source file is part of the LuaPl"
},
{
"path": "Src/LuaPlus/LuaPlus.h",
"chars": 925,
"preview": "///////////////////////////////////////////////////////////////////////////////\n// This source file is part of the LuaPl"
},
{
"path": "Src/LuaPlus/LuaPlusAddons.c",
"chars": 1095,
"preview": "///////////////////////////////////////////////////////////////////////////////\n// This source file is part of the LuaPl"
},
{
"path": "Src/LuaPlus/LuaPlusCD.h",
"chars": 81519,
"preview": "///////////////////////////////////////////////////////////////////////////////\n// This source file is part of the LuaPl"
},
{
"path": "Src/LuaPlus/LuaPlusConfig.h",
"chars": 2150,
"preview": "///////////////////////////////////////////////////////////////////////////////\n// This source file is part of the LuaPl"
},
{
"path": "Src/LuaPlus/LuaPlusInternal.h",
"chars": 2568,
"preview": "///////////////////////////////////////////////////////////////////////////////\n// This source file is part of the LuaPl"
},
{
"path": "Src/LuaPlus/LuaPlusSharedLib.jam",
"chars": 10784,
"preview": "{\n\nSubDir LUAPLUS Src LuaPlus ;\n\nrule LuaSharedLibrary TARGET : LUA_SOURCES : OUTPUT_NAME {\n\tActiveTarget $(TARGET) ;\n\n\t"
},
{
"path": "Src/LuaPlus/LuaPlusStaticLib.jam",
"chars": 11516,
"preview": "{\n\nSubDir LUAPLUS Src LuaPlus ;\n\nlocal LUAPLUS_SRCS =\n\t\tLuaAutoBlock.h\n\t\tLuaCall.h\n\t\tLuaCall.inl\n\t\tLuaFunction.h\n\t\tLuaHe"
},
{
"path": "Src/LuaPlus/LuaStackObject.h",
"chars": 6270,
"preview": "///////////////////////////////////////////////////////////////////////////////\n// This source file is part of the LuaPl"
},
{
"path": "Src/LuaPlus/LuaStackObject.inl",
"chars": 17804,
"preview": "///////////////////////////////////////////////////////////////////////////////\n// This source file is part of the LuaPl"
},
{
"path": "Src/LuaPlus/LuaStackTableIterator.h",
"chars": 1861,
"preview": "///////////////////////////////////////////////////////////////////////////////\n// This source file is part of the LuaPl"
},
{
"path": "Src/LuaPlus/LuaStackTableIterator.inl",
"chars": 4492,
"preview": "///////////////////////////////////////////////////////////////////////////////\n// This source file is part of the LuaPl"
},
{
"path": "Src/LuaPlus/LuaState.h",
"chars": 14922,
"preview": "///////////////////////////////////////////////////////////////////////////////\n// This source file is part of the LuaPl"
},
{
"path": "Src/LuaPlus/LuaState.inl",
"chars": 41209,
"preview": "///////////////////////////////////////////////////////////////////////////////\n// This source file is part of the LuaPl"
},
{
"path": "Src/LuaPlus/LuaStateCD.h",
"chars": 2077,
"preview": "///////////////////////////////////////////////////////////////////////////////\n// This source file is part of the LuaPl"
},
{
"path": "Src/LuaPlus/LuaStateOutFile.h",
"chars": 2782,
"preview": "///////////////////////////////////////////////////////////////////////////////\n// This source file is part of the LuaPl"
},
{
"path": "Src/LuaPlus/LuaStateOutString.h",
"chars": 3260,
"preview": "///////////////////////////////////////////////////////////////////////////////\n// This source file is part of the LuaPl"
},
{
"path": "Src/LuaPlus/LuaState_DumpObject.cpp",
"chars": 35054,
"preview": "///////////////////////////////////////////////////////////////////////////////\n// This source file is part of the LuaPl"
},
{
"path": "Src/LuaPlus/LuaTableIterator.h",
"chars": 5499,
"preview": "///////////////////////////////////////////////////////////////////////////////\n// This source file is part of the LuaPl"
},
{
"path": "Src/LuaPlus/lua51/COPYRIGHT",
"chars": 1528,
"preview": "Lua License\n-----------\n\nLua is licensed under the terms of the MIT license reproduced below.\nThis means that Lua is fre"
},
{
"path": "Src/LuaPlus/lua51/HISTORY",
"chars": 7907,
"preview": "HISTORY for Lua 5.1\n\n* Changes from version 5.0 to 5.1\n -------------------------------\n Language:\n + new module syst"
},
{
"path": "Src/LuaPlus/lua51/INSTALL",
"chars": 3868,
"preview": "INSTALL for Lua 5.1\n\n* Building Lua\n ------------\n Lua is built in the src directory, but the build process can be\n c"
},
{
"path": "Src/LuaPlus/lua51/Makefile",
"chars": 3695,
"preview": "# makefile for installing Lua\n# see INSTALL for installation instructions\n# see src/Makefile and src/luaconf.h for furth"
},
{
"path": "Src/LuaPlus/lua51/README",
"chars": 1378,
"preview": "README for Lua 5.1\n\nSee INSTALL for installation instructions.\nSee HISTORY for a summary of changes since the last relea"
},
{
"path": "Src/LuaPlus/lua51/doc/contents.html",
"chars": 22482,
"preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">\n<HTML>\n<HEAD>\n<TITLE>Lua 5.1 Reference Manual - contents"
},
{
"path": "Src/LuaPlus/lua51/doc/lua.1",
"chars": 3619,
"preview": ".\\\" $Id: lua.man,v 1.11 2006/01/06 16:03:34 lhf Exp $\n.TH LUA 1 \"$Date: 2006/01/06 16:03:34 $\"\n.SH NAME\nlua \\- Lua inter"
},
{
"path": "Src/LuaPlus/lua51/doc/lua.css",
"chars": 1306,
"preview": "body {\n\tcolor: #000000 ;\n\tbackground-color: #FFFFFF ;\n\tfont-family: Helvetica, Arial, sans-serif ;\n\ttext-align: justify "
},
{
"path": "Src/LuaPlus/lua51/doc/lua.html",
"chars": 3951,
"preview": "<!-- $Id: lua.man,v 1.11 2006/01/06 16:03:34 lhf Exp $ -->\n<HTML>\n<HEAD>\n<TITLE>LUA man page</TITLE>\n<LINK REL=\"styleshe"
},
{
"path": "Src/LuaPlus/lua51/doc/luac.1",
"chars": 3617,
"preview": ".\\\" $Id: luac.man,v 1.28 2006/01/06 16:03:34 lhf Exp $\n.TH LUAC 1 \"$Date: 2006/01/06 16:03:34 $\"\n.SH NAME\nluac \\- Lua co"
},
{
"path": "Src/LuaPlus/lua51/doc/luac.html",
"chars": 3896,
"preview": "<!-- $Id: luac.man,v 1.28 2006/01/06 16:03:34 lhf Exp $ -->\n<HTML>\n<HEAD>\n<TITLE>LUAC man page</TITLE>\n<LINK REL=\"styles"
},
{
"path": "Src/LuaPlus/lua51/doc/manual.css",
"chars": 341,
"preview": "h3 code {\n\tfont-family: inherit ;\n\tfont-size: inherit ;\n}\n\npre, code {\n\tfont-size: 12pt ;\n}\n\nspan.apii {\n\tfloat: right ;"
},
{
"path": "Src/LuaPlus/lua51/doc/manual.html",
"chars": 254745,
"preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">\n<html>\n\n<head>\n<title>Lua 5.1 Reference Manual</title>\n<"
},
{
"path": "Src/LuaPlus/lua51/doc/readme.html",
"chars": 834,
"preview": "<HTML>\n<HEAD>\n<TITLE>Lua documentation</TITLE>\n<LINK REL=\"stylesheet\" TYPE=\"text/css\" HREF=\"lua.css\">\n</HEAD>\n\n<BODY>\n\n<"
},
{
"path": "Src/LuaPlus/lua51/etc/Makefile",
"chars": 912,
"preview": "# makefile for Lua etc\n\nTOP= ..\nLIB= $(TOP)/src\nINC= $(TOP)/src\nBIN= $(TOP)/src\nSRC= $(TOP)/src\nTST= $(TOP)/test\n\nCC= gc"
},
{
"path": "Src/LuaPlus/lua51/etc/README",
"chars": 972,
"preview": "This directory contains some useful files and code.\nUnlike the code in ../src, everything here is in the public domain.\n"
},
{
"path": "Src/LuaPlus/lua51/etc/all.c",
"chars": 678,
"preview": "/*\n* all.c -- Lua core, libraries and interpreter in a single file\n*/\n\n#define luaall_c\n\n#include \"lapi.c\"\n#include \"lco"
},
{
"path": "Src/LuaPlus/lua51/etc/lua.hpp",
"chars": 191,
"preview": "// lua.hpp\n// Lua header files for C++\n// <<extern \"C\">> not supplied automatically because Lua also compiles as C++\n\nex"
},
{
"path": "Src/LuaPlus/lua51/etc/lua.pc",
"chars": 658,
"preview": "# lua.pc -- pkg-config data for Lua\n\n# vars from install Makefile\n\n# grep '^V=' ../Makefile\nV= 5.1\n# grep '^R=' ../Makef"
},
{
"path": "Src/LuaPlus/lua51/etc/luavs.bat",
"chars": 1042,
"preview": "@rem Script to build Lua under \"Visual Studio .NET Command Prompt\".\n@rem Do not run from this directory; run it from the"
},
{
"path": "Src/LuaPlus/lua51/etc/min.c",
"chars": 800,
"preview": "/*\n* min.c -- a minimal Lua interpreter\n* loads stdin only with minimal error handling.\n* no interaction, and no standar"
},
{
"path": "Src/LuaPlus/lua51/etc/noparser.c",
"chars": 1253,
"preview": "/*\n* The code below can be used to make a Lua core that does not contain the\n* parsing modules (lcode, llex, lparser), w"
},
{
"path": "Src/LuaPlus/lua51/etc/strict.lua",
"chars": 928,
"preview": "--\n-- strict.lua\n-- checks uses of undeclared global variables\n-- All global variables must be 'declared' through a regu"
},
{
"path": "Src/LuaPlus/lua51/src/Makefile",
"chars": 6133,
"preview": "# makefile for building Lua\n# see ../INSTALL for installation instructions\n# see ../Makefile and luaconf.h for further c"
},
{
"path": "Src/LuaPlus/lua51/src/lapi.c",
"chars": 22708,
"preview": "/*\n** $Id: lapi.c,v 2.55.1.5 2008/07/04 18:41:18 roberto Exp $\n** Lua API\n** See Copyright Notice in lua.h\n*/\n\n\n#include"
},
{
"path": "Src/LuaPlus/lua51/src/lapi.h",
"chars": 262,
"preview": "/*\n** $Id: lapi.h,v 2.2.1.1 2007/12/27 13:02:25 roberto Exp $\n** Auxiliary functions from Lua API\n** See Copyright Notic"
},
{
"path": "Src/LuaPlus/lua51/src/lauxlib.c",
"chars": 17417,
"preview": "/*\n** $Id: lauxlib.c,v 1.159.1.3 2008/01/21 13:20:51 roberto Exp $\n** Auxiliary functions for building Lua libraries\n** "
},
{
"path": "Src/LuaPlus/lua51/src/lauxlib.h",
"chars": 5777,
"preview": "/*\n** $Id: lauxlib.h,v 1.88.1.1 2007/12/27 13:02:25 roberto Exp $\n** Auxiliary functions for building Lua libraries\n** S"
},
{
"path": "Src/LuaPlus/lua51/src/lbaselib.c",
"chars": 17045,
"preview": "/*\n** $Id: lbaselib.c,v 1.191.1.6 2008/02/14 16:46:22 roberto Exp $\n** Basic library\n** See Copyright Notice in lua.h\n*/"
},
{
"path": "Src/LuaPlus/lua51/src/lcode.c",
"chars": 21170,
"preview": "/*\n** $Id: lcode.c,v 2.25.1.5 2011/01/31 14:53:16 roberto Exp $\n** Code generator for Lua\n** See Copyright Notice in lua"
},
{
"path": "Src/LuaPlus/lua51/src/lcode.h",
"chars": 2750,
"preview": "/*\n** $Id: lcode.h,v 1.48.1.1 2007/12/27 13:02:25 roberto Exp $\n** Code generator for Lua\n** See Copyright Notice in lua"
},
{
"path": "Src/LuaPlus/lua51/src/ldblib.c",
"chars": 10092,
"preview": "/*\n** $Id: ldblib.c,v 1.104.1.4 2009/08/04 18:50:18 roberto Exp $\n** Interface from Lua to its debug API\n** See Copyrigh"
},
{
"path": "Src/LuaPlus/lua51/src/ldebug.c",
"chars": 16840,
"preview": "/*\n** $Id: ldebug.c,v 2.29.1.6 2008/05/08 16:56:26 roberto Exp $\n** Debug Interface\n** See Copyright Notice in lua.h\n*/\n"
},
{
"path": "Src/LuaPlus/lua51/src/ldebug.h",
"chars": 1061,
"preview": "/*\n** $Id: ldebug.h,v 2.3.1.1 2007/12/27 13:02:25 roberto Exp $\n** Auxiliary functions from Debug Interface module\n** Se"
}
]
// ... and 4800 more files (download for full content)
About this extraction
This page contains the full source code of the jjensen/luaplus51-all GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 5000 files (141.6 MB), approximately 17.1M tokens, and a symbol index with 33344 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.