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

Unified Diff: test/cctest/expression-type-collector.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 | « test/cctest/expression-type-collector.h ('k') | test/cctest/test-asm-validator.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/cctest/expression-type-collector.cc
diff --git a/test/cctest/expression-type-collector.cc b/test/cctest/expression-type-collector.cc
index d3fa3e897314eeb8590edff90aa0880366717ce9..bf2d10f3061cc8e0a4d5e801d457aaea8dd5ebe1 100644
--- a/test/cctest/expression-type-collector.cc
+++ b/test/cctest/expression-type-collector.cc
@@ -29,9 +29,9 @@ struct {
ExpressionTypeCollector::ExpressionTypeCollector(
- Isolate* isolate, Zone* zone, FunctionLiteral* root,
+ Isolate* isolate, FunctionLiteral* root,
ZoneVector<ExpressionTypeEntry>* dst)
- : AstExpressionVisitor(isolate, zone, root), result_(dst) {}
+ : AstExpressionVisitor(isolate, root), result_(dst) {}
void ExpressionTypeCollector::Run() {
« no previous file with comments | « test/cctest/expression-type-collector.h ('k') | test/cctest/test-asm-validator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698