| Index: runtime/lib/regexp_patch.dart
|
| ===================================================================
|
| --- runtime/lib/regexp_patch.dart (revision 11257)
|
| +++ runtime/lib/regexp_patch.dart (working copy)
|
| @@ -31,7 +31,7 @@
|
| assert(endIndex == -1);
|
| return null;
|
| }
|
| - return str.substringUnchecked_(startIndex, endIndex);
|
| + return str._substringUnchecked(startIndex, endIndex);
|
| }
|
|
|
| String operator [](int groupIdx) {
|
| @@ -105,7 +105,7 @@
|
| if (match === null) {
|
| return null;
|
| }
|
| - return str.substringUnchecked_(match[0], match[1]);
|
| + return str._substringUnchecked(match[0], match[1]);
|
| }
|
|
|
| /* patch */ String get pattern() native "JSSyntaxRegExp_getPattern";
|
|
|