2017-09-21 00:10:26 -07:00
|
|
|
#..
|
2018-01-11 02:07:37 -08:00
|
|
|
This File contains actions for making actions and compile-time actions and some helper
|
|
|
|
functions to make that easier.
|
2017-09-21 00:10:26 -07:00
|
|
|
|
2018-01-11 01:19:03 -08:00
|
|
|
# Helper function
|
2018-01-19 17:29:44 -08:00
|
|
|
immediately
|
2017-10-19 17:00:10 -07:00
|
|
|
lua> ".."
|
2018-01-10 20:45:03 -08:00
|
|
|
nomsu.parse_spec = function(nomsu, spec)
|
2018-01-18 01:49:13 -08:00
|
|
|
if spec.type == 'List' then
|
|
|
|
local names = {};
|
|
|
|
for i, alias in ipairs(spec.value) do
|
|
|
|
if alias.type == "FunctionCall" then
|
|
|
|
names[i] = alias.src;
|
|
|
|
elseif alias.type == "Text" then
|
|
|
|
names[i] = nomsu:tree_to_value(alias);
|
|
|
|
end
|
|
|
|
end
|
|
|
|
local junk, arg_names, junk = nomsu:get_stub(names[1]);
|
|
|
|
local args = {};
|
|
|
|
for i, a in ipairs(arg_names) do args[i] = nomsu:var_to_lua_identifier(a); end
|
|
|
|
return names, args;
|
|
|
|
else
|
|
|
|
local alias = nomsu:tree_to_value(spec);
|
|
|
|
local junk, arg_names, junk = nomsu:get_stub(alias);
|
|
|
|
local args = {};
|
|
|
|
for i, a in ipairs(arg_names) do args[i] = nomsu:var_to_lua_identifier(a); end
|
|
|
|
return {alias}, args;
|
2018-01-10 20:45:03 -08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-01-11 02:07:37 -08:00
|
|
|
# Compile-time action to make compile-time actions:
|
2018-01-18 01:49:13 -08:00
|
|
|
# TODO: reduce code duplication here
|
2018-01-19 17:29:44 -08:00
|
|
|
immediately
|
2018-01-10 20:45:03 -08:00
|
|
|
lua> ".."
|
2018-01-09 14:59:06 -08:00
|
|
|
do
|
2018-01-24 01:38:05 -08:00
|
|
|
local function compile_to(name_tree, body_tree, kind)
|
|
|
|
local names, args = nomsu:parse_spec(name_tree);
|
|
|
|
local declared_locals = {};
|
|
|
|
for i, arg in ipairs(args) do declared_locals[arg] = true; end
|
|
|
|
names, args = repr(names), table.concat(args, ", ");
|
|
|
|
local body_lua = nomsu:tree_to_lua(body_tree);
|
|
|
|
if body_lua.expr and not body_lua.locals then
|
|
|
|
return [[
|
|
|
|
nomsu:define_compile_action(]]..names..[[, ]]..repr(name_tree:get_line_no())..[[, function(]]..args..[[)
|
|
|
|
return {]]..kind..[[=]]..body_lua.expr..[[};
|
|
|
|
end, ]]..repr(nomsu:source_code())..[[);
|
|
|
|
]];
|
2018-01-23 19:28:53 -08:00
|
|
|
end
|
2018-01-24 01:38:05 -08:00
|
|
|
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 declared_locals[body_local] then
|
|
|
|
table.insert(undeclared_locals, body_local);
|
|
|
|
end
|
|
|
|
end
|
|
|
|
if #undeclared_locals > 0 then
|
|
|
|
body_code = "local "..table.concat(undeclared_locals, ", ")..";\\n"..body_code;
|
|
|
|
end
|
|
|
|
return [[
|
2018-01-09 14:59:06 -08:00
|
|
|
do
|
2018-01-24 01:38:05 -08:00
|
|
|
local function compile_action(]]..args..[[)
|
|
|
|
]]..body_code.."\\n"..[[
|
|
|
|
end
|
|
|
|
nomsu:define_compile_action(]]..names..[[, ]]..repr(name_tree:get_line_no())..[[, function(]]..args..[[)
|
|
|
|
return {]]..kind..[[=compile_action(]]..args..[[)};
|
|
|
|
end, ]]..repr(nomsu:source_code())..[[);
|
|
|
|
end]];
|
2018-01-09 14:59:06 -08:00
|
|
|
end
|
2018-01-24 01:38:05 -08:00
|
|
|
local src = \(__src__ 1);
|
|
|
|
nomsu:define_compile_action("compile %names to %body", \(__line_no__), function(\%names, \%body)
|
|
|
|
return {statements=compile_to(\%names, \%body, "expr")};
|
|
|
|
end, src);
|
|
|
|
nomsu:define_compile_action("compile %names to code %body", \(__line_no__), function(\%names, \%body)
|
|
|
|
return {statements=compile_to(\%names, \%body, "statements")};
|
|
|
|
end, src);
|
|
|
|
end
|
2018-01-08 18:53:57 -08:00
|
|
|
|
2018-01-11 02:07:37 -08:00
|
|
|
# Compile-time action to make actions
|
2018-01-19 17:29:44 -08:00
|
|
|
immediately
|
|
|
|
compile [action %names %body] to code
|
2018-01-08 18:53:57 -08:00
|
|
|
lua> ".."
|
2018-01-11 02:07:37 -08:00
|
|
|
local names, args = nomsu:parse_spec(\%names);
|
2018-01-23 19:28:53 -08:00
|
|
|
local declared_locals = {};
|
|
|
|
for i, arg in ipairs(args) do declared_locals[arg] = true; end
|
2018-01-18 01:49:13 -08:00
|
|
|
names, args = repr(names), table.concat(args, ", ");
|
2018-01-08 18:53:57 -08:00
|
|
|
local body_lua = nomsu:tree_to_lua(\%body);
|
2018-01-23 19:22:20 -08:00
|
|
|
local body_code = body_lua.statements or ("return "..body_lua.expr..";");
|
2018-01-23 19:28:53 -08:00
|
|
|
local undeclared_locals = {};
|
|
|
|
for i, body_local in ipairs(body_lua.locals or {}) do
|
|
|
|
if not declared_locals[body_local] then
|
|
|
|
table.insert(undeclared_locals, body_local);
|
|
|
|
end
|
|
|
|
end
|
|
|
|
if #undeclared_locals > 0 then
|
|
|
|
body_code = "local "..table.concat(undeclared_locals, ", ")..";\\n"..body_code;
|
2018-01-23 19:22:20 -08:00
|
|
|
end
|
2018-01-09 14:59:06 -08:00
|
|
|
local src = nomsu:dedent(nomsu:source_code(0));
|
|
|
|
local def_lua = ([[
|
2018-01-11 01:57:52 -08:00
|
|
|
nomsu:define_action(%s, \(__line_no__), function(%s)
|
2018-01-08 18:53:57 -08:00
|
|
|
%s
|
2018-01-23 19:22:20 -08:00
|
|
|
end, %s);]]):format(names, args, body_code, repr(src));
|
2018-01-09 14:59:06 -08:00
|
|
|
return def_lua;
|
2017-09-25 17:02:00 -07:00
|
|
|
|
2018-01-11 01:19:03 -08:00
|
|
|
# Macro to make nomsu macros:
|
2018-01-19 17:29:44 -08:00
|
|
|
immediately
|
2018-01-08 18:53:57 -08:00
|
|
|
lua> ".."
|
2018-01-12 16:33:11 -08:00
|
|
|
nomsu:define_compile_action("parse %shorthand as %longhand", \(__line_no__), (function(\%shorthand, \%longhand)
|
2018-01-11 02:07:37 -08:00
|
|
|
local names, args = nomsu:parse_spec(\%shorthand);
|
2018-01-18 01:49:13 -08:00
|
|
|
names, args = repr(names), table.concat(args, ", ");
|
2018-01-19 17:29:44 -08:00
|
|
|
local template;
|
|
|
|
if \%longhand.type == "Block" then
|
|
|
|
template = {};
|
|
|
|
for i, line in ipairs(\%longhand.value) do
|
|
|
|
template[i] = nomsu:dedent(line.src);
|
|
|
|
end
|
|
|
|
template = repr(table.concat(template, "\\n"));
|
|
|
|
else
|
2018-01-19 18:13:02 -08:00
|
|
|
template = repr(nomsu:dedent(\%longhand.src));
|
2018-01-08 18:53:57 -08:00
|
|
|
end
|
2018-01-18 01:49:13 -08:00
|
|
|
local junk, arg_names, junk = nomsu:get_stub(\%shorthand.value[1]);
|
2018-01-10 20:45:03 -08:00
|
|
|
local replacements = {};
|
2018-01-12 19:27:59 -08:00
|
|
|
for i, a in ipairs(arg_names) do replacements[i] = "["..repr(a).."]="..nomsu:var_to_lua_identifier(a); end
|
2018-01-10 20:45:03 -08:00
|
|
|
replacements = "{"..table.concat(replacements, ", ").."}";
|
|
|
|
local lua_code = ([[
|
2018-01-11 02:07:37 -08:00
|
|
|
nomsu:define_compile_action(%s, %s, (function(%s)
|
2018-01-08 18:53:57 -08:00
|
|
|
local template = nomsu:parse(%s, %s);
|
2018-01-12 16:45:36 -08:00
|
|
|
local replacement = nomsu:tree_with_replaced_vars(template, %s);
|
2018-01-08 18:53:57 -08:00
|
|
|
return nomsu:tree_to_lua(replacement);
|
2018-01-12 16:33:11 -08:00
|
|
|
end), %s)]]):format(names, repr(\%shorthand:get_line_no()), args, template,
|
|
|
|
repr(\%shorthand:get_line_no()), replacements, repr(nomsu:source_code(0)));
|
2018-01-10 20:45:03 -08:00
|
|
|
return {statements=lua_code};
|
2018-01-08 18:53:57 -08:00
|
|
|
end), \(__src__ 1));
|
2017-12-11 17:53:23 -08:00
|
|
|
|
2018-01-19 17:29:44 -08:00
|
|
|
action [remove action %stub]
|
2017-11-01 19:59:44 -07:00
|
|
|
lua> ".."
|
2018-01-12 19:27:59 -08:00
|
|
|
local fn = ACTIONS[\%stub];
|
|
|
|
local metadata = ACTION_METADATA[fn];
|
|
|
|
for i=#metadata.aliases,1,-1 do
|
|
|
|
metadata.arg_orders[metadata.aliases[i]] = nil;
|
|
|
|
table.remove(metadata.aliases, i);
|
2017-12-13 16:29:15 -08:00
|
|
|
end
|
2018-01-12 19:27:59 -08:00
|
|
|
ACTIONS[\%stub] = nil;
|
2017-11-01 19:59:44 -07:00
|
|
|
|
2018-01-19 17:29:44 -08:00
|
|
|
immediately
|
|
|
|
action [%tree as lua]
|
2018-01-08 18:53:57 -08:00
|
|
|
=lua "nomsu:tree_to_lua(\%tree).expr"
|
2018-01-19 17:29:44 -08:00
|
|
|
action [%tree as lua statements]
|
2018-01-08 18:53:57 -08:00
|
|
|
lua> ".."
|
|
|
|
local lua = nomsu:tree_to_lua(\%tree);
|
|
|
|
return lua.statements or (lua.expr..";");
|
2018-01-19 17:29:44 -08:00
|
|
|
action [%tree as value]
|
2018-01-10 20:45:03 -08:00
|
|
|
=lua "nomsu:tree_to_value(\%tree)"
|
2018-01-19 17:29:44 -08:00
|
|
|
compile [repr %obj] to
|
2018-01-12 16:33:11 -08:00
|
|
|
"repr(\(%obj as lua))"
|
2018-01-24 13:13:03 -08:00
|
|
|
compile [type of %obj] to
|
2018-01-08 18:53:57 -08:00
|
|
|
"type(\(%obj as lua))"
|
2017-09-22 11:56:46 -07:00
|
|
|
|
2018-01-19 17:29:44 -08:00
|
|
|
immediately
|
|
|
|
parse [lua do> %block] as
|
2018-01-10 20:45:03 -08:00
|
|
|
lua> "do"
|
|
|
|
lua> %block
|
|
|
|
lua> "end"
|
2017-12-04 17:54:52 -08:00
|
|
|
|
2018-01-19 17:29:44 -08:00
|
|
|
compile [nomsu] to "nomsu"
|
2018-01-10 20:45:03 -08:00
|
|
|
|
2018-01-19 17:29:44 -08:00
|
|
|
compile [nomsu's %key] to "nomsu[\(%key as lua)]"
|
|
|
|
compile [nomsu %method %args] to "nomsu[\(%method as lua)](nomsu, unpack(\(%args as lua)))"
|
|
|
|
compile [tree %tree with %replacements] to ".."
|
2018-01-12 16:45:36 -08:00
|
|
|
nomsu:tree_with_replaced_vars(\(%tree as lua), \(%replacements as lua))
|
2017-09-21 00:10:26 -07:00
|
|
|
|
2018-01-19 17:29:44 -08:00
|
|
|
action [action %names metadata]
|
2018-01-12 19:27:59 -08:00
|
|
|
=lua "ACTION_METADATA[ACTIONS[\%names]]"
|
2017-12-04 17:54:52 -08:00
|
|
|
|
2017-09-21 00:10:26 -07:00
|
|
|
# Get the source code for a function
|
2018-01-19 17:29:44 -08:00
|
|
|
action [help %action]
|
2018-01-08 18:53:57 -08:00
|
|
|
lua> ".."
|
2018-01-12 19:27:59 -08:00
|
|
|
local metadata = \(action %action metadata);
|
|
|
|
if not metadata then
|
2018-01-12 16:33:11 -08:00
|
|
|
nomsu:writeln("Action not found: "..repr(\%action));
|
2017-12-13 16:29:15 -08:00
|
|
|
else
|
2018-01-12 19:27:59 -08:00
|
|
|
nomsu:writeln(metadata.src or "<unknown source code>");
|
2017-12-13 16:29:15 -08:00
|
|
|
end
|
2017-09-21 00:10:26 -07:00
|
|
|
|
|
|
|
# Compiler tools
|
2018-01-24 13:13:03 -08:00
|
|
|
parse [run %code] as: nomsu "run" [%code]
|
2017-10-19 17:00:10 -07:00
|
|
|
parse [enable debugging] as: lua> "nomsu.debug = true"
|
|
|
|
parse [disable debugging] as: lua> "nomsu.debug = false"
|
2018-01-11 18:51:21 -08:00
|
|
|
|
2018-01-24 13:13:03 -08:00
|
|
|
compile [say %message] to
|
2018-01-11 18:51:21 -08:00
|
|
|
lua> ".."
|
2018-01-24 13:13:03 -08:00
|
|
|
if \%message.type == "Text" then
|
|
|
|
return "nomsu:writeln("..\(%message as lua)..")";
|
2018-01-11 18:51:21 -08:00
|
|
|
else
|
2018-01-24 13:13:03 -08:00
|
|
|
return "nomsu:writeln(stringify("..\(%message as lua).."))";
|
2018-01-11 18:51:21 -08:00
|
|
|
end
|
|
|
|
|
|
|
|
# Error functions
|
2018-01-19 17:29:44 -08:00
|
|
|
compile [barf!] to "error(nil, 0)"
|
|
|
|
compile [barf %msg] to "error(\(%msg as lua), 0)"
|
|
|
|
compile [assume %condition] to "assert(\(%condition as lua))"
|
|
|
|
compile [assume %condition or barf %msg] to "assert(\(%condition as lua), \(%msg as lua))"
|
2018-01-11 18:51:21 -08:00
|
|
|
|
|
|
|
# Literals
|
2018-01-19 17:29:44 -08:00
|
|
|
compile [yes] to "true"
|
|
|
|
compile [no] to "false"
|
|
|
|
compile [nothing, nil, null] to "nil"
|
2018-01-11 18:51:21 -08:00
|
|
|
|