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(); |