| Index: lib/compiler/implementation/scanner/byte_array_scanner.dart
|
| diff --git a/lib/compiler/implementation/scanner/byte_array_scanner.dart b/lib/compiler/implementation/scanner/byte_array_scanner.dart
|
| index cdc7248e5e14204564fef0206a8b0fc8800185e0..e9e10e3a9f8d490afa65d445a6d56dc633e01206 100644
|
| --- a/lib/compiler/implementation/scanner/byte_array_scanner.dart
|
| +++ b/lib/compiler/implementation/scanner/byte_array_scanner.dart
|
| @@ -9,7 +9,7 @@
|
| class ByteArrayScanner extends ArrayBasedScanner<ByteString> {
|
| final List<int> bytes;
|
|
|
| - ByteArrayScanner(List<int> this.bytes) : super();
|
| + ByteArrayScanner(List<int> this.bytes, [bool includeComments = false]) : super(includeComments);
|
|
|
| int nextByte() => byteAt(++byteOffset);
|
|
|
|
|