| Index: lib/compiler/implementation/scanner/string_scanner.dart
|
| diff --git a/lib/compiler/implementation/scanner/string_scanner.dart b/lib/compiler/implementation/scanner/string_scanner.dart
|
| index 2f295abf39edb08f4315e72072c2f51e8a3519f4..d45e7ff06b9168b2fa95f9f1a356031a6e68b309 100644
|
| --- a/lib/compiler/implementation/scanner/string_scanner.dart
|
| +++ b/lib/compiler/implementation/scanner/string_scanner.dart
|
| @@ -9,7 +9,8 @@
|
| class StringScanner extends ArrayBasedScanner<SourceString> {
|
| final String string;
|
|
|
| - StringScanner(String this.string) : super();
|
| + StringScanner(String this.string, [bool includeComments = false])
|
| + : super(includeComments);
|
|
|
| int nextByte() => charAt(++byteOffset);
|
|
|
|
|