| Index: src/typing.h
|
| diff --git a/src/typing.h b/src/typing.h
|
| index 2f67c3b2de6ca2359f6aafea3580cbef313751f9..93e78c776825b3215df8ce2095b6de015aabdc5a 100644
|
| --- a/src/typing.h
|
| +++ b/src/typing.h
|
| @@ -34,6 +34,7 @@ class AstTyper: public AstVisitor {
|
| typedef v8::internal::NestedEffects<int, kNoVar> Store;
|
|
|
| Isolate* isolate_;
|
| + Zone* zone_;
|
| Handle<JSFunction> closure_;
|
| Scope* scope_;
|
| BailoutId osr_ast_id_;
|
| @@ -41,6 +42,7 @@ class AstTyper: public AstVisitor {
|
| TypeFeedbackOracle oracle_;
|
| Store store_;
|
|
|
| + Zone* zone() const { return zone_; }
|
| TypeFeedbackOracle* oracle() { return &oracle_; }
|
|
|
| void NarrowType(Expression* e, Bounds b) {
|
|
|