Chromium Code Reviews| Index: compiler/java/com/google/dart/compiler/parser/DartParser.java |
| diff --git a/compiler/java/com/google/dart/compiler/parser/DartParser.java b/compiler/java/com/google/dart/compiler/parser/DartParser.java |
| index 3e414d016fbdf91d61a53fa595d21320ba9d6947..924902cbd634c1e92506a4053a9fdc026240ab0e 100644 |
| --- a/compiler/java/com/google/dart/compiler/parser/DartParser.java |
| +++ b/compiler/java/com/google/dart/compiler/parser/DartParser.java |
| @@ -2298,6 +2298,7 @@ public class DartParser extends CompletionHooksParserBase { |
| DartExpression expression = tryParseAssignableSelector(receiver); |
| if (expression == null) { |
| reportError(position(), DartCompilerErrorCode.EXPECTED_PERIOD_OR_LEFT_BRACKET); |
| + expression = receiver; |
|
jat
2011/10/13 20:24:08
You should get one of the IDE guys to sign off on
codefu
2011/10/13 20:29:16
Steve is on the reviewers list.
|
| } |
| return expression; |
| } |