Work in progress...

This commit is contained in:
Bruce Hill 2018-04-11 20:05:12 -07:00
parent ab8ccf4e27
commit b9827b1745
5 changed files with 801 additions and 818 deletions

View File

@ -5,93 +5,74 @@
# Compile-time action to make compile-time actions: # Compile-time action to make compile-time actions:
immediately: immediately:
lua> ".." lua> ".."
nomsu:define_compile_action("compile %actions to %lua", \(!! code location !!), function(__callsite, \%actions, \%lua) nomsu:define_compile_action("compile %actions to %lua", \(!! code location !!), function(\%actions, \%lua)
local tree = nomsu.compilestack[#nomsu.compilestack];
local lua = Lua(tree.source, "nomsu:define_compile_action(");
local stubs = {}; local stubs = {};
for i, action in ipairs(\%actions.value) do for i, action in ipairs(\%actions.value) do
stubs[i] = nomsu:tree_to_named_stub(action); stubs[i] = nomsu:tree_to_named_stub(action);
end end
lua:append(repr(stubs), ", ", repr(tree.source:get_line()), ", function(");
local args = {}; local args = {};
for i,tok in ipairs(\%actions.value[1].value) do for i,tok in ipairs(\%actions.value[1].value) do
if tok.type == "Var" then args[#args+1] = nomsu:var_to_lua_identifier(tok.value); end if tok.type == "Var" then args[#args+1] = nomsu:var_to_lua_identifier(tok.value); end
end end
local arg_set = {};
for i, arg in ipairs(args) do arg_set[arg] = true; end
if \%lua.type == "Text" then if \%lua.type == "Text" then
error("Invalid type for 'compile % to %', expected a dict with expr/statements, but got text.", 0); error("Invalid type for 'compile % to %', expected a dict with expr/statements, but got text.", 0);
end end
local body_lua = nomsu:tree_to_lua(\%lua); for i, arg in ipairs(args) do
local body_code = body_lua.statements or ("return "..body_lua.expr..";"); lua:append(arg);
local undeclared_locals = {}; if i < #args then lua:append(", ") end
for i, body_local in ipairs(body_lua.locals or {}) do
if not arg_set[body_local] then
table.insert(undeclared_locals, body_local);
end end
end local body_lua = nomsu:tree_to_lua(\%lua):as_statements();
if #undeclared_locals > 0 then body_lua:declare_locals(args);
body_code = "local "..table.concat(undeclared_locals, ", ")..";\\n"..body_code; lua:append("\n ", body_lua, "\nend);")
end return lua;
table.insert(args, 1, "__callsite");
local lua_fn_args = table.concat(args, ", ");
local def_metadata = nomsu.tree_metadata[nomsu.compilestack[#nomsu.compilestack]];
local code_location = (def_metadata and ("%s:%s,%s"):format(def_metadata.filename, def_metadata.start, def_metadata.stop)
or "<dynamically generated>");
return {statements=([[
nomsu:define_compile_action(]]..repr(stubs)..[[, ]]..repr(code_location)..[[, function(]]..lua_fn_args..[[)
]]..body_code.."\\n"..[[
end);
]])};
end); end);
# Compile-time action to make actions # Compile-time action to make actions
immediately: immediately:
compile [action %actions %body] to: compile [action %actions %body] to:
lua> ".." lua> ".."
local tree = nomsu.compilestack[#nomsu.compilestack];
local lua = Lua(tree.source, "nomsu:define_action(");
local stubs = {}; local stubs = {};
for i, action in ipairs(\%actions.value) do for i, action in ipairs(\%actions.value) do
stubs[i] = nomsu:tree_to_named_stub(action); stubs[i] = nomsu:tree_to_named_stub(action);
end end
lua:append(repr(stubs), ", ", repr(tree.source:get_line()), ", function(");
local args = {}; local args = {};
for i,tok in ipairs(\%actions.value[1].value) do for i,tok in ipairs(\%actions.value[1].value) do
if tok.type == "Var" then args[#args+1] = nomsu:var_to_lua_identifier(tok.value); end if tok.type == "Var" then args[#args+1] = nomsu:var_to_lua_identifier(tok.value); end
end end
local arg_set = {}; for i, arg in ipairs(args) do
for i, arg in ipairs(args) do arg_set[arg] = true; end lua:append(arg);
local body_lua = nomsu:tree_to_lua(\%body); if i < #args then lua:append(", ") end
local body_code = body_lua.statements or ("return "..body_lua.expr..";");
local undeclared_locals = {};
for i, body_local in ipairs(body_lua.locals or {}) do
if not arg_set[body_local] then
table.insert(undeclared_locals, body_local);
end end
end local body_lua = nomsu:tree_to_lua(\%lua):as_statements();
if #undeclared_locals > 0 then body_lua:declare_locals(args);
body_code = "local "..table.concat(undeclared_locals, ", ")..";\\n"..body_code; lua:append("\n ", body_lua, "\nend);")
end return lua;
table.insert(args, 1, "__callsite");
local lua_fn_args = table.concat(args, ", ");
local def_metadata = nomsu.tree_metadata[nomsu.compilestack[#nomsu.compilestack]];
local code_location = (def_metadata and ("%s:%s,%s"):format(def_metadata.filename, def_metadata.start, def_metadata.stop)
or "<dynamically generated>");
return {statements=[[
nomsu:define_action(]]..repr(stubs)..[[, ]]..repr(code_location)..[[, function(]]..lua_fn_args..[[)
]]..body_code.."\\n"..[[
end);
]]};
# Macro to make nomsu macros: # Macro to make nomsu macros:
immediately: immediately:
compile [parse %shorthand as %longhand] to: compile [parse %shorthand as %longhand] to:
lua> ".." lua> ".."
local tree = nomsu.compilestack[#nomsu.compilestack];
local lua = Lua(tree.source, "nomsu:define_compile_action(");
local stubs = {}; local stubs = {};
for i, action in ipairs(\%shorthand.value) do for i, action in ipairs(\%shorthand.value) do
stubs[i] = nomsu:tree_to_named_stub(action); stubs[i] = nomsu:tree_to_named_stub(action);
end end
lua:append(repr(stubs), ", ", repr(tree.source:get_line()), ", function(");
local args = {}; local args = {};
for i,tok in ipairs(\%shorthand.value[1].value) do for i,tok in ipairs(\%shorthand.value[1].value) do
if tok.type == "Var" then args[#args+1] = nomsu:var_to_lua_identifier(tok.value); end if tok.type == "Var" then args[#args+1] = nomsu:var_to_lua_identifier(tok.value); end
end end
table.insert(args, 1, "__callsite"); for i, arg in ipairs(args) do
local lua_fn_args = table.concat(args, ", "); lua:append(arg);
if i < #args then lua:append(", ") end
end
local template; local template;
if \%longhand.type == "Block" then if \%longhand.type == "Block" then
local lines = {}; local lines = {};
@ -103,16 +84,13 @@ immediately:
local replacements = {}; local replacements = {};
for i, a in ipairs(args) do replacements[i] = a.."="..a; end for i, a in ipairs(args) do replacements[i] = a.."="..a; end
replacements = "{"..table.concat(replacements, ", ").."}"; replacements = "{"..table.concat(replacements, ", ").."}";
local def_metadata = nomsu.tree_metadata[nomsu.compilestack[#nomsu.compilestack]]; lua:append([[)
local code_location = (def_metadata and ("%s:%s,%s"):format(def_metadata.filename, def_metadata.start, def_metadata.stop) local template = nomsu_parse(]]..template..[[, ]]..repr(tree.source.filename)..[[);
or "<dynamically generated>");
return {statements=[[
nomsu:define_compile_action(]]..repr(stubs)..[[, ]]..repr(code_location)..[[, function(]]..lua_fn_args..[[)
local template = nomsu:parse(]]..template..[[, ]]..repr(def_metadata.filename)..[[);
local replacement = nomsu:tree_with_replaced_vars(template, ]]..replacements..[[); local replacement = nomsu:tree_with_replaced_vars(template, ]]..replacements..[[);
return nomsu:tree_to_lua(replacement); return nomsu:tree_to_lua(replacement, nomsu.compilestack[#nomsu.compilestack].source.filename);
end); end);
]]}; ]]);
return lua;
action [remove action %stub]: action [remove action %stub]:
lua> ".." lua> ".."

133
lua_obj.moon Normal file
View File

@ -0,0 +1,133 @@
{:insert, :remove, :concat} = table
immutable = require 'immutable'
local Lua, LuaValue, Location
Location = immutable {"text_name","text","start","stop"}, {
__new: (text_name, text, start, stop)-> text_name, text, start, stop or start
__tostring: "#{text_name}[#{start}:#{stop}]"
__lt: (other)=>
assert(@text == other.text, "Cannot compare sources from different texts")
return if @start == other.start
@stop < other.stop
else @start < other.start
__le: (other)=>
assert(@text == other.text, "Cannot compare sources from different texts")
return if @start == other.start
@stop <= other.stop
else @start <= other.start
get_text: => @text\sub(@start,@stop)
get_line_number: =>
-- TODO: do a binary search if this is actually slow, which I doubt
line_starts = LINE_STARTS[@text]
start_line = 1
while start_line < #line_starts and line_starts[start_line+1] <= @start
start_line += 1
stop_line = start_line
while stop_line < #line_starts and line_starts[stop_line+1] <= @stop
stop_line += 1
return start_line, stop_line
get_line: => "#{@text_name}:#{@get_line_number}"
get_line_range: =>
start_line, stop_line = @get_line_number
return if stop_line == start_line
"#{text_name}:#{start_line}"
else "#{text_name}:#{start_line}-#{stop_line}"
}
class Lua
is_statement: true
is_value: false
__new: (@source, ...)=>
@bits = {...}
@free_vars = {}
add_free_vars: (free_vars)=>
seen = {[v]:true for v in *@free_vars}
for var in *free_vars
unless seen[var]
@free_vars[#@free_vars+1] = var
seen[var] = true
as_statements: => self
declare_locals: (skip={})=>
if next(skip) == 1
skip = {[s]:true for s in *skip}
@prepend "local #{concat @free_vars, ", "};\n"
for var in *@free_vars do skip[var] = true
for bit in *@bits
if type(bit) == Lua
bit\declare_locals(skip)
__tostring: =>
buff = {}
for b in *@bits
if type(b) == 'string'
buff[#buff+1] = b
else
for sub in *b\render!
buff[#buff+1] = sub
return concat(buff, "")
__len: =>
len = 0
for b in *@bits
len += #b
return len
append: (...)=>
n = select("#",...)
bits = @bits
for i=1,n
bits[#bits+1] = select(i, ...)
prepend: (...)=>
n = select("#",...)
bits = @bits
for i=#bits+n,n+1,-1
bits[i] = bits[i-n]
for i=1,n
bits[i] = select(i, ...)
make_offset_table: (lua_chunkname)=>
-- Return a mapping from output (lua) character number to input (nomsu) character number
lua_str = tostring(self)
metadata = {
nomsu_filename:@source.text_name, nomsu_file:@source.text,
lua_filename:lua_chunkname, lua_file:lua_str
lua_to_nomsu: {}, nomsu_to_lua: {}
}
metadata, lua_offset = {}, 1
lua_offset = 1
walk = (lua)->
if type(lua) == 'string'
lua_offset += #lua
else
lua_start = lua_offset
for b in lua.bits
walk b
lua_stop = lua_offset
nomsu_src, lua_src = lua.souce, Location(lua_chunkname, lua_str, lua_start, lua_stop)
metadata.lua_to_nomsu[lua_src] = nomsu_src
metadata.nomsu_to_lua[nomsu_src] = lua_src
walk self
return lua_str, metadata
class LuaValue extends Lua
is_statement: false
is_value: true
__new: (@source, ...)=>
@bits = {...}
as_statements: =>
bits = {unpack @bits}
bits[#bits+1] = ";"
return Lua(@source, bits)
parenthesize: =>
@prepend "("
@append ")"
return {:Lua, :LuaValue}

765
nomsu.lua

File diff suppressed because it is too large Load Diff

View File

@ -13,15 +13,64 @@
lfs = require 'lfs' lfs = require 'lfs'
re = require 're' re = require 're'
lpeg = require 'lpeg' lpeg = require 'lpeg'
lpeg.setmaxstack 10000
{:P,:R,:V,:S,:Cg,:C,:Cp,:B,:Cmt} = lpeg
utils = require 'utils' utils = require 'utils'
new_uuid = require 'uuid' new_uuid = require 'uuid'
immutable = require 'immutable' immutable = require 'immutable'
{:repr, :stringify, :min, :max, :equivalent, :set, :is_list, :sum} = utils {:repr, :stringify, :min, :max, :equivalent, :set, :is_list, :sum} = utils
colors = setmetatable({}, {__index:->""}) colors = setmetatable({}, {__index:->""})
colored = setmetatable({}, {__index:(_,color)-> ((msg)-> colors[color]..(msg or '')..colors.reset)}) colored = setmetatable({}, {__index:(_,color)-> ((msg)-> colors[color]..tostring(msg or '')..colors.reset)})
{:insert, :remove, :concat} = table {:insert, :remove, :concat} = table
debug_getinfo = debug.getinfo debug_getinfo = debug.getinfo
-- TODO:
-- consider non-linear codegen, rather than doing thunks for things like comprehensions
-- improve indentation of generated lua code
-- better error reporting
-- type checking?
-- Add compiler options for optimization level (compile-fast vs. run-fast, etc.)
-- Do a pass on all actions to enforce parameters-are-nouns heuristic
-- Maybe do some sort of lazy definitions of actions that defer until they're used in code
-- Add a ((%x foo %y) where {x:"asdf", y:"fdsa"}) compile-time action for substitution
FILE_CACHE = setmetatable {}, {
__index: (filename)=>
file = io.open(filename)
return nil unless file
source = file\read("a")\sub(1,-2) -- Lua appends trailing newline for no apparent reason.
file\close!
self[filename] = source
return source
}
line_counter = re.compile([[
lines <- {| line (%nl line)* |}
line <- {} (!%nl .)*
]], nl:P("\r")^-1 * P("\n"))
-- Mapping from line number -> character offset
LINE_STARTS = setmetatable {}, {
__mode:"k"
__index: (k)=>
line_starts = line_counter\match(k)
self[k] = line_starts
return line_starts
}
-- Map from unique nomsu chunkname to:
-- lua_to_nomsu, nomsu_to_lua, lua_sources, nomsu_sources,
-- nomsu_filename, nomsu_file, lua_filename, lua_file
LUA_METADATA = {}
lua_line_to_nomsu_line = (lua_filename, lua_line_no)->
metadata = assert LUA_METADATA[lua_filename], "Failed to find nomsu metadata for: #{lua_filename}."
lua_offset = LINE_STARTS[metadata.lua_file][lua_line_no]
best = metadata.nomsu_sources[1]
for lua,nomsu in pairs metadata.lua_to_nomsu
if lua.start <= lua_offset and lua > best
best = lua
return best\get_line_number!
-- Use + operator for string coercive concatenation (note: "asdf" + 3 == "asdf3") -- Use + operator for string coercive concatenation (note: "asdf" + 3 == "asdf3")
-- Use [] for accessing string characters, or s[{3,4}] for s:sub(3,4) -- Use [] for accessing string characters, or s[{3,4}] for s:sub(3,4)
-- Note: This globally affects all strings in this instance of Lua! -- Note: This globally affects all strings in this instance of Lua!
@ -35,25 +84,13 @@ do
-- Can't use this because it breaks some LPEG stuff -- Can't use this because it breaks some LPEG stuff
--STRING_METATABLE.__mul = (other)=> string.rep(@, other) --STRING_METATABLE.__mul = (other)=> string.rep(@, other)
-- TODO:
-- consider non-linear codegen, rather than doing thunks for things like comprehensions
-- improve indentation of generated lua code
-- better error reporting
-- type checking?
-- Add compiler options for optimization level (compile-fast vs. run-fast, etc.)
-- Do a pass on all actions to enforce parameters-are-nouns heuristic
-- Maybe do some sort of lazy definitions of actions that defer until they're used in code
-- Add a ((%x foo %y) where {x:"asdf", y:"fdsa"}) compile-time action for substitution
lpeg.setmaxstack 10000 -- whoa
{:P,:R,:V,:S,:Cg,:C,:Cp,:B,:Cmt} = lpeg
Types = {} Types = {}
type_tostring = => type_tostring = =>
"#{@name}(#{concat [repr(x) for x in *@], ", "})" "#{@name}(#{concat [repr(x) for x in *@], ", "})"
type_with_value = (value)=> getmetatable(self)(@source, value)
Tuple = immutable(nil, {name:"Tuple"}) Tuple = immutable(nil, {name:"Tuple"})
for t in *{"File", "Nomsu", "Block", "List", "FunctionCall", "Text", "Dict", "Number", "Word", "Var", "Comment", "IndexChain"} for t in *{"File", "Nomsu", "Block", "List", "FunctionCall", "Text", "Dict", "Number", "Word", "Var", "Comment", "IndexChain"}
Types[t] = immutable({"id","value"}, {type:t, name:t, __tostring:type_tostring}) Types[t] = immutable({"value","source"}, {type:t, name:t, __tostring:type_tostring, with_value:type_with_value})
Types.DictEntry = immutable({"key","value"}, {name:"DictEntry"}) Types.DictEntry = immutable({"key","value"}, {name:"DictEntry"})
Types.is_node = (n)-> Types.is_node = (n)->
type(n) == 'userdata' and n.type type(n) == 'userdata' and n.type
@ -109,34 +146,27 @@ NOMSU_DEFS = with {}
if lpeg.userdata.source_code\sub(pos,pos)\match("[\r\n]") if lpeg.userdata.source_code\sub(pos,pos)\match("[\r\n]")
pos += #lpeg.userdata.source_code\match("[ \t\n\r]*", pos) pos += #lpeg.userdata.source_code\match("[ \t\n\r]*", pos)
line_no = 1 line_no = 1
while (lpeg.userdata.line_starts[line_no+1] or math.huge) < pos do line_no += 1 text_loc = Source(lpeg.userdata.filename, src, pos)
prev_line = if line_no > 1 line_no = text_loc\get_line_number!
lpeg.userdata.source_code\match("[^\r\n]*", lpeg.userdata.line_starts[line_no-1]) prev_line = src\sub(LINE_STARTS[src][line_no-1] or 1, LINE_STARTS[src][line_no]-1)
else "" err_line = src\sub(LINE_STARTS[src][line_no], (LINE_STARTS[src][line_no+1] or 0)-1)
err_line = lpeg.userdata.source_code\match("[^\r\n]*", lpeg.userdata.line_starts[line_no]) next_line = src\sub(LINE_STARTS[src][line_no+1] or -1, (LINE_STARTS[src][line_no+2] or 0)-1)
next_line = if line_no < #lpeg.userdata.line_starts pointer = ("-")\rep(pos-LINE_STARTS[line_no]) .. "^"
lpeg.userdata.source_code\match("[^\r\n]*", lpeg.userdata.line_starts[line_no+1])
else ""
pointer = ("-")\rep(pos-lpeg.userdata.line_starts[line_no]) .. "^"
err_msg = (err_msg or "Parse error").." in #{lpeg.userdata.filename} on line #{line_no}:\n" err_msg = (err_msg or "Parse error").." in #{lpeg.userdata.filename} on line #{line_no}:\n"
err_msg ..="\n#{prev_line}\n#{err_line}\n#{pointer}\n#{next_line}\n" err_msg ..="\n#{prev_line}\n#{err_line}\n#{pointer}\n#{next_line}\n"
error(err_msg) error(err_msg)
node_id = 0
setmetatable(NOMSU_DEFS, {__index:(key)=> setmetatable(NOMSU_DEFS, {__index:(key)=>
make_node = (start, value, stop)-> make_node = (start, value, stop)->
node_id = node_id + 1
if type(value) == 'table' then error("Not a tuple: #{repr value}")-- = Tuple(value) if type(value) == 'table' then error("Not a tuple: #{repr value}")-- = Tuple(value)
node = Types[key](node_id, value) loc = Source(lpeg.userdata.filename, lpeg.userdata.source_code, start, stop)
lpeg.userdata.tree_metadata[node] = { node = Types[key](value, loc)
:start,:stop,filename:lpeg.userdata.filename,source_code:lpeg.userdata.source_code
}
return node return node
self[key] = make_node self[key] = make_node
return make_node return make_node
}) })
NOMSU = do NOMSU_PATTERN = do
-- Just for cleanliness, I put the language spec in its own file using a slightly modified -- Just for cleanliness, I put the language spec in its own file using a slightly modified
-- version of the lpeg.re syntax. -- version of the lpeg.re syntax.
peg_tidier = re.compile [[ peg_tidier = re.compile [[
@ -149,7 +179,7 @@ NOMSU = do
ident <- [a-zA-Z_][a-zA-Z0-9_]* ident <- [a-zA-Z_][a-zA-Z0-9_]*
comment <- "--" [^%nl]* comment <- "--" [^%nl]*
]] ]]
nomsu_peg = peg_tidier\match(io.open("nomsu.peg")\read("a")) nomsu_peg = peg_tidier\match(FILE_CACHE["nomsu.peg"])
re.compile(nomsu_peg, NOMSU_DEFS) re.compile(nomsu_peg, NOMSU_DEFS)
class NomsuCompiler class NomsuCompiler
@ -169,9 +199,7 @@ class NomsuCompiler
@use_stack = {} @use_stack = {}
@compilestack = {} @compilestack = {}
@file_metadata = setmetatable({}, {__mode:"k"}) @file_metadata = setmetatable({}, {__mode:"k"})
@tree_metadata = setmetatable({}, {__mode:"k"})
@action_metadata = setmetatable({}, {__mode:"k"}) @action_metadata = setmetatable({}, {__mode:"k"})
@debug = false
@environment = { @environment = {
-- Discretionary/convenience stuff -- Discretionary/convenience stuff
@ -193,8 +221,6 @@ class NomsuCompiler
@initialize_core! @initialize_core!
define_action: (signature, source, fn)=> define_action: (signature, source, fn)=>
if @debug
print "#{colored.bright "DEFINING ACTION:"} #{colored.green repr(signature)}"
if type(fn) != 'function' if type(fn) != 'function'
error 'function', "Bad fn: #{repr fn}" error 'function', "Bad fn: #{repr fn}"
if type(signature) == 'string' if type(signature) == 'string'
@ -211,8 +237,6 @@ class NomsuCompiler
arg_orders = {} -- Map from stub -> index where each arg in the stub goes in the function call arg_orders = {} -- Map from stub -> index where each arg in the stub goes in the function call
for sig_i=1,#stubs for sig_i=1,#stubs
stub, args = stubs[sig_i], stub_args[sig_i] stub, args = stubs[sig_i], stub_args[sig_i]
if @debug
print "#{colored.bright "ALIAS:"} #{colored.underscore colored.magenta repr(stub)} #{colored.bright "WITH ARGS"} #{colored.dim repr(args)} ON: #{@environment.ACTIONS}"
@environment.ACTIONS[stub] = fn @environment.ACTIONS[stub] = fn
unless fn_info.isvararg unless fn_info.isvararg
arg_positions = [fn_arg_positions[a] for a in *args] arg_positions = [fn_arg_positions[a] for a in *args]
@ -255,22 +279,6 @@ class NomsuCompiler
indent: (code, levels=1)=> indent: (code, levels=1)=>
return code\gsub("\n","\n"..(" ")\rep(levels)) return code\gsub("\n","\n"..(" ")\rep(levels))
get_line_number: (tree)=>
metadata = @tree_metadata[tree]
unless metadata
return "<dynamically generated>"
unless @file_metadata[metadata.filename]
error "Failed to find file metatdata for file: #{metadata.filename}", 0
line_starts = @file_metadata[metadata.filename].line_starts
first_line = 1
while first_line < #line_starts and line_starts[first_line+1] <= metadata.start
first_line += 1
--last_line = first_line
--while last_line < #line_starts and line_starts[last_line+1] <= metadata.stop
-- last_line += 1
--return first_line == last_line and "#{metadata.filename}:#{first_line}" or "#{metadata.filename}:#{first_line}-#{last_line}"
return "#{metadata.filename}:#{first_line}"
get_source_code: (tree)=> get_source_code: (tree)=>
-- Return the (dedented) source code of a tree, or construct some if the tree was -- Return the (dedented) source code of a tree, or construct some if the tree was
-- dynamically generated. -- dynamically generated.
@ -279,56 +287,28 @@ class NomsuCompiler
return @tree_to_nomsu(tree) return @tree_to_nomsu(tree)
return @dedent metadata.source_code\sub(metadata.start, metadata.stop-1) return @dedent metadata.source_code\sub(metadata.start, metadata.stop-1)
line_counter = re.compile([[
lines <- {| line (%nl line)* |}
line <- {} (!%nl .)*
]], nl:NOMSU_DEFS.nl)
parse: (nomsu_code, filename)=> parse: (nomsu_code, filename)=>
assert type(filename) == "string", "Bad filename type: #{type filename}" assert type(filename) == "string", "Bad filename type: #{type filename}"
if @debug
print "#{colored.bright "PARSING:"}\n#{colored.yellow nomsu_code}"
unless @file_metadata[filename]
@file_metadata[filename] = {
source_code:nomsu_code, :filename, line_starts:line_counter\match(nomsu_code)
}
userdata = { userdata = {
source_code:nomsu_code, :filename, indent_stack: {""}, tree_metadata:@tree_metadata, source_code:nomsu_code, :filename, indent_stack: {""}, tree_metadata:@tree_metadata,
line_starts:@file_metadata[filename].line_starts,
} }
old_userdata, lpeg.userdata = lpeg.userdata, userdata old_userdata, lpeg.userdata = lpeg.userdata, userdata
tree = NOMSU\match(nomsu_code) tree = NOMSU_PATTERN\match(nomsu_code)
lpeg.userdata = old_userdata lpeg.userdata = old_userdata
assert tree, "In file #{colored.blue filename} failed to parse:\n#{colored.onyellow colored.black nomsu_code}" assert tree, "In file #{colored.blue filename} failed to parse:\n#{colored.onyellow colored.black nomsu_code}"
if @debug
print "PARSE TREE:"
@print_tree tree, " "
return tree return tree
run: (src, filename, max_operations=nil, output_file=nil)=> run: (nomsu_code, filename)=>
if src == "" then return nil, "" if nomsu_code == "" then return nil, ""
if max_operations tree = @parse(nomsu_code, filename)
timeout = -> assert tree, "Failed to parse: #{nomsu_code}"
debug.sethook!
error("Execution quota exceeded. Your code took too long.", 0)
debug.sethook timeout, "", max_operations
tree = @parse(src, filename)
assert tree, "Failed to parse: #{src}"
assert tree.type == "File", "Attempt to run non-file: #{tree.type}" assert tree.type == "File", "Attempt to run non-file: #{tree.type}"
lua = @tree_to_lua(tree)\as_statements!\with_locals_declared!
lua = @tree_to_lua(tree) lua\prepend "-- File: #{filename}\n"
lua_code = lua.statements or (lua.expr..";") return @run_lua(lua, filename..".lua")
if lua_code.locals and #lua_code.locals > 0
lua_code = "local "..concat(lua_code.locals, ", ")..";\n"..lua_code
lua_code = "-- File: #{filename}\n"..lua_code
ret = @run_lua(lua_code)
if max_operations
debug.sethook!
if output_file
output_file\write(lua_code)
return ret, lua_code
run_file: (filename)=> run_file: (filename)=>
file_attributes = assert(lfs.attributes(filename), "File not found: #{filename}") file_attributes = assert(lfs.attributes(filename), "File not found: #{filename}")
@ -341,23 +321,18 @@ class NomsuCompiler
return return
if filename\match(".*%.lua") if filename\match(".*%.lua")
file = io.open(filename) file = assert(FILE_CACHE[filename], "Could not find file: #{filename}")
contents = file\read("a") return @run_lua(file, filename)
file\close!
return assert(load(contents, nil, nil, @environment))!
if filename\match(".*%.nom") if filename\match(".*%.nom")
if not @skip_precompiled -- Look for precompiled version if not @skip_precompiled -- Look for precompiled version
file = io.open(filename\gsub("%.nom", ".lua"), "r") lua_filename = filename\gsub("%.nom$", ".lua")
file = FILE_CACHE[lua_filename]
if file if file
lua_code = file\read("a") return @run_lua(file, lua_filename)
file\close! file = file or FILE_CACHE[filename]
return @run_lua(lua_code)
file = file or io.open(filename)
if not file if not file
error("File does not exist: #{filename}", 0) error("File does not exist: #{filename}", 0)
nomsu_code = file\read('a') return @run(file, filename)
file\close!
return @run(nomsu_code, filename)
else else
error("Invalid filetype for #{filename}", 0) error("Invalid filetype for #{filename}", 0)
@ -373,30 +348,34 @@ class NomsuCompiler
loaded[filename] = @run_file(filename) or true loaded[filename] = @run_file(filename) or true
return loaded[filename] return loaded[filename]
run_lua: (lua_code)=> _chunk_counter = 0
run_lua_fn, err = load(lua_code, nil, nil, @environment) run_lua: (lua, filename=nil)=>
if @debug if filename == nil
print "#{colored.bright "RUNNING LUA:"}\n#{colored.blue colored.bright(lua_code)}" filename = if type(lua) == 'string'
_chunk_counter += 1
"<lua chunk ##{_chunk_counter}>"
else
lua.source.filename..".lua"
if type(lua) != 'string'
lua, metadata = make_offset_table(filename)
LUA_METADATA[lua] = metadata
run_lua_fn, err = load(lua, filename, "t", @environment)
if not run_lua_fn if not run_lua_fn
n = 1 n = 1
fn = -> fn = ->
n = n + 1 n = n + 1
("\n%-3d|")\format(n) ("\n%-3d|")\format(n)
code = "1 |"..lua_code\gsub("\n", fn) line_numbered_lua = "1 |"..lua\gsub("\n", fn)
error("Failed to compile generated code:\n#{colored.bright colored.blue colored.onblack code}\n\n#{err}", 0) error("Failed to compile generated code:\n#{colored.bright colored.blue colored.onblack line_numbered_lua}\n\n#{err}", 0)
return run_lua_fn! return run_lua_fn!
tree_to_value: (tree, filename)=> tree_to_value: (tree)=>
-- Special case for text literals -- Special case for text literals
if tree.type == 'Text' and #tree.value == 1 and type(tree.value[1]) == 'string' if tree.type == 'Text' and #tree.value == 1 and type(tree.value[1]) == 'string'
return tree.value[1] return tree.value[1]
code = "return #{@tree_to_lua(tree).expr};" lua = Lua(tree.source, "return ",@tree_to_lua(tree),";")
if @debug return @run_lua(lua, tree.source.filename)
print "#{colored.bright "RUNNING LUA TO GET VALUE:"}\n#{colored.blue colored.bright(code)}"
lua_thunk, err = load(code, nil, nil, @environment)
if not lua_thunk
error("Failed to compile generated code:\n#{colored.bright colored.blue colored.onblack code}\n\n#{colored.red err}", 0)
return lua_thunk!
tree_to_nomsu: (tree, indentation="", max_line=80, expr_type=nil)=> tree_to_nomsu: (tree, indentation="", max_line=80, expr_type=nil)=>
-- Convert a tree into nomsu code that satisfies the max line requirement or nil -- Convert a tree into nomsu code that satisfies the max line requirement or nil
@ -617,8 +596,7 @@ class NomsuCompiler
for line in *tree.value for line in *tree.value
nomsu = expression(line) nomsu = expression(line)
unless nomsu unless nomsu
src = @get_source_code line error "Failed to produce output for:\n#{colored.yellow line.source\get_text!}", 0
error "Failed to produce output for:\n#{colored.yellow src}", 0
insert lines, nomsu insert lines, nomsu
return concat lines, "\n" return concat lines, "\n"
@ -667,60 +645,53 @@ class NomsuCompiler
when "File" when "File"
if #tree.value == 1 if #tree.value == 1
return @tree_to_lua(tree.value[1]) return @tree_to_lua(tree.value[1])
file_lua = Lua(tree.source)
declared_locals = {} declared_locals = {}
lua_bits = {}
line_no = 1
for line in *tree.value for line in *tree.value
lua = @tree_to_lua line line_lua = @tree_to_lua line
if not lua if not line_lua
error("No lua produced by #{repr line}", 0) error("No lua produced by #{repr line}", 0)
if lua.locals lua = lua\as_statements!
new_locals = [l for l in *lua.locals when not declared_locals[l]] if i < #tree.value
if #new_locals > 0 file_lua\append "\n"
insert lua_bits, "local #{concat new_locals, ", "};"
for l in *new_locals do declared_locals[l] = true file_lua\append lua
if lua.statements then insert lua_bits, lua.statements file_lua\declare_locals!
elseif lua.expr then insert lua_bits, "#{lua.expr};" return file_lua
return statements:concat(lua_bits, "\n")
when "Comment" when "Comment"
return statements:"--"..tree.value\gsub("\n","\n--") return Lua(tree.source, "--"..tree.value\gsub("\n","\n--"))
when "Nomsu" when "Nomsu"
--return expr:"nomsu:parse(#{repr @get_source_code(tree.value)}, #{repr @get_line_number(tree.value)}).value[1]" --return Lua(tree.source, repr(tree.value))
return expr:repr(tree.value) return Lua(tree.source, "nomsu:parse(",tree.source\get_text!,", ",repr(tree.source.filename),")")
when "Block" when "Block"
lua_bits = {} block_lua = Lua(tree.source)
locals = {} for i,arg in ipairs tree.value
for arg in *tree.value
lua = @tree_to_lua arg lua = @tree_to_lua arg
if #tree.value == 1 and lua.expr and not lua.statements if i == 1 and #tree.value == 1 and lua.is_value
return {expr:lua.expr, locals:lua.locals} return lua
if lua.locals lua = lua\as_statements!
for l in *lua.locals do table.insert(locals, l) if i < #tree.value
if lua.statements then insert lua_bits, lua.statements block_lua\append "\n"
elseif lua.expr then insert lua_bits, "#{lua.expr};" block_lua\append lua
utils.deduplicate(locals) return block_lua
return statements:concat(lua_bits, "\n"), locals:(#locals > 0 and locals or nil)
when "FunctionCall" when "FunctionCall"
insert @compilestack, tree insert @compilestack, tree
stub = @tree_to_stub tree stub = @tree_to_stub tree
ok, fn = pcall(-> @environment.ACTIONS[stub]) fn = rawget(@environment.ACTIONS, stub)
if not ok then fn = nil
metadata = @action_metadata[fn] metadata = @action_metadata[fn]
if metadata and metadata.compile_time if metadata and metadata.compile_time
args = [arg for arg in *tree.value when arg.type != "Word"] args = [arg for arg in *tree.value when arg.type != "Word"]
table.insert args, 1, @get_line_number(tree) -- Force all compile-time actions to take a tree location
table.insert args, 1, tree.source
if metadata and metadata.arg_orders if metadata and metadata.arg_orders
new_args = [args[p] for p in *metadata.arg_orders[stub]] new_args = [args[p] for p in *metadata.arg_orders[stub]]
args = new_args args = new_args
if @debug
print "#{colored.bright "RUNNING MACRO"} #{colored.underscore colored.magenta(stub)} "
print "#{colored.bright "WITH ARGS:"} #{colored.dim concat([(repr a)\sub(1,100) for a in *args], ", ")}"
lua = fn(unpack(args)) lua = fn(unpack(args))
remove @compilestack remove @compilestack
return lua return lua
@ -728,136 +699,165 @@ class NomsuCompiler
-- This is a bit of a hack, but this code handles arbitrarily complex -- This is a bit of a hack, but this code handles arbitrarily complex
-- math expressions like 2*x + 3^2 without having to define a single -- math expressions like 2*x + 3^2 without having to define a single
-- action for every possibility. -- action for every possibility.
bits = {} lua = LuaValue(tree.source)
for tok in *tree.value for i,tok in ipairs tree.value
if tok.type == "Word" if tok.type == "Word"
insert bits, tok.value lua\append tok.value
else else
lua = @tree_to_lua(tok) tok_lua = @tree_to_lua(tok)
unless lua.expr unless tok_lua.is_value
src = @get_source_code(tok) src = tok.source\get_text!
error("non-expression value inside math expression: #{colored.yellow src}") error("non-expression value inside math expression: #{colored.yellow src}")
insert bits, lua.expr lua\append tok_lua
if i < #tree.value
lua\append " "
remove @compilestack remove @compilestack
return expr:"(#{concat bits, " "})" lua\parenthesize!
return lua
args = {repr(@get_line_number(tree))} args = {}
for tok in *tree.value for i, tok in *tree.value
if tok.type == "Word" then continue if tok.type == "Word" then continue
lua = @tree_to_lua(tok) arg_lua = @tree_to_lua(tok)
unless lua.expr unless arg_lua.is_value
line = @get_line_number(tok) line, src = tok.source\get_line!, tok.source\get_text!
src = @get_source_code(tok) error "#{line}: Cannot use:\n#{colored.yellow src}\nas an argument to #{stub}, since it's not an expression, it produces: #{repr arg_lua}", 0
error "#{line}: Cannot use:\n#{colored.yellow src}\nas an argument to #{stub}, since it's not an expression, it produces: #{repr lua}", 0 insert args, lua
insert args, lua.expr
if metadata and metadata.arg_orders if metadata and metadata.arg_orders
new_args = [args[p] for p in *metadata.arg_orders[stub]] args = [args[p] for p in *metadata.arg_orders[stub]]
args = new_args
lua = LuaValue(tree.source, "ACTIONS[#{repr stub}](")
for i, arg in ipairs args
lua\append arg
if i < #args then lua\append ", "
lua\append ")"
remove @compilestack remove @compilestack
return expr:@@comma_separated_items("ACTIONS[#{repr stub}](", args, ")") return lua
when "Text" when "Text"
concat_parts = {} lua = LuaValue(tree.source)
string_buffer = "" string_buffer = ""
for bit in *tree.value for bit in *tree.value
if type(bit) == "string" if type(bit) == "string"
string_buffer ..= bit string_buffer ..= bit
continue continue
if string_buffer ~= "" if string_buffer ~= ""
insert concat_parts, repr(string_buffer) if #lua.bits > 0 then lua\append ".."
lua\append repr(string_buffer)
string_buffer = "" string_buffer = ""
lua = @tree_to_lua bit bit_lua = @tree_to_lua bit
if @debug unless bit_lua.is_value
print(colored.bright "INTERP:") line, src = bit.source\get_line!, bit.source\get_text!
@print_tree bit
print "#{colored.bright "EXPR:"} #{lua.expr}, #{colored.bright "STATEMENT:"} #{lua.statements}"
unless lua.expr
line = @get_line_number(bit)
src = @get_source_code(bit)
error "#{line}: Cannot use #{colored.yellow bit} as a string interpolation value, since it's not an expression.", 0 error "#{line}: Cannot use #{colored.yellow bit} as a string interpolation value, since it's not an expression.", 0
insert concat_parts, "stringify(#{lua.expr})" if #lua.bits > 0 then lua\append ".."
if bit.type != "Text"
bit_lua = LuaValue(bit.source, "stringify(",bit_lua,")")
lua\append bit_lua
if string_buffer ~= "" if string_buffer ~= "" or #lua.bits == 0
insert concat_parts, repr(string_buffer) if #lua.bits > 0 then lua\append ".."
lua\append repr(string_buffer)
if #concat_parts == 0 if #lua.bits > 1
return expr:"''" lua\parenthesize!
elseif #concat_parts == 1 return lua
return expr:concat_parts[1]
else return expr:"(#{concat(concat_parts, "..")})"
when "IndexChain" when "IndexChain"
items = {} lua = @tree_to_lua tree.value[1]
for i, item in ipairs(tree.value) unless lua.is_value
lua = @tree_to_lua item line, src = tree.value[1].source\get_line!, tree.value[1].source\get_text!
unless lua.expr
line = @get_line_number(item)
src = @get_source_code(item)
error "#{line}: Cannot index #{colored.yellow src}, since it's not an expression.", 0 error "#{line}: Cannot index #{colored.yellow src}, since it's not an expression.", 0
if i == 1 last_char = tostring(lua)\sub(1,1)
if lua.expr\sub(-1,-1) == "}" or lua.expr\sub(-1,-1) == '"' if last_char == "}" or last_char == '"'
insert items, "(#{lua.expr})" lua\parenthesize!
else
insert items, lua.expr for i=2,#tree.value
else key = tree.value[i]
if item.type == 'Text' and #item.value == 1 and type(item.value[1]) == 'string' and item.value[1]\match("^[a-zA-Z_][a-zA-Z0-9_]$") if key.type == 'Text' and #key.value == 1 and type(key.value[1]) == 'string' and key.value[1]\match("^[a-zA-Z_][a-zA-Z0-9_]$")
insert items, ".#{item.value[1]}" lua\append ".#{key.value[1]}"
else continue
key_lua = @tree_to_lua key
unless key_lua.is_value
line, src = key.source\get_line!, key.source\get_text!
error "#{line}: Cannot use #{colored.yellow src} as an index, since it's not an expression.", 0
-- NOTE: this *must* use a space after the [ to avoid freaking out -- NOTE: this *must* use a space after the [ to avoid freaking out
-- Lua's parser if the inner expression is a long string. Lua -- Lua's parser if the inner expression is a long string. Lua
-- parses x[[[y]]] as x("[y]"), not as x["y"] -- parses x[[[y]]] as x("[y]"), not as x["y"]
if lua.expr\sub(1,1) == '[' if tostring(key_lua)\sub(1,1) == '['
insert items, "[ #{lua.expr}]" lua\append "[ ",key_lua,"]"
else else
insert items, "[#{lua.expr}]" lua\append "[",key_lua,"]"
return expr:concat(items,"") return lua
when "List" when "List"
items = {} lua = LuaValue tree.source, "{"
for item in *tree.value line_length = 0
lua = @tree_to_lua item for i, item in ipairs tree.value
unless lua.expr item_lua = @tree_to_lua item
line = @get_line_number(item) unless item_lua.is_value
src = @get_source_code(item) line, src = item.source\get_line!, item.source\get_text!
error "#{line}: Cannot use #{colored.yellow src} as a list item, since it's not an expression.", 0 error "#{line}: Cannot use #{colored.yellow src} as a list item, since it's not an expression.", 0
insert items, lua.expr lua\append item_lua
return expr:@@comma_separated_items("{", items, "}") newlines, last_line = tostring(item_lua)\match("^(.-)([^\n]*)$")
if #newlines > 0
line_length = #last_line
else
line_length += #last_line
if i < #tree.value
if line_length >= 80
lua\append ",\n"
line_length = 0
else
lua\append ", "
line_length += 2
lua\append "}"
return lua
when "Dict" when "Dict"
items = {} lua = LuaValue tree.source, "{"
for entry in *tree.value line_length = 0
key_lua = if entry.key.type == "Word" for i, entry in ipairs tree.value
{expr:repr(entry.key.value)} key_lua = @tree_to_lua entry.key
else unless key_lua.is_value
@tree_to_lua entry.key line, src = key.source\get_line!, key.source\get_text!
unless key_lua.expr
line = @get_line_number(entry.key)
src = @get_source_code(entry.key)
error "#{line}: Cannot use #{colored.yellow src} as a dict key, since it's not an expression.", 0 error "#{line}: Cannot use #{colored.yellow src} as a dict key, since it's not an expression.", 0
value_lua = @tree_to_lua entry.value value_lua = @tree_to_lua entry.value
unless value_lua.expr unless value_lua.is_value
line = @get_line_number(entry.value) line, src = value.source\get_line!, value.source\get_text!
src = @get_source_code(entry.value)
error "#{line}: Cannot use #{colored.yellow src} as a dict value, since it's not an expression.", 0 error "#{line}: Cannot use #{colored.yellow src} as a dict value, since it's not an expression.", 0
key_str = key_lua.expr\match([=[["']([a-zA-Z_][a-zA-Z0-9_]*)['"]]=]) key_str = tostring(key_lua)\match([=[["']([a-zA-Z_][a-zA-Z0-9_]*)['"]]=])
if key_str if key_str
insert items, "#{key_str}=#{value_lua.expr}" lua\append key_str,"=",value_lua
elseif key_lua.expr\sub(1,1) == "[" elseif tostring(key_lua)\sub(1,1) == "["
-- NOTE: this *must* use a space after the [ to avoid freaking out -- NOTE: this *must* use a space after the [ to avoid freaking out
-- Lua's parser if the inner expression is a long string. Lua -- Lua's parser if the inner expression is a long string. Lua
-- parses x[[[y]]] as x("[y]"), not as x["y"] -- parses x[[[y]]] as x("[y]"), not as x["y"]
insert items, "[ #{key_lua.expr}]=#{value_lua.expr}" lua\append "[ ",key_lua,"]=",value_lua
else else
insert items, "[#{key_lua.expr}]=#{value_lua.expr}" lua\append "[",key_lua,"]=",value_lua
return expr:@@comma_separated_items("{", items, "}")
-- TODO: maybe make this more accurate? It's only a heuristic, so eh...
newlines, last_line = ("[#{key_lua}=#{value_lua}")\match("^(.-)([^\n]*)$")
if #newlines > 0
line_length = #last_line
else
line_length += #last_line
if i < #tree.value
if line_length >= 80
lua\append ",\n"
line_length = 0
else
lua\append ", "
line_length += 2
lua\append "}"
return lua
when "Number" when "Number"
return expr:repr(tree.value) return LuaValue(tree.source, tostring(tree.value))
when "Var" when "Var"
return expr:@var_to_lua_identifier(tree.value) return LuaValue(tree.source, @var_to_lua_identifier(tree.value))
else else
error("Unknown/unimplemented thingy: #{tree.type}", 0) error("Unknown/unimplemented thingy: #{tree.type}", 0)
@ -928,8 +928,7 @@ class NomsuCompiler
else else
new_values[i] = old_value new_values[i] = old_value
if is_changed if is_changed
new_tree = getmetatable(tree)(tree.id, Tuple(table.unpack(new_values))) return tree\with_value Tuple(table.unpack(new_values))
return new_tree
when "Dict" when "Dict"
new_values, is_changed = {}, false new_values, is_changed = {}, false
@ -942,8 +941,7 @@ class NomsuCompiler
else else
new_values[i] = e new_values[i] = e
if is_changed if is_changed
new_tree = getmetatable(tree)(tree.id, Tuple(table.unpack(new_values))) return tree\with_value Tuple(table.unpack(new_values))
return new_tree
when nil -- Raw table, probably from one of the .value of a multi-value tree (e.g. List) when nil -- Raw table, probably from one of the .value of a multi-value tree (e.g. List)
error("Invalid tree: #{repr tree}") error("Invalid tree: #{repr tree}")
@ -993,8 +991,7 @@ class NomsuCompiler
args = var_pattern\match(alias) args = var_pattern\match(alias)
unless args unless args
error("Failed to match arg pattern on alias: #{repr alias}", 0) error("Failed to match arg pattern on alias: #{repr alias}", 0)
table.insert(args,1,'__callsite') for j=1,#args do args[j] = @var_to_lua_identifier(args[j])
for j=2,#args do args[j] = @var_to_lua_identifier(args[j])
stub_args[i] = args stub_args[i] = args
return stub_args return stub_args
@ -1010,54 +1007,60 @@ class NomsuCompiler
-- Sets up some core functionality -- Sets up some core functionality
get_line_no = -> "nomsu.moon:#{debug_getinfo(2).currentline}" get_line_no = -> "nomsu.moon:#{debug_getinfo(2).currentline}"
nomsu = self nomsu = self
nomsu_string_as_lua = (code)-> @define_compile_action "immediately %block", get_line_no!, (_block)->
concat_parts = {} lua = nomsu\tree_to_lua(_block)\as_statements!
for bit in *code.value lua\declare_locals!
nomsu\run_lua(lua)
return Lua _block.source, "if IMMEDIATE then\n", lua, "\nend"
@define_compile_action "lua> %code", get_line_no!, (_code)->
if _code.type != "Text"
return LuaValue(_code.source, "nomsu:run_lua(",nomsu\tree_to_lua(_code),")")
lua = Lua _code.source
for bit in *_code.value
if type(bit) == "string" if type(bit) == "string"
insert concat_parts, bit lua\append bit
else else
lua = nomsu\tree_to_lua bit bit_lua = nomsu\tree_to_lua bit
unless lua.expr unless lua.is_value
line = @get_line_number(bit) line, src = bit.source\get_line!, bit.source\get_text!
src = @get_source_code(bit)
error "#{line}: Cannot use #{colored.yellow src} as a string interpolation value, since it's not an expression.", 0 error "#{line}: Cannot use #{colored.yellow src} as a string interpolation value, since it's not an expression.", 0
insert concat_parts, lua.expr lua\append bit_lua
return concat(concat_parts) return lua
@define_compile_action "immediately %block", get_line_no!, (__callsite,_block)-> @define_compile_action "=lua %code", get_line_no!, (_code)->
lua = nomsu\tree_to_lua(_block) if _code.type != "Text"
lua_code = lua.statements or (lua.expr..";") return LuaValue(_code.source, "nomsu:run_lua(",nomsu\tree_to_lua(_code),")")
if lua.locals and #lua.locals > 0
lua_code = "local #{concat lua.locals, ", "};\n#{lua_code}"
nomsu\run_lua(lua_code)
return statements:"if IMMEDIATE then\n#{lua_code}\nend", locals:lua.locals
@define_compile_action "lua> %code", get_line_no!, (__callsite,_code)-> lua = LuaValue(_code.source)
if _code.type == "Text" for bit in *_code.value
lua = nomsu_string_as_lua(_code) if type(bit) == "string"
return statements:lua lua\append bit
else else
return statements:"nomsu:run_lua(#{nomsu\tree_to_lua(__callsite,_code).expr});" bit_lua = nomsu\tree_to_lua bit
unless lua.is_value
line, src = bit.source\get_line!, bit.source\get_text!
error "#{line}: Cannot use #{colored.yellow src} as a string interpolation value, since it's not an expression.", 0
lua\append bit_lua
return lua
@define_compile_action "=lua %code", get_line_no!, (__callsite,_code)-> @define_compile_action "!! code location !!", get_line_no!, ->
lua = nomsu_string_as_lua(_code)
return expr:lua
@define_compile_action "!! code location !!", get_line_no!, (__callsite)->
tree = nomsu.compilestack[#nomsu.compilestack-1] tree = nomsu.compilestack[#nomsu.compilestack-1]
metadata = @tree_metadata[tree] metadata = @tree_metadata[tree]
if metadata if metadata
return expr: repr("#{metadata.filename}:#{metadata.start},#{metadata.stop}") return LuaValue(tree.source, {repr("#{metadata.filename}:#{metadata.start},#{metadata.stop}")})
else else
return expr: repr("<dynamically generated>") return LuaValue(tree.source, {repr("<dynamically generated>")})
@define_action "run file %filename", get_line_no!, (__callsite,_filename)-> @define_action "run file %filename", get_line_no!, (_filename)->
return nomsu\run_file(_filename) return nomsu\run_file(_filename)
@define_compile_action "use %filename", get_line_no!, (__callsite,_filename)-> @define_compile_action "use %filename", get_line_no!, (_filename)->
tree = nomsu.compilestack[#nomsu.compilestack-1]
filename = nomsu\tree_to_value(_filename) filename = nomsu\tree_to_value(_filename)
nomsu\use_file(filename) nomsu\use_file(filename)
return expr:"nomsu:use_file(#{repr filename})" return LuaValue(tree.source, {"nomsu:use_file(#{repr filename})"})
-- Only run this code if this file was run directly with command line arguments, and not require()'d: -- Only run this code if this file was run directly with command line arguments, and not require()'d:
if arg and debug_getinfo(2).func != require if arg and debug_getinfo(2).func != require
@ -1080,18 +1083,10 @@ if arg and debug_getinfo(2).func != require
ok, to_lua = pcall -> require('moonscript.base').to_lua ok, to_lua = pcall -> require('moonscript.base').to_lua
if not ok then to_lua = nil if not ok then to_lua = nil
files = setmetatable {}, {
__index: (filename)=>
file = io.open(filename)
source = file\read("a")
file\close!
self[filename] = source
return source
}
moonscript_line_tables = setmetatable {}, { moonscript_line_tables = setmetatable {}, {
__index: (filename)=> __index: (filename)=>
return nil unless to_lua return nil unless to_lua
_, line_table = to_lua(files[filename]) _, line_table = to_lua(FILE_CACHE[filename])
self[filename] = line_table self[filename] = line_table
return line_table return line_table
} }
@ -1099,28 +1094,20 @@ if arg and debug_getinfo(2).func != require
debug.getinfo = (...)-> debug.getinfo = (...)->
info = debug_getinfo(...) info = debug_getinfo(...)
if not info or not info.func then return info if not info or not info.func then return info
if info.source and NOMSU_LINE_TABLES[info.source]
if metadata = nomsu.action_metadata[info.func] if metadata = nomsu.action_metadata[info.func]
info.name = metadata.aliases[1] info.name = metadata.aliases[1]
filename, start, stop = metadata.source\match("([^:]*):([0-9]*),([0-9]*)") info.short_src = NOMSU_SOURCE_FILE[info.source]
if filename lua_line_to_nomsu_line(info.source, info)
file = files[filename] info.short_src = metadata.source.text_name
line_no = 1 info.source = metadata.source.text
for _ in file\sub(1,tonumber(start))\gmatch("\n") do line_no += 1 info.linedefined = metadata.source\get_line_number!
info.short_src, info.linedefined = filename, line_no info.currentline = LUA_LINE_TO_NOMSU_LINE[metadata.source.filename][info.currentline]
info.currentline = line_no
if type(select(1, ...)) == 'number'
varname, callsite = debug.getlocal(select(1,...)-1, 1)
if varname == "__callsite"
info.short_src, info.currentline = callsite\match("^(.*):(%d+)$")
info.currentline = tonumber(info.currentline)
info.source = file
else
info.source = "@"..metadata.source
name = colored.bright(colored.yellow(metadata.aliases[1])) name = colored.bright(colored.yellow(metadata.aliases[1]))
else else
if info.short_src and info.short_src\match("^.*%.moon$") if info.short_src and info.short_src\match("^.*%.moon$")
line_table = moonscript_line_tables[info.short_src] line_table = moonscript_line_tables[info.short_src]
file = files[info.short_src] file = FILE_CACHE[info.short_src]
info.source = file or info.source info.source = file or info.source
return info return info
@ -1186,7 +1173,7 @@ if arg and debug_getinfo(2).func != require
ok, to_lua = pcall -> require('moonscript.base').to_lua ok, to_lua = pcall -> require('moonscript.base').to_lua
if not ok then to_lua = -> nil if not ok then to_lua = -> nil
nomsu_file = io.open("nomsu.moon") nomsu_file = FILE_CACHE["nomsu.moon"]
nomsu_source = nomsu_file\read("a") nomsu_source = nomsu_file\read("a")
_, line_table = to_lua(nomsu_source) _, line_table = to_lua(nomsu_source)
nomsu_file\close! nomsu_file\close!
@ -1204,7 +1191,7 @@ if arg and debug_getinfo(2).func != require
if metadata = nomsu.action_metadata[calling_fn.func] if metadata = nomsu.action_metadata[calling_fn.func]
filename, start, stop = metadata.source\match("([^:]*):([0-9]*),([0-9]*)") filename, start, stop = metadata.source\match("([^:]*):([0-9]*),([0-9]*)")
if filename if filename
file = io.open(filename)\read("a") file = FILE_CACHE[filename]
line_no = 1 line_no = 1
for _ in file\sub(1,tonumber(start))\gmatch("\n") do line_no += 1 for _ in file\sub(1,tonumber(start))\gmatch("\n") do line_no += 1
offending_statement = file\sub(tonumber(start),tonumber(stop)) offending_statement = file\sub(tonumber(start),tonumber(stop))

View File

@ -100,10 +100,12 @@ indented_dict (Dict):
|} -> Tuple) |} -> Tuple)
(dedent / (("" -> "Error while parsing dict") => error)) (dedent / (("" -> "Error while parsing dict") => error))
dict_line: dict_line:
(((inline_expression / word) %ws* ":" %ws* (functioncall / expression)) -> DictEntry !comma) ((dict_key %ws* ":" %ws* (functioncall / expression)) -> DictEntry !comma)
/ (inline_dict_item (comma dict_line?)?) / (inline_dict_item (comma dict_line?)?)
inline_dict_item: inline_dict_item:
((inline_expression / word) %ws* ":" %ws* (inline_functioncall / inline_expression)) -> DictEntry (dict_key %ws* ":" %ws* (inline_functioncall / inline_expression)) -> DictEntry
dict_key:
(({} ({|{%operator / (!number plain_word)}|} -> Tuple) {}) -> Text) / inline_expression
block_comment(Comment): "#.." { [^%nl]* (%nl+ %indent [^%nl]* (%nl+ %nodent [^%nl]*)* %dedent)? } block_comment(Comment): "#.." { [^%nl]* (%nl+ %indent [^%nl]* (%nl+ %nodent [^%nl]*)* %dedent)? }
line_comment(Comment): "#" { [^%nl]* } line_comment(Comment): "#" { [^%nl]* }