Index: test/cctest/test-parsing.cc |
diff --git a/test/cctest/test-parsing.cc b/test/cctest/test-parsing.cc |
index 3556c649f11bcc9bfef78dbc70d1210749e22f97..ccad02598b11629e2d0da7be09f6f661e185cbbe 100644 |
--- a/test/cctest/test-parsing.cc |
+++ b/test/cctest/test-parsing.cc |
@@ -31,6 +31,8 @@ |
#include "src/v8.h" |
+#include "src/ast.h" |
+#include "src/ast-numbering.h" |
#include "src/ast-value-factory.h" |
#include "src/compiler.h" |
#include "src/execution.h" |
@@ -3158,6 +3160,7 @@ TEST(InnerAssignment) { |
CHECK(parser.Parse()); |
CHECK(i::Rewriter::Rewrite(&info)); |
CHECK(i::Scope::Analyze(&info)); |
+ CHECK(i::AstNumbering::Renumber(info.function(), info.zone())); |
CHECK(info.function() != NULL); |
i::Scope* scope = info.function()->scope(); |