Fix broken test compilation.
TBR=kasperl@chromium.org Review URL: http://codereview.chromium.org/160389 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@2589 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
parent
67936a7b16
commit
d8e35a098f
@ -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));
|
||||
|
Loading…
Reference in New Issue
Block a user