Index: src/parsing/preparser.h |
diff --git a/src/parsing/preparser.h b/src/parsing/preparser.h |
index f118139706da1c3d05379521a2e723495ff21435..2fb603564aefc3c3762a5643e83d963d2a2b951a 100644 |
--- a/src/parsing/preparser.h |
+++ b/src/parsing/preparser.h |
@@ -759,6 +759,12 @@ class PreParserFactory { |
return PreParserStatement::Default(); |
} |
+ PreParserExpression NewCallRuntime(Runtime::FunctionId id, |
+ ZoneList<PreParserExpression>* arguments, |
+ int pos) { |
+ return PreParserExpression::Default(); |
+ } |
+ |
// Return the object itself as AstVisitor and implement the needed |
// dummy method right in this class. |
PreParserFactory* visitor() { return this; } |