2017-09-21 00:10:26 -07:00
|
|
|
#..
|
|
|
|
This File contains rules for making rules and macros and some helper functions to make
|
|
|
|
that easier.
|
|
|
|
|
2017-09-28 17:49:15 -07:00
|
|
|
# Rule to make rules:
|
2017-10-19 17:00:10 -07:00
|
|
|
lua> ".."
|
2017-10-02 17:21:22 -07:00
|
|
|
|nomsu:defmacro("rule %signature = %body", (function(nomsu, vars)
|
2017-12-09 15:34:52 -08:00
|
|
|
| local signature = {};
|
|
|
|
| for i, alias in ipairs(nomsu:typecheck(vars, "signature", "List").value) do
|
|
|
|
| signature[i] = alias.src;
|
|
|
|
| end
|
2017-10-02 17:21:22 -07:00
|
|
|
| local body = nomsu:typecheck(vars, "body", "Thunk");
|
|
|
|
| return ([[
|
2017-09-28 18:25:50 -07:00
|
|
|
|nomsu:def(%s, %s, %s)
|
2017-12-09 15:34:52 -08:00
|
|
|
|]]):format(nomsu:repr(signature), nomsu:tree_to_lua(body), nomsu:repr(nomsu:dedent(nomsu.defs["#macro_tree"].src))), nil;
|
|
|
|
|end), \(__src__));
|
2017-09-25 17:02:00 -07:00
|
|
|
|
2017-09-28 17:49:15 -07:00
|
|
|
# Rule to make nomsu macros:
|
2017-12-04 17:54:52 -08:00
|
|
|
rule [parse \%shorthand as \%longhand] =:
|
2017-10-19 17:00:10 -07:00
|
|
|
lua> ".."
|
2017-12-04 17:54:52 -08:00
|
|
|
|local signature = {};
|
|
|
|
|for i, alias in ipairs(nomsu:typecheck(vars, "shorthand", "List").value) do
|
|
|
|
| signature[i] = alias.src;
|
|
|
|
|end
|
2017-10-19 18:16:15 -07:00
|
|
|
|local template = nomsu:typecheck(vars, "longhand", "Thunk").value;
|
2017-09-28 17:49:15 -07:00
|
|
|
|local function parsing_as(nomsu, vars)
|
2017-10-19 18:16:15 -07:00
|
|
|
# Single expression/statement
|
2017-10-23 16:28:45 -07:00
|
|
|
| if #template == 1 then
|
2017-10-19 18:16:15 -07:00
|
|
|
| local replacement = nomsu:replaced_vars(template[1], vars);
|
|
|
|
| return nomsu:tree_to_lua(replacement);
|
|
|
|
| end
|
|
|
|
# Multiple statements
|
|
|
|
| local lua_bits = {};
|
2017-10-23 16:28:45 -07:00
|
|
|
| for _,bit in ipairs(template) do
|
2017-10-19 18:16:15 -07:00
|
|
|
| bit = nomsu:replaced_vars(bit, vars);
|
|
|
|
| local expr, statement = nomsu:tree_to_lua(bit);
|
2017-10-23 16:28:45 -07:00
|
|
|
| if statement then table.insert(lua_bits, statement); end
|
|
|
|
| if expr then table.insert(lua_bits, "ret = "..expr..";"); end
|
|
|
|
| end
|
2017-10-19 18:16:15 -07:00
|
|
|
| return nil, table.concat(lua_bits, "\\n");
|
2017-10-23 16:28:45 -07:00
|
|
|
|end
|
2017-12-04 17:54:52 -08:00
|
|
|
|nomsu:defmacro(signature, parsing_as, \(__src__));
|
2017-09-25 17:02:00 -07:00
|
|
|
|
2017-09-28 17:49:15 -07:00
|
|
|
# Rule to make lua macros:
|
2017-12-04 17:54:52 -08:00
|
|
|
rule [compile \%macro_def to \%body] =:
|
2017-10-19 17:00:10 -07:00
|
|
|
lua> ".."
|
2017-12-04 17:54:52 -08:00
|
|
|
|local signature = {};
|
|
|
|
|for i, alias in ipairs(nomsu:typecheck(vars, "macro_def", "List").value) do
|
|
|
|
| signature[i] = alias.src;
|
|
|
|
|end
|
2017-10-02 17:21:22 -07:00
|
|
|
|local body = nomsu:typecheck(vars, "body", "Thunk");
|
|
|
|
|local thunk = nomsu:tree_to_value(body);
|
2017-12-04 17:54:52 -08:00
|
|
|
|nomsu:defmacro(signature, thunk, ("compile %s\\n..to %s"):format(vars.macro_def.src, body.src));
|
|
|
|
rule [compile \%macro_def to code \%body] =:
|
2017-10-19 17:00:10 -07:00
|
|
|
lua> ".."
|
2017-12-04 17:54:52 -08:00
|
|
|
|local signature = {};
|
|
|
|
|for i, alias in ipairs(nomsu:typecheck(vars, "macro_def", "List").value) do
|
|
|
|
| signature[i] = alias.src;
|
|
|
|
|end
|
2017-10-02 17:21:22 -07:00
|
|
|
|local body = nomsu:typecheck(vars, "body", "Thunk");
|
|
|
|
|local thunk = nomsu:tree_to_value(body);
|
2017-10-23 16:28:45 -07:00
|
|
|
|local thunk_wrapper = function(nomsu, vars) return nil, thunk(nomsu, vars); end
|
2017-12-04 17:54:52 -08:00
|
|
|
|nomsu:defmacro(signature, thunk_wrapper, ("compile %s\\n..to code %s"):format(vars.macro_def.src, body.src));
|
2017-09-25 17:02:00 -07:00
|
|
|
|
2017-11-01 19:59:44 -07:00
|
|
|
rule [remove rule %stub] =:
|
|
|
|
lua> ".."
|
2017-11-01 20:00:52 -07:00
|
|
|
|local def = nomsu.defs[\(%stub)];
|
2017-11-01 19:59:44 -07:00
|
|
|
|for _, alias in ipairs(def.aliases) do
|
2017-12-04 17:54:52 -08:00
|
|
|
| nomsu.defs[alias] = false;
|
2017-11-01 19:59:44 -07:00
|
|
|
|end
|
|
|
|
|
2017-10-02 17:21:22 -07:00
|
|
|
rule [%tree as lua] =:
|
2017-10-19 17:00:10 -07:00
|
|
|
=lua "nomsu:tree_to_lua(\(%tree))"
|
2017-10-02 17:21:22 -07:00
|
|
|
rule [%tree as value] =:
|
2017-10-19 17:00:10 -07:00
|
|
|
=lua "nomsu:tree_to_value(\(%tree), vars)"
|
2017-10-02 17:21:22 -07:00
|
|
|
compile [repr %obj] to:
|
2017-09-28 17:49:15 -07:00
|
|
|
"nomsu:repr(\(%obj as lua))"
|
2017-10-09 19:52:46 -07:00
|
|
|
compile [type %obj, type of %obj] to:
|
2017-10-09 19:51:55 -07:00
|
|
|
"type(\(%obj as lua))"
|
2017-09-22 11:56:46 -07:00
|
|
|
|
2017-10-19 18:16:15 -07:00
|
|
|
parse [lua do> %block] as:
|
2017-10-23 16:28:45 -07:00
|
|
|
lua> "do"
|
2017-10-19 18:16:15 -07:00
|
|
|
lua> %block
|
2017-10-23 16:28:45 -07:00
|
|
|
lua> "end"
|
2017-12-04 17:54:52 -08:00
|
|
|
|
2017-10-02 17:21:22 -07:00
|
|
|
rule [%tree as lua statement] =:
|
2017-10-19 17:00:10 -07:00
|
|
|
lua do> ".."
|
2017-10-02 17:21:22 -07:00
|
|
|
|local _,statement = nomsu:tree_to_lua(\(%tree));
|
|
|
|
|return statement;
|
|
|
|
rule [%tree as lua statements] =:
|
2017-10-19 17:00:10 -07:00
|
|
|
lua do> ".."
|
2017-10-02 17:21:22 -07:00
|
|
|
|local lua_bits = {};
|
|
|
|
|local statements = nomsu:typecheck(vars, "tree", "Thunk").value;
|
2017-10-23 16:28:45 -07:00
|
|
|
|for _,bit in ipairs(statements) do
|
2017-10-02 17:21:22 -07:00
|
|
|
| local expr, statement = nomsu:tree_to_lua(bit);
|
2017-10-23 16:28:45 -07:00
|
|
|
| if statement then table.insert(lua_bits, statement); end
|
|
|
|
| if expr then table.insert(lua_bits, "ret = "..expr..";"); end
|
|
|
|
|end
|
2017-10-02 17:21:22 -07:00
|
|
|
|return table.concat(lua_bits, "\\n");
|
2017-09-26 15:27:01 -07:00
|
|
|
|
2017-10-02 17:21:22 -07:00
|
|
|
compile [nomsu] to: "nomsu"
|
|
|
|
compile [nomsu's %key] to: "nomsu[\(%key as lua)]"
|
|
|
|
compile [nomsu %method %args] to: "nomsu[\(%method as lua)](nomsu, unpack(\(%args as lua)))"
|
2017-09-21 00:10:26 -07:00
|
|
|
|
2017-12-04 17:54:52 -08:00
|
|
|
parse [rule %signature] as:
|
|
|
|
(nomsu's "defs")->(nomsu "get_stub" [\%signature])
|
|
|
|
|
2017-09-21 00:10:26 -07:00
|
|
|
# Get the source code for a function
|
2017-10-02 17:21:22 -07:00
|
|
|
rule [help %rule] =:
|
2017-10-19 17:00:10 -07:00
|
|
|
lua do> ".."
|
2017-10-08 15:06:05 -07:00
|
|
|
|local fn_def = nomsu.defs[nomsu:get_stub(vars.rule)]
|
2017-10-23 16:28:45 -07:00
|
|
|
|if not fn_def then
|
2017-10-02 17:21:22 -07:00
|
|
|
| nomsu:writeln("Rule not found: "..nomsu:repr(vars.rule));
|
2017-10-23 16:28:45 -07:00
|
|
|
|else
|
2017-12-09 15:34:52 -08:00
|
|
|
| nomsu:writeln(fn_def.src or "<unknown source code>");
|
2017-10-23 16:28:45 -07:00
|
|
|
|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]
|
|
|
|
rule [source code from tree %tree] =:
|
2017-10-19 17:00:10 -07:00
|
|
|
lua do> ".."
|
2017-10-02 17:21:22 -07:00
|
|
|
|local _,_,leading_space = vars.tree.src:find("\\n(%s*)%S");
|
2017-10-23 16:28:45 -07:00
|
|
|
|if leading_space then
|
2017-10-02 17:21:22 -07:00
|
|
|
| local chunk1, chunk2 = vars.tree.src:match(":%s*([^\\n]*)(\\n.*)");
|
|
|
|
| chunk2 = chunk2:gsub("\\n"..leading_space, "\\n");
|
|
|
|
| return chunk1..chunk2.."\\n";
|
2017-10-23 16:28:45 -07:00
|
|
|
|else
|
2017-10-02 17:21:22 -07:00
|
|
|
| return vars.tree.src:match(":%s*(%S.*)").."\\n";
|
2017-10-23 16:28:45 -07: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"
|