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; |
} |