Index: src/ast.h |
diff --git a/src/ast.h b/src/ast.h |
index 906862d56d296f217e133527507e7c3102bafc1d..0c6d2138fd97aa143cd3eac94b81a5226b537b9a 100644 |
--- a/src/ast.h |
+++ b/src/ast.h |
@@ -3190,14 +3190,11 @@ class AstVisitor BASE_EMBEDDED { |
} \ |
\ |
private: \ |
- void InitializeAstVisitor(Isolate* isolate, Zone* zone) { \ |
- zone_ = zone; \ |
+ void InitializeAstVisitor(Isolate* isolate) { \ |
stack_limit_ = isolate->stack_guard()->real_climit(); \ |
stack_overflow_ = false; \ |
} \ |
- Zone* zone() { return zone_; } \ |
\ |
- Zone* zone_; \ |
uintptr_t stack_limit_; \ |
bool stack_overflow_ |