| Index: pkg/front_end/lib/src/scanner/errors.dart
|
| diff --git a/pkg/front_end/lib/src/scanner/errors.dart b/pkg/front_end/lib/src/scanner/errors.dart
|
| index 6374f842b4c8c8ee59d508741b7362dea113d408..fb845ddb74576bb47a0dcccbafe1113de81cbfd5 100644
|
| --- a/pkg/front_end/lib/src/scanner/errors.dart
|
| +++ b/pkg/front_end/lib/src/scanner/errors.dart
|
| @@ -140,7 +140,7 @@ bool _isAtEnd(Token token, int charOffset) {
|
| if (token.isEof) return token.charOffset == charOffset;
|
| // If we've found a non-error token, then we know there is additional input
|
| // text after [charOffset].
|
| - if (token.info.kind != BAD_INPUT_TOKEN) return false;
|
| + if (token.type.kind != BAD_INPUT_TOKEN) return false;
|
| // Otherwise keep looking.
|
| }
|
| }
|
|
|