Recompiled files.
This commit is contained in:
parent
0ee80c555d
commit
991d9994e9
114
code_obj.lua
114
code_obj.lua
@ -80,6 +80,37 @@ do
|
|||||||
local _class_0
|
local _class_0
|
||||||
local _base_0 = {
|
local _base_0 = {
|
||||||
is_code = true,
|
is_code = true,
|
||||||
|
__tostring = function(self)
|
||||||
|
if self.__str == nil then
|
||||||
|
local buff, indent = { }, 0
|
||||||
|
local match, gsub, rep
|
||||||
|
do
|
||||||
|
local _obj_0 = string
|
||||||
|
match, gsub, rep = _obj_0.match, _obj_0.gsub, _obj_0.rep
|
||||||
|
end
|
||||||
|
for i, b in ipairs(self.bits) do
|
||||||
|
if type(b) == 'string' then
|
||||||
|
do
|
||||||
|
local spaces = match(b, "\n([ ]*)[^\n]*$")
|
||||||
|
if spaces then
|
||||||
|
indent = #spaces
|
||||||
|
end
|
||||||
|
end
|
||||||
|
else
|
||||||
|
b = tostring(b)
|
||||||
|
if indent > 0 then
|
||||||
|
b = gsub(b, "\n", "\n" .. rep(" ", indent))
|
||||||
|
end
|
||||||
|
end
|
||||||
|
buff[#buff + 1] = b
|
||||||
|
end
|
||||||
|
self.__str = concat(buff, "")
|
||||||
|
end
|
||||||
|
return self.__str
|
||||||
|
end,
|
||||||
|
__len = function(self)
|
||||||
|
return #tostring(self)
|
||||||
|
end,
|
||||||
dirty = function(self)
|
dirty = function(self)
|
||||||
self.__str = nil
|
self.__str = nil
|
||||||
self._trailing_line_len = nil
|
self._trailing_line_len = nil
|
||||||
@ -185,6 +216,10 @@ do
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
return self:dirty()
|
return self:dirty()
|
||||||
|
end,
|
||||||
|
parenthesize = function(self)
|
||||||
|
self:prepend("(")
|
||||||
|
return self:append(")")
|
||||||
end
|
end
|
||||||
}
|
}
|
||||||
_base_0.__index = _base_0
|
_base_0.__index = _base_0
|
||||||
@ -215,6 +250,8 @@ do
|
|||||||
local _class_0
|
local _class_0
|
||||||
local _parent_0 = Code
|
local _parent_0 = Code
|
||||||
local _base_0 = {
|
local _base_0 = {
|
||||||
|
__tostring = Code.__tostring,
|
||||||
|
__len = Code.__len,
|
||||||
add_free_vars = function(self, vars)
|
add_free_vars = function(self, vars)
|
||||||
if not (#vars > 0) then
|
if not (#vars > 0) then
|
||||||
return
|
return
|
||||||
@ -327,37 +364,6 @@ do
|
|||||||
end
|
end
|
||||||
return statements
|
return statements
|
||||||
end,
|
end,
|
||||||
__tostring = function(self)
|
|
||||||
if self.__str == nil then
|
|
||||||
local buff, indent = { }, 0
|
|
||||||
local match, gsub, rep
|
|
||||||
do
|
|
||||||
local _obj_0 = string
|
|
||||||
match, gsub, rep = _obj_0.match, _obj_0.gsub, _obj_0.rep
|
|
||||||
end
|
|
||||||
for i, b in ipairs(self.bits) do
|
|
||||||
if type(b) == 'string' then
|
|
||||||
do
|
|
||||||
local spaces = match(b, "\n([ ]*)[^\n]*$")
|
|
||||||
if spaces then
|
|
||||||
indent = #spaces
|
|
||||||
end
|
|
||||||
end
|
|
||||||
else
|
|
||||||
b = tostring(b)
|
|
||||||
if indent > 0 then
|
|
||||||
b = gsub(b, "\n", "\n" .. rep(" ", indent))
|
|
||||||
end
|
|
||||||
end
|
|
||||||
buff[#buff + 1] = b
|
|
||||||
end
|
|
||||||
self.__str = concat(buff, "")
|
|
||||||
end
|
|
||||||
return self.__str
|
|
||||||
end,
|
|
||||||
__len = function(self)
|
|
||||||
return #tostring(self)
|
|
||||||
end,
|
|
||||||
make_offset_table = function(self)
|
make_offset_table = function(self)
|
||||||
local lua_to_nomsu, nomsu_to_lua = { }, { }
|
local lua_to_nomsu, nomsu_to_lua = { }, { }
|
||||||
local walk
|
local walk
|
||||||
@ -386,12 +392,9 @@ do
|
|||||||
}
|
}
|
||||||
end,
|
end,
|
||||||
parenthesize = function(self)
|
parenthesize = function(self)
|
||||||
if self.is_value then
|
assert(self.is_value, "Cannot parenthesize lua statements")
|
||||||
self:prepend("(")
|
self:prepend("(")
|
||||||
return self:append(")")
|
return self:append(")")
|
||||||
else
|
|
||||||
return error("Cannot parenthesize lua statements")
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
}
|
}
|
||||||
_base_0.__index = _base_0
|
_base_0.__index = _base_0
|
||||||
@ -439,41 +442,8 @@ do
|
|||||||
local _class_0
|
local _class_0
|
||||||
local _parent_0 = Code
|
local _parent_0 = Code
|
||||||
local _base_0 = {
|
local _base_0 = {
|
||||||
__tostring = function(self)
|
__tostring = Code.__tostring,
|
||||||
if self.__str == nil then
|
__len = Code.__len
|
||||||
local buff, indent = { }, 0
|
|
||||||
local match, gsub, rep
|
|
||||||
do
|
|
||||||
local _obj_0 = string
|
|
||||||
match, gsub, rep = _obj_0.match, _obj_0.gsub, _obj_0.rep
|
|
||||||
end
|
|
||||||
for i, b in ipairs(self.bits) do
|
|
||||||
if type(b) == 'string' then
|
|
||||||
do
|
|
||||||
local spaces = match(b, "\n([ ]*)[^\n]*$")
|
|
||||||
if spaces then
|
|
||||||
indent = #spaces
|
|
||||||
end
|
|
||||||
end
|
|
||||||
else
|
|
||||||
b = tostring(b)
|
|
||||||
if indent > 0 then
|
|
||||||
b = gsub(b, "\n", "\n" .. rep(" ", indent))
|
|
||||||
end
|
|
||||||
end
|
|
||||||
buff[#buff + 1] = b
|
|
||||||
end
|
|
||||||
self.__str = concat(buff, "")
|
|
||||||
end
|
|
||||||
return self.__str
|
|
||||||
end,
|
|
||||||
__len = function(self)
|
|
||||||
return #tostring(self)
|
|
||||||
end,
|
|
||||||
parenthesize = function(self)
|
|
||||||
self:prepend("(")
|
|
||||||
return self:append(")")
|
|
||||||
end
|
|
||||||
}
|
}
|
||||||
_base_0.__index = _base_0
|
_base_0.__index = _base_0
|
||||||
setmetatable(_base_0, _parent_0.__base)
|
setmetatable(_base_0, _parent_0.__base)
|
||||||
|
@ -109,8 +109,6 @@ print_error = function(error_message, start_fn, stop_fn)
|
|||||||
local filename, start, stop = calling_fn.source:match('@([^[]*)%[([0-9]+):([0-9]+)]')
|
local filename, start, stop = calling_fn.source:match('@([^[]*)%[([0-9]+):([0-9]+)]')
|
||||||
assert(filename)
|
assert(filename)
|
||||||
local file = files.read(filename)
|
local file = files.read(filename)
|
||||||
local err_line = files.get_line(file, calling_fn.currentline)
|
|
||||||
local offending_statement = colored.bright(colored.red(err_line:match("^[ ]*(.*)")))
|
|
||||||
if calling_fn.name then
|
if calling_fn.name then
|
||||||
do
|
do
|
||||||
local tmp = calling_fn.name:match("^A_([a-zA-Z0-9_]*)$")
|
local tmp = calling_fn.name:match("^A_([a-zA-Z0-9_]*)$")
|
||||||
@ -125,7 +123,15 @@ print_error = function(error_message, start_fn, stop_fn)
|
|||||||
else
|
else
|
||||||
name = "main chunk"
|
name = "main chunk"
|
||||||
end
|
end
|
||||||
line = colored.yellow(tostring(filename) .. ":" .. tostring(calling_fn.currentline) .. " in " .. tostring(name) .. "\n " .. tostring(offending_statement))
|
do
|
||||||
|
local err_line = files.get_line(file, calling_fn.currentline)
|
||||||
|
if err_line then
|
||||||
|
local offending_statement = colored.bright(colored.red(err_line:match("^[ ]*(.*)")))
|
||||||
|
line = colored.yellow(tostring(filename) .. ":" .. tostring(calling_fn.currentline) .. " in " .. tostring(name) .. "\n " .. tostring(offending_statement))
|
||||||
|
else
|
||||||
|
line = colored.yellow(tostring(filename) .. ":" .. tostring(calling_fn.currentline) .. " in " .. tostring(name))
|
||||||
|
end
|
||||||
|
end
|
||||||
else
|
else
|
||||||
local file
|
local file
|
||||||
ok, file = pcall(function()
|
ok, file = pcall(function()
|
||||||
@ -188,9 +194,13 @@ print_error = function(error_message, start_fn, stop_fn)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
if file then
|
if file then
|
||||||
local err_line = files.get_line(file, line_num)
|
do
|
||||||
local offending_statement = colored.bright(colored.red(err_line:match("^[ ]*(.*)$")))
|
local err_line = files.get_line(file, line_num)
|
||||||
line = line .. ("\n " .. offending_statement)
|
if err_line then
|
||||||
|
local offending_statement = colored.bright(colored.red(err_line:match("^[ ]*(.*)$")))
|
||||||
|
line = line .. ("\n " .. offending_statement)
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -268,7 +268,6 @@ run = function()
|
|||||||
end
|
end
|
||||||
if #file_queue == 0 then
|
if #file_queue == 0 then
|
||||||
nomsu:run([[#!/usr/bin/env nomsu -V2
|
nomsu:run([[#!/usr/bin/env nomsu -V2
|
||||||
use "core"
|
|
||||||
use "lib/consolecolor.nom"
|
use "lib/consolecolor.nom"
|
||||||
action [quit, exit]: lua> "os.exit(0)"
|
action [quit, exit]: lua> "os.exit(0)"
|
||||||
action [help]:
|
action [help]:
|
||||||
|
Loading…
Reference in New Issue
Block a user