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-24 20:20:27 -07:00
|
|
|
# Nil
|
|
|
|
lua code ".."
|
|
|
|
|nomsu:defmacro("nil", function(nomsu, vars) return "nil", nil end)
|
|
|
|
..with value 0
|
2017-09-21 00:10:26 -07:00
|
|
|
|
2017-09-24 20:20:27 -07:00
|
|
|
# Macros:
|
|
|
|
lua code ".."
|
|
|
|
|nomsu:def("parse %shorthand as %longhand", function(nomsu, vars)
|
|
|
|
| local alias = nomsu:get_alias(vars.shorthand)
|
|
|
|
| local template = vars.longhand
|
|
|
|
| nomsu:defmacro(alias, function(nomsu, vars)
|
|
|
|
| return nomsu:tree_to_lua(nomsu:replaced_vars(template, vars))
|
|
|
|
| end)
|
|
|
|
|end)
|
|
|
|
..with value (nil)
|
|
|
|
|
|
|
|
parse \(lua code %code) as\: lua code %code with value (nil)
|
|
|
|
parse \(lua block %block) as\:
|
|
|
|
lua code ".."
|
|
|
|
|do
|
|
|
|
| \(%block)
|
|
|
|
|end
|
|
|
|
..with value (nil)
|
|
|
|
parse \(lua value %value) as\: lua code (nil) with value %value
|
2017-09-22 11:56:46 -07:00
|
|
|
|
2017-09-24 20:20:27 -07:00
|
|
|
parse \(nomsu) as\: lua value "nomsu"
|
|
|
|
parse \(nomsu's %key) as\:
|
|
|
|
lua value "nomsu[\(%key as lua)]"
|
|
|
|
parse \(nomsu %method %args) as\:
|
2017-09-21 00:10:26 -07:00
|
|
|
lua block ".."
|
2017-09-22 11:56:46 -07:00
|
|
|
|local args = {"nomsu"}
|
2017-09-21 21:11:13 -07:00
|
|
|
|for _,arg in ipairs(vars.args.value) do
|
2017-09-22 11:56:46 -07:00
|
|
|
| table.insert(args, nomsu:tree_to_lua(arg))
|
2017-09-21 00:10:26 -07:00
|
|
|
|end
|
2017-09-24 20:20:27 -07:00
|
|
|
|local method_name = nomsu:repr(nomsu:tree_to_value(vars.method, vars))
|
|
|
|
..with value ".."
|
|
|
|
|("nomsu[%s](%s)"):format(method_name, table.concat(args, ", "))
|
|
|
|
parse \(repr %) as\: nomsu "repr" [%]
|
2017-09-21 21:11:13 -07:00
|
|
|
|
2017-09-24 20:20:27 -07:00
|
|
|
# Rule that lets you make new rules
|
|
|
|
lua block ".."
|
|
|
|
|nomsu:def("rule helper %rule_def = %body", function(nomsu, vars)
|
|
|
|
| nomsu:def(nomsu:get_alias(vars.rule_def), vars.body)
|
|
|
|
|end)
|
|
|
|
parse \(rule %rule_def = %body) as\: rule helper \(%rule_def) = \(%body)
|
|
|
|
parse \(rule %rule_name) as\: lua value "nomsu.defs[nomsu:get_alias(\(%rule_name))]"
|
2017-09-21 00:10:26 -07:00
|
|
|
|
|
|
|
# Get the source code for a function
|
2017-09-24 20:20:27 -07:00
|
|
|
rule (help %rule) =:
|
2017-09-21 00:10:26 -07:00
|
|
|
lua block ".."
|
2017-09-22 11:56:46 -07:00
|
|
|
|local fn_def = nomsu:get_fn_def(vars.rule)
|
2017-09-21 21:11:13 -07:00
|
|
|
|if not fn_def then
|
2017-09-22 11:56:46 -07:00
|
|
|
| nomsu:writeln("Rule not found: "..nomsu:repr(vars.rule))
|
2017-09-21 00:10:26 -07:00
|
|
|
|else
|
2017-09-22 11:56:46 -07:00
|
|
|
| nomsu:writeln("rule "..nomsu:repr(nomsu.utils.keys(fn_def.aliases))
|
2017-09-21 21:11:13 -07:00
|
|
|
| .." ="..(fn_def.src or ":\\n <unknown source code>"))
|
2017-09-21 00:10:26 -07:00
|
|
|
|end
|
|
|
|
|
|
|
|
# Macro helper functions
|
2017-09-24 20:20:27 -07:00
|
|
|
rule (%tree as value) =:
|
2017-09-22 11:56:46 -07:00
|
|
|
lua expr "nomsu:tree_to_value(vars.tree, vars)"
|
2017-09-21 00:10:26 -07:00
|
|
|
|
2017-09-24 20:20:27 -07:00
|
|
|
rule (%tree as lua) =:
|
2017-09-22 11:56:46 -07:00
|
|
|
lua expr "nomsu:tree_to_lua(vars.tree)"
|
2017-09-21 00:10:26 -07:00
|
|
|
|
|
|
|
# Compiler tools
|
2017-09-24 20:20:27 -07:00
|
|
|
rule (eval %code; run %code) =: nomsu "run" [%code]
|
|
|
|
rule (source code from tree %tree) =:
|
2017-09-21 00:10:26 -07:00
|
|
|
lua block ".."
|
|
|
|
|local _,_,leading_space = vars.tree.src:find("\\n(%s*)%S")
|
|
|
|
|if leading_space then
|
|
|
|
| local chunk1, chunk2 = vars.tree.src:match(":%s*([^\\n]*)(\\n.*)")
|
|
|
|
| chunk2 = chunk2:gsub("\\n"..leading_space, "\\n")
|
|
|
|
| return chunk1..chunk2.."\\n"
|
|
|
|
|else
|
|
|
|
| return vars.tree.src:match(":%s*(%S.*)").."\\n"
|
|
|
|
|end
|
|
|
|
|
2017-09-24 20:20:27 -07:00
|
|
|
macro (source code %body) =:
|
2017-09-22 11:56:46 -07:00
|
|
|
nomsu "repr" [nomsu "call" ["source code from tree %", %body]]
|
2017-09-21 00:10:26 -07:00
|
|
|
|
2017-09-24 20:20:27 -07:00
|
|
|
macro (parse tree %code) =:
|
2017-09-22 11:56:46 -07:00
|
|
|
nomsu "repr" [nomsu "stringify_tree" [lua expr "vars.code.value"]]
|
2017-09-21 00:10:26 -07:00
|
|
|
|