Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(140)

Unified Diff: src/regexp/regexp-utils.cc

Issue 2415073002: [regexp] Fix fallback path in RegExpExec (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | test/mjsunit/regexp-regexpexec.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/regexp/regexp-utils.cc
diff --git a/src/regexp/regexp-utils.cc b/src/regexp/regexp-utils.cc
index 8de904b72b7883192463c502a2c56d1245c285ca..963bb68b7f9749ac47893415352afcad6b2da6ed 100644
--- a/src/regexp/regexp-utils.cc
+++ b/src/regexp/regexp-utils.cc
@@ -154,7 +154,7 @@ MaybeHandle<Object> RegExpUtils::RegExpExec(Isolate* isolate,
ScopedVector<Handle<Object>> argv(argc);
argv[0] = string;
- return Execution::Call(isolate, exec, regexp_exec, argc, argv.start());
+ return Execution::Call(isolate, regexp_exec, regexp, argc, argv.start());
}
}
« no previous file with comments | « no previous file | test/mjsunit/regexp-regexpexec.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698