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-08 18:53:57 -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-11 02:07:37 -08:00
|
|
|
local names = {};
|
2018-01-10 20:45:03 -08:00
|
|
|
for i, alias in ipairs(spec.value) do
|
2018-01-11 02:07:37 -08:00
|
|
|
names[i] = alias.src;
|
2018-01-10 20:45:03 -08:00
|
|
|
end
|
|
|
|
local _, arg_names, _ = nomsu:get_stub(spec.value[1]);
|
|
|
|
local args = {"nomsu"};
|
|
|
|
for i, a in ipairs(arg_names) do args[i+1] = "_"..nomsu:var_to_lua_identifier(a); end
|
2018-01-11 02:07:37 -08:00
|
|
|
names, args = nomsu:repr(names), table.concat(args, ", ");
|
|
|
|
return names, args;
|
2018-01-10 20:45:03 -08:00
|
|
|
end
|
|
|
|
|
2018-01-11 02:07:37 -08:00
|
|
|
# Compile-time action to make compile-time actions:
|
2018-01-10 20:45:03 -08:00
|
|
|
immediately:
|
|
|
|
lua> ".."
|
2018-01-11 02:07:37 -08:00
|
|
|
nomsu:define_compile_action("compile %names to %body", \(__line_no__), function(nomsu, \%names, \%body)
|
|
|
|
nomsu:assert(\%names.type == "List",
|
|
|
|
"Invalid type for compile definition names. Expected List, but got: "..tostring(\%names.type));
|
2018-01-08 18:53:57 -08:00
|
|
|
nomsu:assert(\%body.type == "Block",
|
2018-01-09 14:59:06 -08:00
|
|
|
"Invalid type for compile definition body. Expected Block, but got: "..tostring(\%body.type));
|
2018-01-11 02:07:37 -08:00
|
|
|
local names, args = nomsu:parse_spec(\%names);
|
2018-01-08 18:53:57 -08:00
|
|
|
local body_lua = nomsu:tree_to_lua(\%body);
|
2018-01-09 14:59:06 -08:00
|
|
|
body_lua = body_lua.statements or ("return "..body_lua.expr..";");
|
|
|
|
local lua = ([[
|
|
|
|
do
|
2018-01-11 02:07:37 -08:00
|
|
|
local function compile_action(%s)
|
2018-01-09 14:59:06 -08:00
|
|
|
%s
|
|
|
|
end
|
2018-01-11 02:07:37 -08:00
|
|
|
local function compile_action_wrapper(...) return {expr=compile_action(...)}; end
|
|
|
|
nomsu:define_compile_action(%s, %s, compile_action_wrapper, %s);
|
|
|
|
end]]):format(args, body_lua, names, nomsu:repr(\%names:get_line_no()),
|
|
|
|
nomsu:repr(("compile %s\\n..to code %s"):format(\%names.src, \%body.src)));
|
2018-01-09 14:59:06 -08:00
|
|
|
return {statements=lua};
|
|
|
|
end, \(__src__ 1));
|
2017-12-30 14:31:07 -08:00
|
|
|
|
2018-01-09 14:59:06 -08:00
|
|
|
lua> ".."
|
2018-01-11 02:07:37 -08:00
|
|
|
nomsu:define_compile_action("compile %names to code %body", \(__line_no__), function(nomsu, \%names, \%body)
|
|
|
|
nomsu:assert(\%names.type == "List",
|
|
|
|
"Invalid type for compile definition names. Expected List, but got: "..tostring(\%names.type));
|
2018-01-08 18:53:57 -08:00
|
|
|
nomsu:assert(\%body.type == "Block",
|
|
|
|
"Invalid type for compile definition body. Expected Block, but got: "..tostring(\%body.type));
|
2018-01-11 02:07:37 -08:00
|
|
|
local names, args = nomsu:parse_spec(\%names);
|
2018-01-08 18:53:57 -08:00
|
|
|
local body_lua = nomsu:tree_to_lua(\%body);
|
2018-01-09 14:59:06 -08:00
|
|
|
body_lua = body_lua.statements or ("return "..body_lua.expr..";");
|
|
|
|
local lua = ([[
|
|
|
|
do
|
2018-01-11 02:07:37 -08:00
|
|
|
local function compile_action(%s)
|
2018-01-08 18:53:57 -08:00
|
|
|
%s
|
2018-01-09 14:59:06 -08:00
|
|
|
end
|
2018-01-11 02:07:37 -08:00
|
|
|
local function compile_action_wrapper(...) return {statements=compile_action(...)}; end
|
|
|
|
nomsu:define_compile_action(%s, %s, compile_action_wrapper, %s);
|
|
|
|
end]]):format(args, body_lua, names, nomsu:repr(\%names:get_line_no()),
|
|
|
|
nomsu:repr(("compile %s\\n..to code %s"):format(\%names.src, \%body.src)));
|
2018-01-09 14:59:06 -08:00
|
|
|
return {statements=lua};
|
|
|
|
end, \(__src__ 1));
|
2018-01-08 18:53:57 -08:00
|
|
|
|
2018-01-11 02:07:37 -08:00
|
|
|
# Compile-time action to make actions
|
2018-01-09 14:59:06 -08:00
|
|
|
immediately:
|
2018-01-11 02:07:37 -08:00
|
|
|
compile [action %names %body] to code:
|
2018-01-08 18:53:57 -08:00
|
|
|
lua> ".."
|
2018-01-11 02:07:37 -08:00
|
|
|
nomsu:assert(\%names.type == "List",
|
|
|
|
"Invalid type for action definition names. Expected List, but got: "..tostring(\%names.type));
|
2018-01-08 18:53:57 -08:00
|
|
|
nomsu:assert(\%body.type == "Block",
|
2018-01-11 01:19:03 -08:00
|
|
|
"Invalid type for action definition body. Expected Block, but got: "..tostring(\%body.type));
|
2018-01-11 02:07:37 -08:00
|
|
|
local names, args = nomsu:parse_spec(\%names);
|
2018-01-08 18:53:57 -08:00
|
|
|
local body_lua = nomsu:tree_to_lua(\%body);
|
2018-01-09 14:59:06 -08:00
|
|
|
body_lua = body_lua.statements or ("return "..body_lua.expr..";");
|
|
|
|
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-11 02:07:37 -08:00
|
|
|
end, %s);]]):format(names, args, body_lua, nomsu: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-08 18:53:57 -08:00
|
|
|
immediately:
|
|
|
|
lua> ".."
|
2018-01-11 02:07:37 -08:00
|
|
|
nomsu:define_compile_action("parse %shorthand as %longhand", \(__line_no__), (function(nomsu, \%shorthand, \%longhand)
|
2018-01-08 18:53:57 -08:00
|
|
|
nomsu:assert(\%shorthand.type == "List",
|
2018-01-11 02:07:37 -08:00
|
|
|
"Invalid type for parse definition shorthand. Expected List, but got: "..tostring(\%shorthand.type));
|
2018-01-08 18:53:57 -08:00
|
|
|
nomsu:assert(\%longhand.type == "Block",
|
|
|
|
"Invalid type for parse definition body. Expected Block, but got: "..tostring(\%longhand.type));
|
2018-01-11 02:07:37 -08:00
|
|
|
local names, args = nomsu:parse_spec(\%shorthand);
|
2018-01-08 18:53:57 -08:00
|
|
|
local template = {};
|
|
|
|
for i, line in ipairs(\%longhand.value) do
|
|
|
|
template[i] = nomsu:dedent(line.src);
|
|
|
|
end
|
2018-01-10 20:45:03 -08:00
|
|
|
template = nomsu:repr(table.concat(template, "\\n"));
|
|
|
|
local _, arg_names, _ = nomsu:get_stub(\%shorthand.value[1]);
|
|
|
|
local replacements = {};
|
|
|
|
for i, a in ipairs(arg_names) do replacements[i] = "["..nomsu:repr(a).."]=_"..nomsu:var_to_lua_identifier(a); end
|
|
|
|
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-10 20:45:03 -08:00
|
|
|
local replacement = nomsu:replaced_vars(template, %s);
|
2018-01-08 18:53:57 -08:00
|
|
|
return nomsu:tree_to_lua(replacement);
|
2018-01-11 02:07:37 -08:00
|
|
|
end), %s)]]):format(names, nomsu:repr(\%shorthand:get_line_no()), args, template,
|
2018-01-11 01:03:52 -08:00
|
|
|
nomsu:repr(\%shorthand:get_line_no()), replacements, nomsu: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-11 01:19:03 -08:00
|
|
|
action [remove action %stub]:
|
2017-11-01 19:59:44 -07:00
|
|
|
lua> ".."
|
2018-01-03 01:04:21 -08:00
|
|
|
local def = nomsu.defs[\%stub];
|
2017-12-13 16:29:15 -08:00
|
|
|
for _, alias in ipairs(def.aliases) do
|
|
|
|
nomsu.defs[alias] = false;
|
|
|
|
end
|
2017-11-01 19:59:44 -07:00
|
|
|
|
2018-01-08 18:53:57 -08:00
|
|
|
immediately:
|
2018-01-11 01:19:03 -08:00
|
|
|
action [%tree as lua]:
|
2018-01-08 18:53:57 -08:00
|
|
|
=lua "nomsu:tree_to_lua(\%tree).expr"
|
2018-01-11 01:19:03 -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-11 01:19:03 -08:00
|
|
|
action [%tree as value]:
|
2018-01-10 20:45:03 -08:00
|
|
|
=lua "nomsu:tree_to_value(\%tree)"
|
2018-01-08 18:53:57 -08:00
|
|
|
compile [repr %obj] to:
|
|
|
|
"nomsu:repr(\(%obj as lua))"
|
|
|
|
compile [indented %obj] to:
|
|
|
|
"nomsu:indent(\(%obj as lua))"
|
|
|
|
compile [dedented %obj] to:
|
|
|
|
"nomsu:dedent(\(%obj as lua))"
|
|
|
|
compile [type %obj, type of %obj] to:
|
|
|
|
"type(\(%obj as lua))"
|
2017-09-22 11:56:46 -07:00
|
|
|
|
2018-01-10 20:45:03 -08:00
|
|
|
immediately:
|
|
|
|
parse [lua do> %block] as:
|
|
|
|
lua> "do"
|
|
|
|
lua> %block
|
|
|
|
lua> "end"
|
2017-12-04 17:54:52 -08:00
|
|
|
|
2017-10-02 17:21:22 -07:00
|
|
|
compile [nomsu] to: "nomsu"
|
2018-01-10 20:45:03 -08:00
|
|
|
|
2017-10-02 17:21:22 -07:00
|
|
|
compile [nomsu's %key] to: "nomsu[\(%key as lua)]"
|
|
|
|
compile [nomsu %method %args] to: "nomsu[\(%method as lua)](nomsu, unpack(\(%args as lua)))"
|
2018-01-03 00:52:01 -08:00
|
|
|
compile [tree %tree with %replacements] to: ".."
|
|
|
|
nomsu:replaced_vars(\(%tree as lua), \(%replacements as lua))
|
2017-09-21 00:10:26 -07:00
|
|
|
|
2018-01-11 02:07:37 -08:00
|
|
|
parse [action %names] as:
|
|
|
|
(nomsu's "defs")->(nomsu "get_stub" [\%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-11 01:19:03 -08:00
|
|
|
action [help %action]:
|
2018-01-08 18:53:57 -08:00
|
|
|
lua> ".."
|
2018-01-11 01:19:03 -08:00
|
|
|
local fn_def = nomsu.defs[nomsu:get_stub(\%action)]
|
2017-12-13 16:29:15 -08:00
|
|
|
if not fn_def then
|
2018-01-11 01:19:03 -08:00
|
|
|
nomsu:writeln("Action not found: "..nomsu:repr(\%action));
|
2017-12-13 16:29:15 -08:00
|
|
|
else
|
|
|
|
nomsu:writeln(fn_def.src or "<unknown source code>");
|
|
|
|
end
|
2017-09-21 00:10:26 -07:00
|
|
|
|
|
|
|
# Compiler tools
|
2017-10-02 17:21:22 -07:00
|
|
|
parse [eval %code, run %code] as: nomsu "run" [%code]
|
2018-01-11 01:19:03 -08:00
|
|
|
action [source code from tree %tree]:
|
2018-01-08 18:53:57 -08:00
|
|
|
lua> ".."
|
2018-01-05 15:42:06 -08:00
|
|
|
local _,_,leading_space = \%tree.src:find("\\n(%s*)%S");
|
2017-12-13 16:29:15 -08:00
|
|
|
if leading_space then
|
2018-01-05 15:42:06 -08:00
|
|
|
local chunk1, chunk2 = \%tree.src:match(":%s*([^\\n]*)(\\n.*)");
|
2017-12-13 16:29:15 -08:00
|
|
|
chunk2 = chunk2:gsub("\\n"..leading_space, "\\n");
|
|
|
|
return chunk1..chunk2.."\\n";
|
|
|
|
else
|
2018-01-05 15:42:06 -08:00
|
|
|
return \%tree.src:match(":%s*(%S.*)").."\\n";
|
2017-12-13 16:29:15 -08:00
|
|
|
end
|
2017-10-02 17:21:22 -07:00
|
|
|
parse [source code %body] as: source code from tree \%body
|
2017-09-21 00:10:26 -07:00
|
|
|
|
2017-10-02 17:21:22 -07:00
|
|
|
parse [parse tree %code] as: nomsu "tree_to_str" [\%code]
|
2017-09-26 15:27:01 -07:00
|
|
|
|
2017-10-19 17:00:10 -07:00
|
|
|
parse [enable debugging] as: lua> "nomsu.debug = true"
|
|
|
|
parse [disable debugging] as: lua> "nomsu.debug = false"
|