Tweaked code to use both _ENV and _G for better compatibility of

precompiled Lua between Lua 5.2+ and LuaJIT
This commit is contained in:
Bruce Hill 2019-01-11 15:27:11 -08:00
parent 0f0fb2256a
commit 43e45b1452
4 changed files with 20 additions and 31 deletions

View File

@ -38,7 +38,6 @@ compile_error = function(source, err_msg, hint)
return error(err_str, 0)
end
local MAX_LINE = 80
local ENVNAME = jit and "_G" or "_ENV"
local compile_actions = {
[""] = function(self, fn, ...)
local lua = LuaCode()
@ -118,16 +117,16 @@ local compile_actions = {
}))
end,
["1 as lua"] = function(self, code)
return LuaCode(tostring(ENVNAME) .. ":compile(", self:compile(code), ")")
return LuaCode("_ENV:compile(", self:compile(code), ")")
end,
["use"] = function(self, path)
return LuaCode(tostring(ENVNAME) .. ":use(" .. tostring(self:compile(path)) .. ")")
return LuaCode("_ENV:use(" .. tostring(self:compile(path)) .. ")")
end,
["export"] = function(self, path)
return LuaCode(tostring(ENVNAME) .. ":export(" .. tostring(self:compile(path)) .. ")")
return LuaCode("_ENV:export(" .. tostring(self:compile(path)) .. ")")
end,
["run"] = function(self, path)
return LuaCode(tostring(ENVNAME) .. ":run(" .. tostring(self:compile(path)) .. ")")
return LuaCode("_ENV:run(" .. tostring(self:compile(path)) .. ")")
end,
["test"] = function(self, body)
if not (body.type == 'Block') then
@ -154,10 +153,10 @@ local compile_actions = {
return LuaCode("_VERSION")
end,
["nomsu environment"] = function(self)
return LuaCode(ENVNAME)
return LuaCode("_ENV")
end,
["nomsu environment name"] = function(self)
return LuaCode(ENVNAME:as_lua())
return LuaCode('"_ENV"')
end
}
return compile_actions

View File

@ -24,8 +24,6 @@ compile_error = (source, err_msg, hint=nil)->
error(err_str, 0)
MAX_LINE = 80 -- For beautification purposes, try not to make lines much longer than this value
--ENVNAME = jit and "getfenv(1)" or "_ENV"
ENVNAME = jit and "_G" or "_ENV"
compile_actions = {
[""]: (fn, ...)=>
lua = LuaCode!
@ -96,16 +94,16 @@ compile_actions = {
@compile(SyntaxTree{type:"Action", "lua", ">", code})
["1 as lua"]: (code)=>
LuaCode("#{ENVNAME}:compile(", @compile(code), ")")
LuaCode("_ENV:compile(", @compile(code), ")")
["use"]: (path)=>
LuaCode("#{ENVNAME}:use(#{@compile(path)})")
LuaCode("_ENV:use(#{@compile(path)})")
["export"]: (path)=>
LuaCode("#{ENVNAME}:export(#{@compile(path)})")
LuaCode("_ENV:export(#{@compile(path)})")
["run"]: (path)=>
LuaCode("#{ENVNAME}:run(#{@compile(path)})")
LuaCode("_ENV:run(#{@compile(path)})")
["test"]: (body)=>
unless body.type == 'Block'
@ -118,8 +116,8 @@ compile_actions = {
["is jit"]: (code)=> LuaCode("jit")
["Lua version"]: (code)=> LuaCode("_VERSION")
["nomsu environment"]: ()=> LuaCode(ENVNAME)
["nomsu environment name"]: ()=> LuaCode(ENVNAME\as_lua!)
["nomsu environment"]: ()=> LuaCode("_ENV")
["nomsu environment name"]: ()=> LuaCode('"_ENV"')
}
return compile_actions

View File

@ -238,9 +238,7 @@ nomsu_environment = setmetatable({
code = NomsuCode:from(Source(path, 1, #code), code)
end
_currently_running_files:add(path)
assert(mod[jit and "_G" or "_ENV"] == mod)
mod:run(code)
assert(mod[jit and "_G" or "_ENV"] == mod)
_currently_running_files:pop()
package.loaded[package_name] = mod
package.loaded[path] = mod
@ -248,17 +246,14 @@ nomsu_environment = setmetatable({
end,
use = function(self, package_name)
local mod = self:load_module(package_name)
assert(mod[jit and "_G" or "_ENV"] == mod)
local imports = assert(_module_imports[self])
for k, v in pairs(mod) do
imports[k] = v
end
assert(mod[jit and "_G" or "_ENV"] == mod)
return mod
end,
export = function(self, package_name)
local mod = self:load_module(package_name)
assert(mod[jit and "_G" or "_ENV"] == mod)
local imports = assert(_module_imports[self])
for k, v in pairs(_module_imports[mod]) do
imports[k] = v
@ -268,7 +263,6 @@ nomsu_environment = setmetatable({
self[k] = v
end
end
assert(mod[jit and "_G" or "_ENV"] == mod)
return mod
end,
run = function(self, to_run)
@ -365,7 +359,8 @@ nomsu_environment = setmetatable({
end
_module_imports[env] = _tbl_0
end
env[jit and "_G" or "_ENV"] = env
env._ENV = env
env._G = env
setmetatable(env, getmetatable(nomsu_environment))
return env
end
@ -374,7 +369,8 @@ nomsu_environment = setmetatable({
return _module_imports[self][k]
end
})
nomsu_environment[jit and "_G" or "_ENV"] = nomsu_environment
nomsu_environment._ENV = nomsu_environment
nomsu_environment._G = nomsu_environment
nomsu_environment.COMPILE_RULES = require('bootstrap')
_module_imports[nomsu_environment] = { }
SOURCE_MAP = nomsu_environment.SOURCE_MAP

View File

@ -125,9 +125,7 @@ nomsu_environment = setmetatable({
else
code = NomsuCode\from(Source(path, 1, #code), code)
_currently_running_files\add path
assert(mod[jit and "_G" or "_ENV"] == mod)
mod\run(code)
assert(mod[jit and "_G" or "_ENV"] == mod)
_currently_running_files\pop!
package.loaded[package_name] = mod
package.loaded[path] = mod
@ -135,23 +133,19 @@ nomsu_environment = setmetatable({
use: (package_name)=>
mod = @load_module(package_name)
assert(mod[jit and "_G" or "_ENV"] == mod)
imports = assert _module_imports[@]
for k,v in pairs(mod)
imports[k] = v
assert(mod[jit and "_G" or "_ENV"] == mod)
return mod
export: (package_name)=>
mod = @load_module(package_name)
assert(mod[jit and "_G" or "_ENV"] == mod)
imports = assert _module_imports[@]
for k,v in pairs(_module_imports[mod])
imports[k] = v
for k,v in pairs(mod)
if k != "_G" and k != "_ENV"
@[k] = v
assert(mod[jit and "_G" or "_ENV"] == mod)
return mod
run: (to_run)=>
@ -218,13 +212,15 @@ nomsu_environment = setmetatable({
new_environment: ->
env = {}
_module_imports[env] = {k,v for k,v in pairs(nomsu_environment)}
env[jit and "_G" or "_ENV"] = env
env._ENV = env
env._G = env
setmetatable(env, getmetatable(nomsu_environment))
return env
}, {
__index: (k)=> _module_imports[@][k]
})
nomsu_environment[jit and "_G" or "_ENV"] = nomsu_environment
nomsu_environment._ENV = nomsu_environment
nomsu_environment._G = nomsu_environment
nomsu_environment.COMPILE_RULES = require('bootstrap')
_module_imports[nomsu_environment] = {}