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

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

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 | « src/typing-reset.cc ('k') | test/cctest/expression-type-collector.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/cctest/expression-type-collector.h
diff --git a/test/cctest/expression-type-collector.h b/test/cctest/expression-type-collector.h
index 4cf4e47e33676f884ef8e5de560726fc4bdd99b0..2175f5a0451262f26c1462c2280e09950626cb03 100644
--- a/test/cctest/expression-type-collector.h
+++ b/test/cctest/expression-type-collector.h
@@ -10,10 +10,9 @@
namespace v8 {
namespace internal {
-// A Visitor over a CompilationInfo's AST that collects
-// a human readable string summarizing structure and types.
-// Used for testing of the typing information attached to the
-// expression nodes of an AST.
+// A Visitor over an AST that collects a human readable string summarizing
+// structure and types. Used for testing of the typing information attached
+// to the expression nodes of an AST.
struct ExpressionTypeEntry {
int depth;
@@ -24,7 +23,7 @@ struct ExpressionTypeEntry {
class ExpressionTypeCollector : public AstExpressionVisitor {
public:
- ExpressionTypeCollector(CompilationInfo* info,
+ ExpressionTypeCollector(Isolate* isolate, Zone* zone, FunctionLiteral* root,
ZoneVector<ExpressionTypeEntry>* dst);
void Run();
« no previous file with comments | « src/typing-reset.cc ('k') | test/cctest/expression-type-collector.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698