| Index: runtime/lib/regexp_patch.dart
|
| diff --git a/runtime/lib/regexp_patch.dart b/runtime/lib/regexp_patch.dart
|
| index f6167d992cb75149fe518accaf4de242b5e5a2c9..92acb79d571c080b000355e39e5041fa0adc7fdd 100644
|
| --- a/runtime/lib/regexp_patch.dart
|
| +++ b/runtime/lib/regexp_patch.dart
|
| @@ -62,8 +62,8 @@ class _JSRegExpMatch implements Match {
|
| patch class JSSyntaxRegExp {
|
| /* patch */ const factory JSSyntaxRegExp(
|
| String pattern,
|
| - [bool multiLine = false,
|
| - bool ignoreCase = false]) native "JSSyntaxRegExp_factory";
|
| + {bool multiLine: false,
|
| + bool ignoreCase: false}) native "JSSyntaxRegExp_factory";
|
|
|
| /* patch */ Match firstMatch(String str) {
|
| List match = _ExecuteMatch(str, 0);
|
|
|