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

Unified Diff: src/typing.cc

Issue 1394303008: Remove unused Zone argument from InitializeAstVisitor (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix cctests Created 5 years, 2 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/typing.h ('k') | src/typing-asm.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
}
« no previous file with comments | « src/typing.h ('k') | src/typing-asm.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698