Index: src/typing.cc |
diff --git a/src/typing.cc b/src/typing.cc |
index fcf5f5a00808bc33876f6a8c23e181fe7cc6dfaf..3193f7ad8e76af2b3646c5021657274620d8b07c 100644 |
--- a/src/typing.cc |
+++ b/src/typing.cc |
@@ -18,6 +18,7 @@ namespace internal { |
AstTyper::AstTyper(Isolate* isolate, Zone* zone, Handle<JSFunction> closure, |
Scope* scope, BailoutId osr_ast_id, FunctionLiteral* root) |
: isolate_(isolate), |
+ zone_(zone), |
closure_(closure), |
scope_(scope), |
osr_ast_id_(osr_ast_id), |
@@ -26,7 +27,7 @@ AstTyper::AstTyper(Isolate* isolate, Zone* zone, Handle<JSFunction> closure, |
handle(closure->shared()->feedback_vector()), |
handle(closure->context()->native_context())), |
store_(zone) { |
- InitializeAstVisitor(isolate, zone); |
+ InitializeAstVisitor(isolate); |
} |