| Index: lib/compiler/implementation/lib/coreimpl_patch.dart
|
| diff --git a/lib/compiler/implementation/lib/coreimpl_patch.dart b/lib/compiler/implementation/lib/coreimpl_patch.dart
|
| index 21acf728155f895cc65e7a322770904cd0d3b987..477749b85e27fe35d31654882f4b3a5537bf27d9 100644
|
| --- a/lib/compiler/implementation/lib/coreimpl_patch.dart
|
| +++ b/lib/compiler/implementation/lib/coreimpl_patch.dart
|
| @@ -146,8 +146,8 @@ patch class JSSyntaxRegExp {
|
| final bool _ignoreCase;
|
|
|
| patch const JSSyntaxRegExp(String pattern,
|
| - [bool multiLine = false,
|
| - bool ignoreCase = false])
|
| + {bool multiLine: false,
|
| + bool ignoreCase: false})
|
| : _pattern = pattern,
|
| _multiLine = multiLine,
|
| _ignoreCase = ignoreCase;
|
| @@ -179,8 +179,8 @@ patch class JSSyntaxRegExp {
|
|
|
| static JSSyntaxRegExp _globalVersionOf(JSSyntaxRegExp other) {
|
| JSSyntaxRegExp re = new JSSyntaxRegExp(other.pattern,
|
| - other.multiLine,
|
| - other.ignoreCase);
|
| + multiLine: other.multiLine,
|
| + ignoreCase: other.ignoreCase);
|
| regExpAttachGlobalNative(re);
|
| return re;
|
| }
|
|
|