Fixed renaming lua_obj->code_obj

This commit is contained in:
Bruce Hill 2018-04-26 14:00:01 -07:00
parent 4892c63e92
commit 7f99c70d56
4 changed files with 4 additions and 4 deletions

View File

@ -32,7 +32,7 @@ end
local debug_getinfo = debug.getinfo local debug_getinfo = debug.getinfo
local Nomsu, Lua, Source local Nomsu, Lua, Source
do do
local _obj_0 = require("lua_obj") local _obj_0 = require("code_obj")
Nomsu, Lua, Source = _obj_0.Nomsu, _obj_0.Lua, _obj_0.Source Nomsu, Lua, Source = _obj_0.Nomsu, _obj_0.Lua, _obj_0.Source
end end
FILE_CACHE = setmetatable({ }, { FILE_CACHE = setmetatable({ }, {

View File

@ -26,7 +26,7 @@ export colored
colored = setmetatable({}, {__index:(_,color)-> ((msg)-> colors[color]..tostring(msg or '')..colors.reset)}) colored = setmetatable({}, {__index:(_,color)-> ((msg)-> colors[color]..tostring(msg or '')..colors.reset)})
{:insert, :remove, :concat} = table {:insert, :remove, :concat} = table
debug_getinfo = debug.getinfo debug_getinfo = debug.getinfo
{:Nomsu, :Lua, :Source} = require "lua_obj" {:Nomsu, :Lua, :Source} = require "code_obj"
-- TODO: -- TODO:
-- consider non-linear codegen, rather than doing thunks for things like comprehensions -- consider non-linear codegen, rather than doing thunks for things like comprehensions

View File

@ -11,7 +11,7 @@ do
end end
local Lua, Nomsu, Location local Lua, Nomsu, Location
do do
local _obj_0 = require("lua_obj") local _obj_0 = require("code_obj")
Lua, Nomsu, Location = _obj_0.Lua, _obj_0.Nomsu, _obj_0.Location Lua, Nomsu, Location = _obj_0.Lua, _obj_0.Nomsu, _obj_0.Location
end end
local MAX_LINE = 80 local MAX_LINE = 80

View File

@ -6,7 +6,7 @@ lpeg = require 'lpeg'
{:repr, :stringify, :min, :max, :equivalent, :set, :is_list, :sum} = utils {:repr, :stringify, :min, :max, :equivalent, :set, :is_list, :sum} = utils
immutable = require 'immutable' immutable = require 'immutable'
{:insert, :remove, :concat} = table {:insert, :remove, :concat} = table
{:Lua, :Nomsu, :Location} = require "lua_obj" {:Lua, :Nomsu, :Location} = require "code_obj"
MAX_LINE = 80 -- For beautification purposes, try not to make lines much longer than this value MAX_LINE = 80 -- For beautification purposes, try not to make lines much longer than this value