diff options
| author | Bruce Hill <bitbucket@bruce-hill.com> | 2018-06-04 17:23:02 -0700 |
|---|---|---|
| committer | Bruce Hill <bitbucket@bruce-hill.com> | 2018-06-04 17:23:13 -0700 |
| commit | e7bdc35aa82339f0734ec7014d2da0459ff0462d (patch) | |
| tree | fbd04f75c4a75210e80b86c480e5dc15508968e9 /tests/control_flow.nom | |
| parent | 7cd4f276b7b80e269569d775238606004edf1330 (diff) | |
Cleanups to try/catch logic and object logic.
Diffstat (limited to 'tests/control_flow.nom')
| -rw-r--r-- | tests/control_flow.nom | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/control_flow.nom b/tests/control_flow.nom index 40b344f..886b59c 100644 --- a/tests/control_flow.nom +++ b/tests/control_flow.nom @@ -178,9 +178,10 @@ try do barf ..then always - %x <- 1 + %x <- 3 ..and if it barfs: do nothing -assume (%x = 1) or barf "do/then always failed" +lua> "collectgarbage()" +assume (%x = 3) or barf "do/then always failed" say "Control flow test passed." |
