jashkenas--coffeescript/test/test_try_catch.coffee

55 lines
571 B
CoffeeScript
Raw Normal View History

# Basic exception throwing.
block = -> throw 'up'
throws block, 'up'
# Basic try/catch.
2010-07-25 05:23:37 +00:00
result = try
10
finally
15
ok result is 10
2010-07-25 05:23:37 +00:00
result = try
throw 'up'
catch err
err.length
2010-06-28 12:50:44 +00:00
ok result is 2
2010-07-25 05:23:37 +00:00
result = try throw 'error' catch err then err.length
2010-06-28 12:50:44 +00:00
ok result is 5
2010-10-04 20:53:32 +00:00
try throw 'catch is optional'
# try/catch with empty clauses still compiles.
2010-10-04 20:53:32 +00:00
try
try
# nothing
catch err
# nothing
try
# nothing
finally
# nothing
try
catch err
finally
2010-10-04 20:53:32 +00:00
ok yes
# Try catch with empty clause in a function body.
func = ->
try
100
catch err
ok func() is 100