comparison trunk/src/dil/ast/Node.d @ 694:19a34b69cc7d

Renamed some members of BinaryExpression and QualifiedType. Added visit(TypeofType) to SemanticPass2.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Tue, 22 Jan 2008 20:56:10 +0100
parents c4e3a34e40f1
children 5e3ef1b2011c
comparison
equal deleted inserted replaced
693:56100b270897 694:19a34b69cc7d
14 14
15 class Node 15 class Node
16 { 16 {
17 NodeCategory category; 17 NodeCategory category;
18 NodeKind kind; 18 NodeKind kind;
19 Node[] children; 19 Node[] children; // Will be probably removed sometime.
20 Token* begin, end; 20 Token* begin, end;
21 21
22 this(NodeCategory category) 22 this(NodeCategory category)
23 { 23 {
24 assert(category != NodeCategory.Undefined); 24 assert(category != NodeCategory.Undefined);