Added backwards compatibility for "Lua version" (temporary).

This commit is contained in:
Bruce Hill 2019-01-25 15:52:37 -08:00
parent cf3e35f7f0
commit bdddfd42ba
2 changed files with 4 additions and 0 deletions

View File

@ -130,6 +130,9 @@ local compile_actions = {
["nomsu environment name"] = function(self, _t) ["nomsu environment name"] = function(self, _t)
return LuaCode('"_ENV"') return LuaCode('"_ENV"')
end, end,
["Lua version"] = function(self, _t)
return LuaCode("LUA_API")
end,
["this file was run directly"] = function(self, _t) ["this file was run directly"] = function(self, _t)
return LuaCode('WAS_RUN_DIRECTLY') return LuaCode('WAS_RUN_DIRECTLY')
end, end,

View File

@ -100,6 +100,7 @@ compile_actions = {
["is jit"]: (_t, code)=> LuaCode("jit") ["is jit"]: (_t, code)=> LuaCode("jit")
["nomsu environment"]: (_t)=> LuaCode("_ENV") ["nomsu environment"]: (_t)=> LuaCode("_ENV")
["nomsu environment name"]: (_t)=> LuaCode('"_ENV"') ["nomsu environment name"]: (_t)=> LuaCode('"_ENV"')
["Lua version"]: (_t)=> LuaCode("LUA_API")
["this file was run directly"]: (_t)=> LuaCode('WAS_RUN_DIRECTLY') ["this file was run directly"]: (_t)=> LuaCode('WAS_RUN_DIRECTLY')
["the command line arguments"]: (_t)=> LuaCode('COMMAND_LINE_ARGS') ["the command line arguments"]: (_t)=> LuaCode('COMMAND_LINE_ARGS')
} }