| Index: compiler/java/com/google/dart/compiler/parser/DartParser.java
|
| ===================================================================
|
| --- compiler/java/com/google/dart/compiler/parser/DartParser.java (revision 11640)
|
| +++ compiler/java/com/google/dart/compiler/parser/DartParser.java (working copy)
|
| @@ -4771,8 +4771,7 @@
|
| if (peekPseudoKeyword(0, ON_KEYWORD)) {
|
| beginCatchClause();
|
| next();
|
| - beginTypeAnnotation();
|
| - DartTypeNode exceptionType = done(new DartTypeNode(parseQualified(false)));
|
| + DartTypeNode exceptionType = parseTypeAnnotation();
|
| DartParameter exception = null;
|
| DartParameter stackTrace = null;
|
| if (optional(Token.CATCH)) {
|
|
|