delete dead function

This commit is contained in:
leaf corcoran 2012-10-27 21:16:33 -07:00
parent cae4d4ae7a
commit 9d6467977a
2 changed files with 0 additions and 34 deletions

View File

@ -8,33 +8,6 @@ do
ntype = _table_0.ntype ntype = _table_0.ntype
end end
local concat, insert = table.concat, table.insert local concat, insert = table.concat, table.insert
local table_append
table_append = function(name, len, value)
return {
{
"update",
len,
"+=",
1
},
{
"assign",
{
{
"chain",
name,
{
"index",
len
}
}
},
{
value
}
}
}
end
value_compile = { value_compile = {
exp = function(self, node) exp = function(self, node)
local _comp local _comp

View File

@ -11,13 +11,6 @@ import concat, insert from table
export value_compile export value_compile
table_append = (name, len, value) ->
{
{"update", len, "+=", 1}
{"assign", {
{"chain", name, {"index", len}} }, { value }}
}
value_compile = value_compile =
-- list of values separated by binary operators -- list of values separated by binary operators
exp: (node) => exp: (node) =>