diff options
Diffstat (limited to 'deps/v8/src/prettyprinter.h')
-rw-r--r-- | deps/v8/src/prettyprinter.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/deps/v8/src/prettyprinter.h b/deps/v8/src/prettyprinter.h index b7ff2af5fa..a792720fe8 100644 --- a/deps/v8/src/prettyprinter.h +++ b/deps/v8/src/prettyprinter.h @@ -38,7 +38,7 @@ namespace internal { class PrettyPrinter: public AstVisitor { public: - explicit PrettyPrinter(Isolate* isolate); + explicit PrettyPrinter(Zone* zone); virtual ~PrettyPrinter(); // The following routines print a node into a string. @@ -50,7 +50,7 @@ class PrettyPrinter: public AstVisitor { void Print(const char* format, ...); // Print a node to stdout. - static void PrintOut(Isolate* isolate, AstNode* node); + static void PrintOut(Zone* zone, AstNode* node); // Individual nodes #define DECLARE_VISIT(type) virtual void Visit##type(type* node); @@ -82,7 +82,7 @@ class PrettyPrinter: public AstVisitor { // Prints the AST structure class AstPrinter: public PrettyPrinter { public: - explicit AstPrinter(Isolate* isolate); + explicit AstPrinter(Zone* zone); virtual ~AstPrinter(); const char* PrintProgram(FunctionLiteral* program); |