diff 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
line wrap: on
line diff
--- a/trunk/src/dil/ast/Node.d	Tue Jan 22 19:34:58 2008 +0100
+++ b/trunk/src/dil/ast/Node.d	Tue Jan 22 20:56:10 2008 +0100
@@ -16,7 +16,7 @@
 {
   NodeCategory category;
   NodeKind kind;
-  Node[] children;
+  Node[] children; // Will be probably removed sometime.
   Token* begin, end;
 
   this(NodeCategory category)