| Index: src/parsing/parser.h
|
| diff --git a/src/parsing/parser.h b/src/parsing/parser.h
|
| index bc6f7044bac7c7d927f53adc32f14e201d4f2dd9..00075f46e142303e0fc4c6cdfeda2d2d64ef90ad 100644
|
| --- a/src/parsing/parser.h
|
| +++ b/src/parsing/parser.h
|
| @@ -134,7 +134,6 @@ class ParseData {
|
| // JAVASCRIPT PARSING
|
|
|
| class Parser;
|
| -class SingletonLogger;
|
|
|
|
|
| struct ParserFormalParameters : FormalParametersBase {
|
| @@ -523,7 +522,6 @@ class V8_EXPORT_PRIVATE Parser : public NON_EXPORTED_BASE(ParserBase<Parser>) {
|
|
|
| PreParser::PreParseResult ParseFunctionWithPreParser(FunctionKind kind,
|
| DeclarationScope* scope,
|
| - SingletonLogger* logger,
|
| bool is_inner_function,
|
| bool may_abort);
|
|
|
| @@ -1137,6 +1135,7 @@ class V8_EXPORT_PRIVATE Parser : public NON_EXPORTED_BASE(ParserBase<Parser>) {
|
| int total_preparse_skipped_;
|
|
|
| bool parsing_on_main_thread_;
|
| + ParserLogger* log_;
|
| };
|
|
|
| // ----------------------------------------------------------------------------
|
|
|