Chromium Code Reviews| Index: runtime/lib/regexp.dart |
| =================================================================== |
| --- runtime/lib/regexp.dart (revision 486) |
| +++ runtime/lib/regexp.dart (working copy) |
| @@ -64,7 +64,7 @@ |
| } |
| Iterable<Match> allMatches(String str) { |
| - var jsregexMatches = new GrowableObjectArray<JSRegExpMatch>(); |
| + var jsregexMatches = new List<JSRegExpMatch>(); |
| List match = _ExecuteMatch(str, 0); |
| if (match !== null) { |
| jsregexMatches.add(new JSRegExpMatch(this, str, match)); |