Index: src/runtime/runtime-regexp.cc |
diff --git a/src/runtime/runtime-regexp.cc b/src/runtime/runtime-regexp.cc |
index 7774928518ea865f75b7809414b7fee14f9e9de5..b5b05f185a559b0f1cdad79e30d2d24aaed06ff1 100644 |
--- a/src/runtime/runtime-regexp.cc |
+++ b/src/runtime/runtime-regexp.cc |
@@ -381,7 +381,7 @@ |
} |
namespace { |
-List<int>* GetRewoundRegexpIndicesList(Isolate* isolate) { |
+List<int>* GetRewindedRegexpIndicesList(Isolate* isolate) { |
List<int>* list = isolate->regexp_indices(); |
list->Rewind(0); |
return list; |
@@ -404,7 +404,7 @@ |
DCHECK(subject->IsFlat()); |
DCHECK(replacement->IsFlat()); |
- List<int>* indices = GetRewoundRegexpIndicesList(isolate); |
+ List<int>* indices = GetRewindedRegexpIndicesList(isolate); |
DCHECK_EQ(JSRegExp::ATOM, pattern_regexp->TypeTag()); |
String* pattern = |
@@ -721,7 +721,7 @@ |
subject = String::Flatten(subject); |
pattern = String::Flatten(pattern); |
- List<int>* indices = GetRewoundRegexpIndicesList(isolate); |
+ List<int>* indices = GetRewindedRegexpIndicesList(isolate); |
FindStringIndicesDispatch(isolate, *subject, *pattern, indices, limit); |