Index: lib/compiler/implementation/scanner/byte_strings.dart |
diff --git a/lib/compiler/implementation/scanner/byte_strings.dart b/lib/compiler/implementation/scanner/byte_strings.dart |
index 157c5012b56dc023f715ee5e57ed29db3d4f7a4d..f0b385a6326306877f00fba2ef44606de599909f 100644 |
--- a/lib/compiler/implementation/scanner/byte_strings.dart |
+++ b/lib/compiler/implementation/scanner/byte_strings.dart |
@@ -46,8 +46,8 @@ class ByteString implements SourceString { |
sb.add(slowToString()); |
} |
- bool isEmpty() => length == 0; |
- bool isPrivate() => !isEmpty() && identical(bytes[offset], $_); |
+ bool get isEmpty => length == 0; |
+ bool isPrivate() => !isEmpty && identical(bytes[offset], $_); |
String get stringValue => null; |
} |