| Index: lib/coreimpl/regexp.dart
|
| diff --git a/lib/coreimpl/regexp.dart b/lib/coreimpl/regexp.dart
|
| index e1caf29beb89da9127143f73c33075fb1b88717a..86d5db106a549792317569600375b9afe56ae278 100644
|
| --- a/lib/coreimpl/regexp.dart
|
| +++ b/lib/coreimpl/regexp.dart
|
| @@ -4,7 +4,8 @@
|
|
|
| class JSSyntaxRegExp implements RegExp {
|
| external const JSSyntaxRegExp(String pattern,
|
| - [bool multiLine, bool ignoreCase]);
|
| + [bool multiLine = false,
|
| + bool ignoreCase = false]);
|
| external Match firstMatch(String str);
|
| external Iterable<Match> allMatches(String str);
|
| external bool hasMatch(String str);
|
|
|