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 b417d336e2b23220048ba3aeaa43ff8984a202de..79d3c8db6fd44449719ab0db5b52b6a429a00d87 100644 |
--- a/lib/compiler/implementation/scanner/byte_strings.dart |
+++ b/lib/compiler/implementation/scanner/byte_strings.dart |
@@ -13,7 +13,7 @@ class ByteString implements SourceString { |
ByteString(List<int> this.bytes, int this.offset, int this.length); |
- abstract String get charset(); |
+ abstract String get charset; |
String slowToString() => new String.fromCharCodes( |
new Utf8Decoder(bytes, offset, length).decodeRest()); |