| Index: src/ast/prettyprinter.h
|
| diff --git a/src/ast/prettyprinter.h b/src/ast/prettyprinter.h
|
| index 2d553babde05659bd65108f21bbe4194bdd90fe1..bde64ecc48a1720ac66352064f7f462027ecd7fe 100644
|
| --- a/src/ast/prettyprinter.h
|
| +++ b/src/ast/prettyprinter.h
|
| @@ -45,7 +45,7 @@ class CallPrinter final : public AstVisitor<CallPrinter> {
|
| protected:
|
| void PrintLiteral(Handle<Object> value, bool quote);
|
| void PrintLiteral(const AstRawString* value, bool quote);
|
| - void FindStatements(ZoneList<Statement*>* statements);
|
| + void FindStatements(ZoneChunkList<Statement*>* statements);
|
| void FindArguments(ZoneList<Expression*>* arguments);
|
| };
|
|
|
| @@ -83,7 +83,7 @@ class AstPrinter final : public AstVisitor<AstPrinter> {
|
| void PrintIndented(const char* txt);
|
| void PrintIndentedVisit(const char* s, AstNode* node);
|
|
|
| - void PrintStatements(ZoneList<Statement*>* statements);
|
| + void PrintStatements(ZoneChunkList<Statement*>* statements);
|
| void PrintDeclarations(ZoneList<Declaration*>* declarations);
|
| void PrintParameters(DeclarationScope* scope);
|
| void PrintArguments(ZoneList<Expression*>* arguments);
|
|
|