fixing empty catch clauses ... Issue #470

This commit is contained in:
Jeremy Ashkenas
2010-07-04 12:50:04 -04:00
parent 92878558c6
commit e281133f12
6 changed files with 124 additions and 110 deletions

View File

@@ -378,7 +378,6 @@ grammar: {
# A catch clause names its error and runs a block of code.
Catch: [
o "CATCH Identifier Block", -> [$2, $3]
o "CATCH Identifier TERMINATOR", -> [$2, new Expressions]
]
# Throw an exception object.