nomsu/core/scopes.nom
Bruce Hill addac10a47 Re-autoformatted everything. The main changes are: no longer adding a
newline after 1-line indented code inside blocks, and forcing files to
have a trailing newline. The trailing newline thing created a lot of
spurious changes.
2018-07-22 15:01:05 -07:00

33 lines
944 B
Plaintext

#!/usr/bin/env nomsu -V2.5.4.3
#
This file contains definitions pertaining to variable scoping
use "core/metaprogramming.nom"
use "core/operators.nom"
use "core/collections.nom"
use "core/control_flow.nom"
compile [with local %locals %body, with local %locals do %body] to:
%body_lua = (%body as lua statements)
if %locals.type is:
"Dict":
%body_lua = (..)
Lua ".."
\(compile as (<- %locals))
\%body_lua
declare locals ("\(%.1 as lua)" for % in %locals) in %body_lua
"List":
declare locals ("\(% as lua)" for % in %locals) in %body_lua
"Var" "Action":
declare locals ["\(%locals as lua)"] in %body_lua
else:
compile error at %locals.source "Unexpected locals: %s"
return (..)
Lua ".."
do
\%body_lua
end