Recompile.

This commit is contained in:
Bruce Hill 2017-10-19 18:16:48 -07:00
parent ca5896b7bd
commit 09cb00e106

View File

@ -833,28 +833,36 @@ end)]]):format(concat(lua_bits, "\n"))
return self:error("Invalid type for %" .. tostring(varname) .. ". Expected " .. tostring(desired_type) .. ", but got " .. tostring(x.type) .. ".") return self:error("Invalid type for %" .. tostring(varname) .. ". Expected " .. tostring(desired_type) .. ", but got " .. tostring(x.type) .. ".")
end, end,
initialize_core = function(self) initialize_core = function(self)
local nomsu_string_as_lua
nomsu_string_as_lua = function(self, code)
local concat_parts = { }
local _list_0 = code.value
for _index_0 = 1, #_list_0 do
local bit = _list_0[_index_0]
if type(bit) == "string" then
insert(concat_parts, bit)
else
local expr, statement = self:tree_to_lua(bit)
if statement then
self:error("Cannot use [[" .. tostring(bit.src) .. "]] as a string interpolation value, since it's not an expression.")
end
insert(concat_parts, expr)
end
end
return concat(concat_parts)
end
local lua_code local lua_code
lua_code = function(self, vars) lua_code = function(self, vars)
local inner_vars = setmetatable({ }, { local lua = nomsu_string_as_lua(self, vars.code)
__index = function(_, key)
return "vars[" .. tostring(repr(key)) .. "]"
end
})
local lua = self:tree_to_value(vars.code, inner_vars)
return nil, lua return nil, lua
end end
self:defmacro("lua > %code", lua_code) self:defmacro("lua> %code", lua_code)
local lua_value local lua_value
lua_value = function(self, vars) lua_value = function(self, vars)
local inner_vars = setmetatable({ }, { local lua = nomsu_string_as_lua(self, vars.code)
__index = function(_, key)
return "vars[" .. tostring(repr(key)) .. "]"
end
})
local lua = self:tree_to_value(vars.code, inner_vars)
return lua, nil return lua, nil
end end
self:defmacro("= lua %code", lua_value) self:defmacro("=lua %code", lua_value)
local run_file local run_file
run_file = function(self, vars) run_file = function(self, vars)
if vars.filename:match(".*%.lua") then if vars.filename:match(".*%.lua") then