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

Unified Diff: src/jsregexp.cc

Issue 8635: Backreferences (Closed)
Patch Set: Added test case Created 12 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
Index: src/jsregexp.cc
diff --git a/src/jsregexp.cc b/src/jsregexp.cc
index bff754b01d9eee144156b466a1dfd2507b4ec445..30e4d7f813800adb01c04b7567f1f2c4fbe3095f 100644
--- a/src/jsregexp.cc
+++ b/src/jsregexp.cc
@@ -795,6 +795,14 @@ void* RegExpCompiler<Char>::VisitLookahead(RegExpLookahead* that,
template <typename Char>
+void* RegExpCompiler<Char>::VisitBackreference(RegExpBackreference* that,
+ void* rest) {
+ UNIMPLEMENTED();
+ return NULL;
+}
+
+
+template <typename Char>
void* RegExpCompiler<Char>::VisitEmpty(RegExpEmpty* that, void* rest) {
return rest;
}

Powered by Google App Engine
This is Rietveld 408576698