Fixed renaming lua_obj->code_obj
This commit is contained in:
parent
4892c63e92
commit
7f99c70d56
@ -32,7 +32,7 @@ end
|
||||
local debug_getinfo = debug.getinfo
|
||||
local Nomsu, Lua, Source
|
||||
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
|
||||
end
|
||||
FILE_CACHE = setmetatable({ }, {
|
||||
|
@ -26,7 +26,7 @@ export colored
|
||||
colored = setmetatable({}, {__index:(_,color)-> ((msg)-> colors[color]..tostring(msg or '')..colors.reset)})
|
||||
{:insert, :remove, :concat} = table
|
||||
debug_getinfo = debug.getinfo
|
||||
{:Nomsu, :Lua, :Source} = require "lua_obj"
|
||||
{:Nomsu, :Lua, :Source} = require "code_obj"
|
||||
|
||||
-- TODO:
|
||||
-- consider non-linear codegen, rather than doing thunks for things like comprehensions
|
||||
|
@ -11,7 +11,7 @@ do
|
||||
end
|
||||
local Lua, Nomsu, Location
|
||||
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
|
||||
end
|
||||
local MAX_LINE = 80
|
||||
|
@ -6,7 +6,7 @@ lpeg = require 'lpeg'
|
||||
{:repr, :stringify, :min, :max, :equivalent, :set, :is_list, :sum} = utils
|
||||
immutable = require 'immutable'
|
||||
{: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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user