jade
Version:
Jade template engine
46 lines (31 loc) • 465 B
text/coffeescript
block = -> throw 'up'
throws block, 'up'
result = try
10
finally
15
ok result is 10
result = try
throw 'up'
catch err
err.length
ok result is 2
result = try throw 'error' catch err then err.length
ok result is 5
try throw 'catch is optional'
try
try
catch err
try
finally
try
catch err
finally
ok yes