Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(319)

Unified Diff: src/ast/prettyprinter.h

Issue 2028983002: Introduce IsUndefined(Isolate*) and IsTheHole(Isolate*) (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: rebase master Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/ast/ast.cc ('k') | src/ast/prettyprinter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ast/prettyprinter.h
diff --git a/src/ast/prettyprinter.h b/src/ast/prettyprinter.h
index 4e90294ca987a9d4b707fb8519608671613219ae..bb36c2bd90828d214896f43093c15a0baf619155 100644
--- a/src/ast/prettyprinter.h
+++ b/src/ast/prettyprinter.h
@@ -32,6 +32,7 @@ class CallPrinter : public AstVisitor {
private:
void Init();
+ Isolate* isolate_;
char* output_; // output string buffer
int size_; // output_ size
int pos_; // current printing position
@@ -74,6 +75,7 @@ class PrettyPrinter: public AstVisitor {
#undef DECLARE_VISIT
private:
+ Isolate* isolate_;
char* output_; // output string buffer
int size_; // output_ size
int pos_; // current printing position
« no previous file with comments | « src/ast/ast.cc ('k') | src/ast/prettyprinter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698