| Index: lib/compiler/implementation/scanner/partial_parser.dart
|
| diff --git a/lib/compiler/implementation/scanner/partial_parser.dart b/lib/compiler/implementation/scanner/partial_parser.dart
|
| index 9777c6ff0a7e3ef0c4484d3e5ef7996c0cc5eaf4..65bc5614400e89ff4e1434bf2d935a415ea17774 100644
|
| --- a/lib/compiler/implementation/scanner/partial_parser.dart
|
| +++ b/lib/compiler/implementation/scanner/partial_parser.dart
|
| @@ -16,7 +16,8 @@ class PartialParser extends Parser {
|
| // 1. Avoid generating events for arguments.
|
| // 2. Avoid calling skip expression for each argument (which doesn't work).
|
| if (optional('(', token)) {
|
| - return token.endGroup.next;
|
| + BeginGroupToken begin = token;
|
| + return begin.endGroup.next;
|
| } else {
|
| return token;
|
| }
|
|
|