Index: lib/compiler/implementation/scanner/token.dart |
diff --git a/lib/compiler/implementation/scanner/token.dart b/lib/compiler/implementation/scanner/token.dart |
index 0e10e0ff37654e23488a67f7cd3045f497d340e3..b34da91203a7e7133ae33c724b7d89eac8fcb42d 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++); |
} |