OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 #include "platform/assert.h" | 5 #include "platform/assert.h" |
6 #include "vm/ast.h" | 6 #include "vm/ast.h" |
7 #include "vm/heap.h" | 7 #include "vm/heap.h" |
8 #include "vm/isolate.h" | 8 #include "vm/isolate.h" |
9 #include "vm/object.h" | 9 #include "vm/object.h" |
10 #include "vm/object_store.h" | 10 #include "vm/object_store.h" |
11 #include "vm/unit_test.h" | 11 #include "vm/unit_test.h" |
12 | 12 |
13 namespace dart { | 13 namespace dart { |
14 | 14 |
15 TEST_CASE(Ast) { | 15 TEST_CASE(Ast) { |
16 LocalVariable* v = new LocalVariable(Token::kNoSourcePos, | 16 LocalVariable* v = new LocalVariable(TokenPosition::kNoSource, |
17 String::ZoneHandle(Symbols::New("v")), | 17 String::ZoneHandle(Symbols::New("v")), |
18 Type::ZoneHandle(Type::DynamicType())); | 18 Type::ZoneHandle(Type::DynamicType())); |
19 AstNode* ll = new LoadLocalNode(Token::kNoSourcePos, v); | 19 AstNode* ll = new LoadLocalNode(TokenPosition::kNoSource, v); |
20 EXPECT(ll->IsLoadLocalNode()); | 20 EXPECT(ll->IsLoadLocalNode()); |
21 EXPECT(!ll->IsLiteralNode()); | 21 EXPECT(!ll->IsLiteralNode()); |
22 LoadLocalNode* lln = ll->AsLoadLocalNode(); | 22 LoadLocalNode* lln = ll->AsLoadLocalNode(); |
23 EXPECT(NULL != lln); | 23 EXPECT(NULL != lln); |
24 v->set_index(1); | 24 v->set_index(1); |
25 EXPECT_EQ(1, v->index()); | 25 EXPECT_EQ(1, v->index()); |
26 | 26 |
27 LocalVariable* p = new LocalVariable(Token::kNoSourcePos, | 27 LocalVariable* p = new LocalVariable(TokenPosition::kNoSource, |
28 String::ZoneHandle(Symbols::New("p")), | 28 String::ZoneHandle(Symbols::New("p")), |
29 Type::ZoneHandle(Type::DynamicType())); | 29 Type::ZoneHandle(Type::DynamicType())); |
30 EXPECT(!p->HasIndex()); | 30 EXPECT(!p->HasIndex()); |
31 p->set_index(-1); | 31 p->set_index(-1); |
32 EXPECT(p->HasIndex()); | 32 EXPECT(p->HasIndex()); |
33 EXPECT_EQ(-1, p->index()); | 33 EXPECT_EQ(-1, p->index()); |
34 | 34 |
35 ReturnNode* r = new ReturnNode(Token::kNoSourcePos, lln); | 35 ReturnNode* r = new ReturnNode(TokenPosition::kNoSource, lln); |
36 EXPECT_EQ(lln, r->value()); | 36 EXPECT_EQ(lln, r->value()); |
37 | 37 |
38 LiteralNode* l = | 38 LiteralNode* l = new LiteralNode(TokenPosition::kNoSource, |
39 new LiteralNode(Token::kNoSourcePos, Smi::ZoneHandle(Smi::New(3))); | 39 Smi::ZoneHandle(Smi::New(3))); |
40 EXPECT(l->literal().IsSmi()); | 40 EXPECT(l->literal().IsSmi()); |
41 EXPECT_EQ(Smi::New(3), l->literal().raw()); | 41 EXPECT_EQ(Smi::New(3), l->literal().raw()); |
42 | 42 |
43 BinaryOpNode* b = | 43 BinaryOpNode* b = |
44 new BinaryOpNode(Token::kNoSourcePos, Token::kADD, l, lln); | 44 new BinaryOpNode(TokenPosition::kNoSource, Token::kADD, l, lln); |
45 EXPECT_EQ(Token::kADD, b->kind()); | 45 EXPECT_EQ(Token::kADD, b->kind()); |
46 EXPECT_EQ(l, b->left()); | 46 EXPECT_EQ(l, b->left()); |
47 EXPECT_EQ(lln, b->right()); | 47 EXPECT_EQ(lln, b->right()); |
48 | 48 |
49 UnaryOpNode* u = | 49 UnaryOpNode* u = |
50 new UnaryOpNode(Token::kNoSourcePos, Token::kNEGATE, b); | 50 new UnaryOpNode(TokenPosition::kNoSource, Token::kNEGATE, b); |
51 EXPECT_EQ(Token::kNEGATE, u->kind()); | 51 EXPECT_EQ(Token::kNEGATE, u->kind()); |
52 EXPECT_EQ(b, u->operand()); | 52 EXPECT_EQ(b, u->operand()); |
53 | 53 |
54 SequenceNode* sequence_node = new SequenceNode(1, new LocalScope(NULL, 0, 0)); | 54 SequenceNode* sequence_node = |
55 LiteralNode* literal_node = new LiteralNode(2, Smi::ZoneHandle(Smi::New(3))); | 55 new SequenceNode(TokenPosition(1), new LocalScope(NULL, 0, 0)); |
56 ReturnNode* return_node = new ReturnNode(3, literal_node); | 56 LiteralNode* literal_node = |
| 57 new LiteralNode(TokenPosition(2), Smi::ZoneHandle(Smi::New(3))); |
| 58 ReturnNode* return_node = |
| 59 new ReturnNode(TokenPosition(3), literal_node); |
57 sequence_node->Add(return_node); | 60 sequence_node->Add(return_node); |
58 GrowableArray<AstNode*> nodes; | 61 GrowableArray<AstNode*> nodes; |
59 sequence_node->CollectAllNodes(&nodes); | 62 sequence_node->CollectAllNodes(&nodes); |
60 EXPECT_EQ(3, nodes.length()); | 63 EXPECT_EQ(3, nodes.length()); |
61 } | 64 } |
62 | 65 |
63 } // namespace dart | 66 } // namespace dart |
OLD | NEW |