| Index: runtime/lib/regexp_patch.dart
|
| diff --git a/runtime/lib/regexp_patch.dart b/runtime/lib/regexp_patch.dart
|
| index c705b4489b10c2183e02f170db24864561e2e5a6..f6167d992cb75149fe518accaf4de242b5e5a2c9 100644
|
| --- a/runtime/lib/regexp_patch.dart
|
| +++ b/runtime/lib/regexp_patch.dart
|
| @@ -108,13 +108,13 @@ patch class JSSyntaxRegExp {
|
| return str._substringUnchecked(match[0], match[1]);
|
| }
|
|
|
| - /* patch */ String get pattern() native "JSSyntaxRegExp_getPattern";
|
| + /* patch */ String get pattern native "JSSyntaxRegExp_getPattern";
|
|
|
| - /* patch */ bool get multiLine() native "JSSyntaxRegExp_multiLine";
|
| + /* patch */ bool get multiLine native "JSSyntaxRegExp_multiLine";
|
|
|
| - /* patch */ bool get ignoreCase() native "JSSyntaxRegExp_ignoreCase";
|
| + /* patch */ bool get ignoreCase native "JSSyntaxRegExp_ignoreCase";
|
|
|
| - int get _groupCount() native "JSSyntaxRegExp_getGroupCount";
|
| + int get _groupCount native "JSSyntaxRegExp_getGroupCount";
|
|
|
| List _ExecuteMatch(String str, int start_index)
|
| native "JSSyntaxRegExp_ExecuteMatch";
|
|
|