Dead code cleanup
This commit is contained in:
parent
b3df63eb10
commit
5637676bc4
@ -152,8 +152,12 @@ immediately
|
|||||||
Lua "\(%code as lua expr):remove_free_vars(\(%vars as lua expr));"
|
Lua "\(%code as lua expr):remove_free_vars(\(%vars as lua expr));"
|
||||||
|
|
||||||
action [%tree as value]
|
action [%tree as value]
|
||||||
=lua "nomsu:tree_to_value(\%tree)"
|
lua> ".."
|
||||||
|
if \%tree.type == 'Text' and #\%tree == 1 and type(\%tree[1]) == 'string' then
|
||||||
|
return \%tree[1]
|
||||||
|
end
|
||||||
|
local lua = Lua(\%tree.source, "return ",nomsu:tree_to_lua(\%tree))
|
||||||
|
return nomsu:run_lua(lua)
|
||||||
|
|
||||||
action [%tree's stub]
|
action [%tree's stub]
|
||||||
=lua "\%tree:get_stub()"
|
=lua "\%tree:get_stub()"
|
||||||
|
49
nomsu.lua
49
nomsu.lua
@ -260,7 +260,7 @@ end
|
|||||||
local NomsuCompiler
|
local NomsuCompiler
|
||||||
do
|
do
|
||||||
local _class_0
|
local _class_0
|
||||||
local stub_pattern, var_pattern, _nomsu_chunk_counter, _running_files, MAX_LINE, math_expression
|
local stub_pattern, var_pattern, _running_files, MAX_LINE, math_expression
|
||||||
local _base_0 = {
|
local _base_0 = {
|
||||||
define_action = function(self, signature, fn, is_compile_action)
|
define_action = function(self, signature, fn, is_compile_action)
|
||||||
if is_compile_action == nil then
|
if is_compile_action == nil then
|
||||||
@ -309,12 +309,7 @@ do
|
|||||||
return self:define_action(signature, fn, true)
|
return self:define_action(signature, fn, true)
|
||||||
end,
|
end,
|
||||||
parse = function(self, nomsu_code)
|
parse = function(self, nomsu_code)
|
||||||
if type(nomsu_code) == 'string' then
|
assert(type(nomsu_code) ~= 'string')
|
||||||
_nomsu_chunk_counter = _nomsu_chunk_counter + 1
|
|
||||||
local filename = "<nomsu chunk #" .. tostring(_nomsu_chunk_counter) .. ">.nom"
|
|
||||||
FILE_CACHE[filename] = nomsu_code
|
|
||||||
nomsu_code = Nomsu(Source(filename, 1, #nomsu_code), nomsu_code)
|
|
||||||
end
|
|
||||||
local userdata = {
|
local userdata = {
|
||||||
source_code = nomsu_code,
|
source_code = nomsu_code,
|
||||||
indent = 0,
|
indent = 0,
|
||||||
@ -348,13 +343,10 @@ do
|
|||||||
if compile_fn == nil then
|
if compile_fn == nil then
|
||||||
compile_fn = nil
|
compile_fn = nil
|
||||||
end
|
end
|
||||||
if #tostring(nomsu_code) == 0 then
|
local tree = assert(self:parse(nomsu_code))
|
||||||
|
if type(tree) == 'number' then
|
||||||
return nil
|
return nil
|
||||||
end
|
end
|
||||||
local tree = self:parse(nomsu_code)
|
|
||||||
if not (tree) then
|
|
||||||
error("Failed to parse: " .. tostring(nomsu_code))
|
|
||||||
end
|
|
||||||
local lua = self:tree_to_lua(tree):as_statements()
|
local lua = self:tree_to_lua(tree):as_statements()
|
||||||
lua:declare_locals()
|
lua:declare_locals()
|
||||||
lua:prepend("-- File: " .. tostring(nomsu_code.source or "") .. "\n")
|
lua:prepend("-- File: " .. tostring(nomsu_code.source or "") .. "\n")
|
||||||
@ -1107,28 +1099,6 @@ do
|
|||||||
return error("Unknown type: " .. tostring(tree.type))
|
return error("Unknown type: " .. tostring(tree.type))
|
||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
tree_to_value = function(self, tree)
|
|
||||||
if tree.type == 'Text' and #tree == 1 and type(tree[1]) == 'string' then
|
|
||||||
return tree[1]
|
|
||||||
end
|
|
||||||
local lua = Lua(tree.source, "return ", self:tree_to_lua(tree), ";")
|
|
||||||
return self:run_lua(lua)
|
|
||||||
end,
|
|
||||||
walk_tree = function(self, tree, depth)
|
|
||||||
if depth == nil then
|
|
||||||
depth = 0
|
|
||||||
end
|
|
||||||
coroutine.yield(tree, depth)
|
|
||||||
if tree.is_multi then
|
|
||||||
local _list_0 = tree.value
|
|
||||||
for _index_0 = 1, #_list_0 do
|
|
||||||
local v = _list_0[_index_0]
|
|
||||||
if Types.is_node(v) then
|
|
||||||
self:walk_tree(v, depth + 1)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end,
|
|
||||||
initialize_core = function(self)
|
initialize_core = function(self)
|
||||||
local nomsu = self
|
local nomsu = self
|
||||||
self:define_compile_action("immediately %block", function(self, _block)
|
self:define_compile_action("immediately %block", function(self, _block)
|
||||||
@ -1200,7 +1170,12 @@ do
|
|||||||
return add_lua_bits(Lua.Value(self.source), _code)
|
return add_lua_bits(Lua.Value(self.source), _code)
|
||||||
end)
|
end)
|
||||||
return self:define_compile_action("use %path", function(self, _path)
|
return self:define_compile_action("use %path", function(self, _path)
|
||||||
local path = nomsu:tree_to_value(_path)
|
local path
|
||||||
|
if _path.type == 'Text' and #_path == 1 and type(_path[1]) == 'string' then
|
||||||
|
path = _path[1]
|
||||||
|
else
|
||||||
|
path = nomsu:run_lua(Lua(_path.source, "return ", nomsu:tree_to_lua(_path)))
|
||||||
|
end
|
||||||
nomsu:run_file(path)
|
nomsu:run_file(path)
|
||||||
return Lua(_path.source, "nomsu:run_file(" .. tostring(repr(path)) .. ");")
|
return Lua(_path.source, "nomsu:run_file(" .. tostring(repr(path)) .. ");")
|
||||||
end)
|
end)
|
||||||
@ -1224,9 +1199,6 @@ do
|
|||||||
return id
|
return id
|
||||||
end
|
end
|
||||||
})
|
})
|
||||||
self.file_metadata = setmetatable({ }, {
|
|
||||||
__mode = "k"
|
|
||||||
})
|
|
||||||
self.source_map = { }
|
self.source_map = { }
|
||||||
self.environment = {
|
self.environment = {
|
||||||
nomsu = self,
|
nomsu = self,
|
||||||
@ -1370,7 +1342,6 @@ do
|
|||||||
tok <- ({'%'} %varname) / {%word}
|
tok <- ({'%'} %varname) / {%word}
|
||||||
]=], stub_defs)
|
]=], stub_defs)
|
||||||
var_pattern = re.compile("{| ((('%' {%varname}) / %word) [ ]*)+ !. |}", stub_defs)
|
var_pattern = re.compile("{| ((('%' {%varname}) / %word) [ ]*)+ !. |}", stub_defs)
|
||||||
_nomsu_chunk_counter = 0
|
|
||||||
_running_files = { }
|
_running_files = { }
|
||||||
MAX_LINE = 80
|
MAX_LINE = 80
|
||||||
math_expression = re.compile([[ ([+-] " ")* "%" (" " [*/^+-] (" " [+-])* " %")+ !. ]])
|
math_expression = re.compile([[ ([+-] " ")* "%" (" " [*/^+-] (" " [+-])* " %")+ !. ]])
|
||||||
|
38
nomsu.moon
38
nomsu.moon
@ -231,7 +231,6 @@ class NomsuCompiler
|
|||||||
@[key] = id
|
@[key] = id
|
||||||
return id
|
return id
|
||||||
})
|
})
|
||||||
@file_metadata = setmetatable({}, {__mode:"k"})
|
|
||||||
@source_map = {}
|
@source_map = {}
|
||||||
|
|
||||||
@environment = {
|
@environment = {
|
||||||
@ -317,20 +316,13 @@ class NomsuCompiler
|
|||||||
define_compile_action: (signature, fn)=>
|
define_compile_action: (signature, fn)=>
|
||||||
return @define_action(signature, fn, true)
|
return @define_action(signature, fn, true)
|
||||||
|
|
||||||
_nomsu_chunk_counter = 0
|
|
||||||
parse: (nomsu_code)=>
|
parse: (nomsu_code)=>
|
||||||
if type(nomsu_code) == 'string'
|
assert(type(nomsu_code) != 'string')
|
||||||
_nomsu_chunk_counter += 1
|
|
||||||
filename = "<nomsu chunk ##{_nomsu_chunk_counter}>.nom"
|
|
||||||
FILE_CACHE[filename] = nomsu_code
|
|
||||||
nomsu_code = Nomsu(Source(filename,1,#nomsu_code), nomsu_code)
|
|
||||||
|
|
||||||
userdata = {
|
userdata = {
|
||||||
source_code:nomsu_code, indent: 0, errors: {},
|
source_code:nomsu_code, indent: 0, errors: {},
|
||||||
source: nomsu_code.source,
|
source: nomsu_code.source,
|
||||||
}
|
}
|
||||||
tree = NOMSU_PATTERN\match(tostring(nomsu_code), nil, userdata)
|
tree = NOMSU_PATTERN\match(tostring(nomsu_code), nil, userdata)
|
||||||
|
|
||||||
unless tree
|
unless tree
|
||||||
error "In file #{colored.blue filename} failed to parse:\n#{colored.onyellow colored.black nomsu_code}"
|
error "In file #{colored.blue filename} failed to parse:\n#{colored.onyellow colored.black nomsu_code}"
|
||||||
|
|
||||||
@ -344,10 +336,9 @@ class NomsuCompiler
|
|||||||
return tree
|
return tree
|
||||||
|
|
||||||
run: (nomsu_code, compile_fn=nil)=>
|
run: (nomsu_code, compile_fn=nil)=>
|
||||||
if #tostring(nomsu_code) == 0 then return nil
|
tree = assert(@parse(nomsu_code))
|
||||||
tree = @parse(nomsu_code)
|
if type(tree) == 'number' -- Happens if pattern matches, but there are no captures, e.g. an empty string
|
||||||
unless tree
|
return nil
|
||||||
error "Failed to parse: #{nomsu_code}"
|
|
||||||
lua = @tree_to_lua(tree)\as_statements!
|
lua = @tree_to_lua(tree)\as_statements!
|
||||||
lua\declare_locals!
|
lua\declare_locals!
|
||||||
lua\prepend "-- File: #{nomsu_code.source or ""}\n"
|
lua\prepend "-- File: #{nomsu_code.source or ""}\n"
|
||||||
@ -355,7 +346,7 @@ class NomsuCompiler
|
|||||||
compile_fn(lua)
|
compile_fn(lua)
|
||||||
return @run_lua(lua)
|
return @run_lua(lua)
|
||||||
|
|
||||||
_running_files = {}
|
_running_files = {} -- For detecting circular imports
|
||||||
run_file: (filename, compile_fn=nil)=>
|
run_file: (filename, compile_fn=nil)=>
|
||||||
loaded = @environment.LOADED
|
loaded = @environment.LOADED
|
||||||
if loaded[filename]
|
if loaded[filename]
|
||||||
@ -886,20 +877,6 @@ class NomsuCompiler
|
|||||||
else
|
else
|
||||||
error("Unknown type: #{tree.type}")
|
error("Unknown type: #{tree.type}")
|
||||||
|
|
||||||
tree_to_value: (tree)=>
|
|
||||||
-- Special case for text literals
|
|
||||||
if tree.type == 'Text' and #tree == 1 and type(tree[1]) == 'string'
|
|
||||||
return tree[1]
|
|
||||||
lua = Lua(tree.source, "return ",@tree_to_lua(tree),";")
|
|
||||||
return @run_lua(lua)
|
|
||||||
|
|
||||||
walk_tree: (tree, depth=0)=>
|
|
||||||
coroutine.yield(tree, depth)
|
|
||||||
if tree.is_multi
|
|
||||||
for v in *tree.value
|
|
||||||
if Types.is_node(v)
|
|
||||||
@walk_tree(v, depth+1)
|
|
||||||
|
|
||||||
initialize_core: =>
|
initialize_core: =>
|
||||||
-- Sets up some core functionality
|
-- Sets up some core functionality
|
||||||
nomsu = self
|
nomsu = self
|
||||||
@ -957,7 +934,10 @@ class NomsuCompiler
|
|||||||
return add_lua_bits(Lua.Value(@source), _code)
|
return add_lua_bits(Lua.Value(@source), _code)
|
||||||
|
|
||||||
@define_compile_action "use %path", (_path)=>
|
@define_compile_action "use %path", (_path)=>
|
||||||
path = nomsu\tree_to_value(_path)
|
path = if _path.type == 'Text' and #_path == 1 and type(_path[1]) == 'string'
|
||||||
|
_path[1]
|
||||||
|
else
|
||||||
|
nomsu\run_lua Lua(_path.source, "return ",nomsu\tree_to_lua(_path))
|
||||||
nomsu\run_file(path)
|
nomsu\run_file(path)
|
||||||
return Lua(_path.source, "nomsu:run_file(#{repr path});")
|
return Lua(_path.source, "nomsu:run_file(#{repr path});")
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user