Deleted some dead code.
This commit is contained in:
parent
4b6d35aa9f
commit
28badba29a
@ -18,13 +18,11 @@ new_uuid = require 'uuid'
|
|||||||
colors = setmetatable({}, {__index:->""})
|
colors = setmetatable({}, {__index:->""})
|
||||||
colored = setmetatable({}, {__index:(_,color)-> ((msg)-> colors[color]..(msg or '')..colors.reset)})
|
colored = setmetatable({}, {__index:(_,color)-> ((msg)-> colors[color]..(msg or '')..colors.reset)})
|
||||||
{:insert, :remove, :concat} = table
|
{:insert, :remove, :concat} = table
|
||||||
--pcall = (fn,...)-> true, fn(...)
|
|
||||||
if _VERSION == "Lua 5.1"
|
if _VERSION == "Lua 5.1"
|
||||||
xp = xpcall
|
xp = xpcall
|
||||||
xpcall = (f, errhandler, ...)->
|
xpcall = (f, errhandler, ...)->
|
||||||
args = {n:select("#", ...), ...}
|
args = {n:select("#", ...), ...}
|
||||||
return xp((...)-> f(unpack(args,1,args.n))), errhandler
|
return xp((...)-> f(unpack(args,1,args.n))), errhandler
|
||||||
--pcall = (fn, ...) -> xpcall(fn, debug.traceback, ...)
|
|
||||||
|
|
||||||
-- 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
|
||||||
|
Loading…
Reference in New Issue
Block a user