
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.
24 lines
427 B
Plaintext
24 lines
427 B
Plaintext
#!/usr/bin/env nomsu -V1
|
|
#
|
|
Tests for the stuff defined in core/errors.nom
|
|
|
|
try: barf
|
|
..and if it succeeds: barf "try failed."
|
|
|
|
%worked <- (no)
|
|
try: barf
|
|
..and if it barfs: %worked <- (yes)
|
|
assume %worked or barf "try/catch failed"
|
|
|
|
%x <- 1
|
|
try
|
|
%x <- 2
|
|
do
|
|
barf
|
|
..then always
|
|
%x <- 3
|
|
..and if it barfs: do nothing
|
|
assume (%x = 3) or barf "do/then always failed"
|
|
|
|
say "Error handling test passed."
|