Re-implemented nomsu -> lua comment translation and added file chunk

comments.
This commit is contained in:
Bruce Hill 2018-11-11 18:28:10 -08:00
parent 3c7a0ff2ea
commit 171e9d674e
6 changed files with 10 additions and 15 deletions

View File

@ -199,11 +199,11 @@ run = function()
tree
}
end
for _index_1 = 1, #tree do
local chunk = tree[_index_1]
for chunk_no, chunk in ipairs(tree) do
local lua = nomsu_environment.compile(chunk)
lua:declare_locals()
nomsu_environment.run_1_in(chunk, nomsu_environment)
output:write((chunk_no > 1) and '\n' or '', "-- File " .. tostring(filename) .. " chunk #" .. tostring(chunk_no) .. "\n")
output:write(tostring(lua), "\n")
if args.verbose then
print(tostring(lua))

View File

@ -128,10 +128,11 @@ run = ->
code = NomsuCode\from(source, code)
tree = nomsu_environment._1_parsed(code)
tree = {tree} unless tree.type == 'FileChunks'
for chunk in *tree
for chunk_no, chunk in ipairs tree
lua = nomsu_environment.compile(chunk)
lua\declare_locals!
nomsu_environment.run_1_in(chunk, nomsu_environment)
output\write((chunk_no > 1) and '\n' or '', "-- File #{filename} chunk ##{chunk_no}\n")
output\write(tostring(lua), "\n")
if args.verbose then print(tostring(lua))
print ("Compiled %-25s -> %s")\format(filename, filename\gsub("%.nom$", ".lua"))

View File

@ -433,7 +433,7 @@ local compile = setmetatable({
elseif "FileChunks" == _exp_0 then
return error("Can't convert FileChunks to a single block of lua, since each chunk's " .. "compilation depends on the earlier chunks")
elseif "Comment" == _exp_0 then
return LuaCode:from(tree.source, "")
return LuaCode:from(tree.source, "-- ", (tree[1]:gsub('\n', '\n-- ')))
elseif "Error" == _exp_0 then
return error("Can't compile errors")
else

View File

@ -270,10 +270,6 @@ compile = setmetatable({
i += 1
lua\append "\n return comprehension\nend)()"
return lua
--lua = LuaCode\from tree.source, "#{tree.type}{"
--lua\concat_append([compile(e) for e in *tree when e.type != 'Comment'], ", ", ",\n ")
--lua\append "}"
--return lua
when "DictEntry"
key, value = tree[1], tree[2]
@ -323,8 +319,7 @@ compile = setmetatable({
"compilation depends on the earlier chunks")
when "Comment"
-- TODO: implement?
return LuaCode\from(tree.source, "")
return LuaCode\from(tree.source, "-- ", (tree[1]\gsub('\n', '\n-- ')))
when "Error"
error("Can't compile errors")

View File

@ -208,11 +208,10 @@ local nomsu_environment = Importer({
}
end
local ret = nil
for _index_0 = 1, #to_run do
local chunk = to_run[_index_0]
for chunk_no, chunk in ipairs(to_run) do
local lua = environment.compile(chunk)
lua:declare_locals()
lua:prepend("-- File: " .. tostring(filename) .. "\n")
lua:prepend("-- File: " .. tostring(filename) .. " chunk #" .. tostring(chunk_no) .. "\n")
ret = environment.run_1_in(lua, environment)
end
return ret

View File

@ -107,10 +107,10 @@ nomsu_environment = Importer{
-- (typically), so each chunk needs to compile and run before the next one
-- compiles.
ret = nil
for chunk in *to_run
for chunk_no, chunk in ipairs to_run
lua = environment.compile(chunk)
lua\declare_locals!
lua\prepend "-- File: #{filename}\n"
lua\prepend "-- File: #{filename} chunk ##{chunk_no}\n"
ret = environment.run_1_in(lua, environment)
return ret
elseif LuaCode\is_instance(to_run)