nomsu/lib/secrets.nom
Bruce Hill 6e46f042fd Mostly working overhaul again that strips out ending lines with "..",
and simplifies a lot of the code. Also stripped out Expression, which
was just a useless level of indirection.
2017-09-20 03:06:15 -07:00

35 lines
1.3 KiB
Plaintext

require "lib/core.nom"
macro block [with secrets %block] =: ".."
|local secrets = {}
|\(%block's "value") as lua block\
macro block [with secrets as %secret_name %block] =: ".."
|local \%secret_name as value\ = {}
|\(%block's "value") as lua block\
# Access the lua variable that should be within scope
macro [secrets] =: "secrets"
macro [secret %key, secret value of %key, secret value for %key] =:
if ((%key's "type") != "Var"):
error ".."
|Wrong type, expected Var, but got: \%key's "type"\
".."|secrets[\repr (%key's "value")\]
macro block [secret %key = %new_value] =:
lua block ".."
|if vars.key.type ~= "Var" then
| compiler:error("Assignment operation has the wrong type for the left hand side. "
| .."Expected Var, but got: "..vars.key.type)
|end
|if vars.new_value.type ~= "Thunk" then
| compiler:error("Assignment operation has the wrong type for the right hand side. "
| .."Expected Thunk, but got: "..vars.new_value.type.."\\nMaybe you used '=' instead of '=:'?")
|end
".."|do
| local ret
| \lua expr "compiler:tree_to_lua(vars.new_value.value, 'Statement')"\
| secrets[\repr (%key's "value")\] = ret
|end