Revision: 2589 Author: [email protected] Date: Thu Jul 30 05:25:24 2009 Log: Fix broken test compilation.
[email protected] Review URL: http://codereview.chromium.org/160389 http://code.google.com/p/v8/source/detail?r=2589 Modified: /branches/bleeding_edge/test/cctest/test-ast.cc ======================================= --- /branches/bleeding_edge/test/cctest/test-ast.cc Mon Mar 16 00:53:20 2009 +++ /branches/bleeding_edge/test/cctest/test-ast.cc Thu Jul 30 05:25:24 2009 @@ -35,11 +35,11 @@ using namespace v8::internal; TEST(List) { - List<Node*>* list = new List<Node*>(0); + List<AstNode*>* list = new List<AstNode*>(0); CHECK_EQ(0, list->length()); ZoneScope zone_scope(DELETE_ON_EXIT); - Node* node = new EmptyStatement(); + AstNode* node = new EmptyStatement(); list->Add(node); CHECK_EQ(1, list->length()); CHECK_EQ(node, list->at(0)); --~--~---------~--~----~------------~-------~--~----~ v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev -~----------~----~----~----~------~----~------~--~---
