Fixed some of secrets' functionality by rewriting rule % = %
This commit is contained in:
parent
ac25e20b9f
commit
723a4c3871
@ -4,22 +4,37 @@
|
|||||||
|
|
||||||
# Rule to make rules:
|
# Rule to make rules:
|
||||||
lua code ".."
|
lua code ".."
|
||||||
|nomsu:def("escaped rule %rule_def = %body", function(nomsu, vars)
|
|nomsu:defmacro("rule %rule_def = %body", function(nomsu, vars)
|
||||||
| local aliases = nomsu:typecheck(vars, "rule_def", "Block").value
|
| local aliases = nomsu:typecheck(vars, "rule_def", "Block").value
|
||||||
| local body = nomsu:typecheck(vars, "body", "Block")
|
|
||||||
| local thunk = nomsu:tree_to_value({type="Thunk", value={type="Statements", value=body.value, src=body.src}, src=body.src})
|
|
||||||
| local canonical = aliases[1]
|
| local canonical = aliases[1]
|
||||||
| nomsu:def(canonical, thunk, body.src)
|
| local body = nomsu:typecheck(vars, "body", "Block")
|
||||||
| local function rewriter(nomsu, vars)
|
| local thunk = nomsu:tree_to_lua({type="Thunk", value={type="Statements", value=body.value, src=body.src}, src=body.src})
|
||||||
| return nomsu:tree_to_lua(nomsu:replaced_vars(canonical, vars))
|
| local lua = ([[
|
||||||
|
|nomsu:def(%s, %s, %s)
|
||||||
|
|]]):format(nomsu:repr(canonical.src), thunk, nomsu:repr(body.src))
|
||||||
|
| if #aliases > 1 then
|
||||||
|
| lua = lua .. ([[
|
||||||
|
|do
|
||||||
|
| local aliased = %s
|
||||||
|
| local src = %s
|
||||||
|
| local function dealiaser(nomsu, vars)
|
||||||
|
| return nomsu:tree_to_lua(nomsu:replaced_vars(aliased, vars))
|
||||||
| end
|
| end
|
||||||
| for i=2,#aliases do
|
|]]):format(nomsu:repr(canonical), nomsu:repr(canonical.src))
|
||||||
| nomsu:defmacro(aliases[i], rewriter, body.src)
|
| for i=2,#aliases do
|
||||||
|
| lua = lua .. ([[
|
||||||
|
| nomsu:defmacro(%s, dealiaser, %s)
|
||||||
|
|]]):format(nomsu:repr(aliases[i].src), nomsu:repr(canonical.src))
|
||||||
|
| end
|
||||||
|
| lua = lua .. [[
|
||||||
|
|end
|
||||||
|
|]]
|
||||||
| end
|
| end
|
||||||
|end)
|
| return nil, lua
|
||||||
|
|end, "<source can be found in lib/metaprogramming.nom>")
|
||||||
|
|
||||||
# Rule to make nomsu macros:
|
# Rule to make nomsu macros:
|
||||||
escaped rule \(escaped parse %shorthand as %longhand) = \:
|
rule (escaped parse %shorthand as %longhand) =:
|
||||||
lua code ".."
|
lua code ".."
|
||||||
|local aliases = nomsu:typecheck(vars, "shorthand", "Block").value
|
|local aliases = nomsu:typecheck(vars, "shorthand", "Block").value
|
||||||
|local template = nomsu:typecheck(vars, "longhand", "Block")
|
|local template = nomsu:typecheck(vars, "longhand", "Block")
|
||||||
@ -31,7 +46,6 @@ escaped rule \(escaped parse %shorthand as %longhand) = \:
|
|||||||
| nomsu:defmacro(call, parsing_as, template.src)
|
| nomsu:defmacro(call, parsing_as, template.src)
|
||||||
|end
|
|end
|
||||||
escaped parse \(parse %shorthand as %longhand) as \: escaped parse \%shorthand as \%longhand
|
escaped parse \(parse %shorthand as %longhand) as \: escaped parse \%shorthand as \%longhand
|
||||||
parse (rule %rule_def = %body) as: escaped rule \%rule_def = \%body
|
|
||||||
|
|
||||||
# Rule to make lua macros:
|
# Rule to make lua macros:
|
||||||
rule (escaped compile %macro_def to %body) =:
|
rule (escaped compile %macro_def to %body) =:
|
||||||
|
@ -17,7 +17,6 @@ compile (secret %key = %new_value) to code:
|
|||||||
|Wrong type, expected Var, but got: \(%key's "type")
|
|Wrong type, expected Var, but got: \(%key's "type")
|
||||||
"secrets[\(repr (%key's "value"))] = \(%new_value as lua)"
|
"secrets[\(repr (%key's "value"))] = \(%new_value as lua)"
|
||||||
|
|
||||||
enable debugging
|
|
||||||
with secrets:
|
with secrets:
|
||||||
secret %foo = 5
|
secret %foo = 5
|
||||||
rule (plumb %) =:
|
rule (plumb %) =:
|
||||||
@ -26,5 +25,5 @@ with secrets:
|
|||||||
secret %foo
|
secret %foo
|
||||||
|
|
||||||
say (frop)
|
say (frop)
|
||||||
pumb 99
|
plumb 99
|
||||||
say (frop)
|
say (frop)
|
||||||
|
Loading…
Reference in New Issue
Block a user