Added bit library and support for checking Lua version and whether

LuaJIT is being used.
This commit is contained in:
Bruce Hill 2018-07-30 14:26:08 -07:00
parent 54906c0553
commit dc0c940d65
2 changed files with 22 additions and 4 deletions

View File

@ -204,7 +204,6 @@ do
loadstring = loadstring, loadstring = loadstring,
type = type, type = type,
select = select, select = select,
debug = debug,
math = math, math = math,
io = io, io = io,
load = load, load = load,
@ -213,6 +212,11 @@ do
list = list, list = list,
dict = dict dict = dict
} }
if jit then
to_add.bit = require('bit')
elseif _VERSION == "Lua 5.2" then
to_add.bit = bit32
end
for k, v in pairs(to_add) do for k, v in pairs(to_add) do
NomsuCompiler[k] = v NomsuCompiler[k] = v
end end
@ -365,6 +369,12 @@ do
return _accum_0 return _accum_0
end)(), "\n") end)(), "\n")
return LuaCode(tree.source, "TESTS[" .. tostring(repr(tostring(tree.source))) .. "] = ", repr(test_str)) return LuaCode(tree.source, "TESTS[" .. tostring(repr(tostring(tree.source))) .. "] = ", repr(test_str))
end,
["is jit"] = function(self, tree, _code)
return LuaCode.Value(tree.source, jit and "true" or "false")
end,
["Lua version"] = function(self, tree, _code)
return LuaCode.Value(tree.source, repr(_VERSION))
end end
}, { }, {
__index = function(self, stub) __index = function(self, stub)
@ -1159,7 +1169,7 @@ do
end end
end end
nomsu:append(interp_nomsu) nomsu:append(interp_nomsu)
if interp_nomsu:is_multiline() then if interp_nomsu:is_multiline() and i < #tree then
nomsu:append("\n..") nomsu:append("\n..")
end end
end end

View File

@ -109,11 +109,13 @@ with NomsuCompiler
:next, :unpack, :setmetatable, :coroutine, :rawequal, :getmetatable, :pcall, :next, :unpack, :setmetatable, :coroutine, :rawequal, :getmetatable, :pcall,
:error, :package, :os, :require, :tonumber, :tostring, :string, :xpcall, :module, :error, :package, :os, :require, :tonumber, :tostring, :string, :xpcall, :module,
:print, :loadfile, :rawset, :_VERSION, :collectgarbage, :rawget, :rawlen, :print, :loadfile, :rawset, :_VERSION, :collectgarbage, :rawget, :rawlen,
:table, :assert, :dofile, :loadstring, :type, :select, :debug, :math, :io, :load, :table, :assert, :dofile, :loadstring, :type, :select, :math, :io, :load,
:pairs, :ipairs, :pairs, :ipairs,
-- Nomsu types: -- Nomsu types:
:list, :dict, :list, :dict,
} }
if jit then to_add.bit = require('bit')
elseif _VERSION == "Lua 5.2" then to_add.bit = bit32
for k,v in pairs(to_add) do NomsuCompiler[k] = v for k,v in pairs(to_add) do NomsuCompiler[k] = v
for k,v in pairs(AST) do NomsuCompiler[k] = v for k,v in pairs(AST) do NomsuCompiler[k] = v
.LuaCode = LuaCode .LuaCode = LuaCode
@ -230,6 +232,12 @@ with NomsuCompiler
["test %"]: (tree, _body)=> ["test %"]: (tree, _body)=>
test_str = table.concat [tostring(@tree_to_nomsu(line)) for line in *_body], "\n" test_str = table.concat [tostring(@tree_to_nomsu(line)) for line in *_body], "\n"
LuaCode tree.source, "TESTS[#{repr(tostring(tree.source))}] = ", repr(test_str) LuaCode tree.source, "TESTS[#{repr(tostring(tree.source))}] = ", repr(test_str)
["is jit"]: (tree, _code)=>
return LuaCode.Value(tree.source, jit and "true" or "false")
["Lua version"]: (tree, _code)=>
return LuaCode.Value(tree.source, repr(_VERSION))
}, { }, {
__index: (stub)=> __index: (stub)=>
if math_expression\match(stub) if math_expression\match(stub)
@ -743,7 +751,7 @@ with NomsuCompiler
elseif bit.type != "List" and bit.type != "Dict" elseif bit.type != "List" and bit.type != "Dict"
interp_nomsu\parenthesize! interp_nomsu\parenthesize!
nomsu\append interp_nomsu nomsu\append interp_nomsu
if interp_nomsu\is_multiline! if interp_nomsu\is_multiline! and i < #tree
nomsu\append "\n.." nomsu\append "\n.."
nomsu = NomsuCode(tree.source) nomsu = NomsuCode(tree.source)
add_text(nomsu, tree) add_text(nomsu, tree)