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

Unified Diff: test/cctest/expression-type-collector.cc

Issue 1318823010: Eliminate use of CompilationInfo in several AstVisitor descendants. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: revised Created 5 years, 4 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 b64638b8e0b9b16e9bef2e5ebd2578e52cc85bae..9ab85edf82c8087df2922b44a718d4871859ef50 100644
--- a/test/cctest/expression-type-collector.cc
+++ b/test/cctest/expression-type-collector.cc
@@ -28,8 +28,9 @@ struct {
ExpressionTypeCollector::ExpressionTypeCollector(
- CompilationInfo* info, ZoneVector<ExpressionTypeEntry>* dst)
- : AstExpressionVisitor(info), result_(dst) {}
+ Isolate* isolate, Zone* zone, FunctionLiteral* root,
+ ZoneVector<ExpressionTypeEntry>* dst)
+ : AstExpressionVisitor(isolate, zone, 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