| Index: lib/compiler/implementation/scanner/token.dart
|
| diff --git a/lib/compiler/implementation/scanner/token.dart b/lib/compiler/implementation/scanner/token.dart
|
| index 99055fed481cbc723d4e56360f793c919bc0e659..69b6ccf0206f9ebf2d08721980b7266f8bb19e06 100644
|
| --- a/lib/compiler/implementation/scanner/token.dart
|
| +++ b/lib/compiler/implementation/scanner/token.dart
|
| @@ -243,7 +243,7 @@ class StringCodeIterator implements Iterator<int> {
|
| assert(end <= string.length);
|
| }
|
|
|
| - bool hasNext() => index < end;
|
| + bool get hasNext => index < end;
|
| int next() => string.charCodeAt(index++);
|
| }
|
|
|
|
|