tests are now passing on symbology

This commit is contained in:
Jeremy Ashkenas
2010-07-24 22:23:37 -07:00
parent 492ee57b8f
commit 88847df70b
42 changed files with 514 additions and 522 deletions

View File

@@ -1,17 +1,17 @@
# Basic exception throwing.
block: -> (throw 'up')
block = -> (throw 'up')
throws block, 'up'
# Basic try/catch.
result: try
result = try
10
finally
15
ok result is 10
result: try
result = try
throw 'up'
catch err
err.length
@@ -19,7 +19,7 @@ catch err
ok result is 2
result: try throw 'error' catch err then err.length
result = try throw 'error' catch err then err.length
ok result is 5