nomsu/tests/scopes.nom
Bruce Hill be06fc096a Major changes to how versioning and parsing work. This should be a
better path going forward to handling upgrades. Old syntax files will
stick around for compatibility purposes. Old syntax can be parsed into
valid syntax trees via the old syntax (.peg) files, and then old syntax
trees should be valid and can be upgraded via the normal code path. This
change has lots of improvements to Nomsu codegen too.
2018-07-15 19:43:28 -07:00

18 lines
297 B
Plaintext

#!/usr/bin/env nomsu -V1
use "core"
%x <- "outer"
with local %x
%x <- "inner"
assume: %x = "inner"
assume: %x = "outer"
action [foo] "outer foo"
with local [action: foo]
action [foo] "inner foo"
assume: (foo) = "inner foo"
assume: (foo) = "outer foo"
say "Scopes test passed."