Index: src/parsing/parser.h |
diff --git a/src/parsing/parser.h b/src/parsing/parser.h |
index 7fac2d4b504df0a72a1bf5e631c6e0f9c6b3946f..1f76f991bc15ca0e795f909e91df869bad4c4188 100644 |
--- a/src/parsing/parser.h |
+++ b/src/parsing/parser.h |
@@ -201,6 +201,8 @@ class V8_EXPORT_PRIVATE Parser : public NON_EXPORTED_BASE(ParserBase<Parser>) { |
cached_parse_data_ = NULL; |
} |
+ static bool const IsPreParser() { return false; } |
+ |
// Parses the source code represented by the compilation info and sets its |
// function literal. Returns false (and deallocates any allocated AST |
// nodes) if parsing failed. |
@@ -1148,7 +1150,6 @@ class V8_EXPORT_PRIVATE Parser : public NON_EXPORTED_BASE(ParserBase<Parser>) { |
// parsing. |
int use_counts_[v8::Isolate::kUseCounterFeatureCount]; |
int total_preparse_skipped_; |
- |
bool parsing_on_main_thread_; |
ParserLogger* log_; |
}; |