diff trunk/src/dil/ast/Types.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 8e38774d562b
children 65ad2f96df1f
line wrap: on
line diff
--- a/trunk/src/dil/ast/Types.d	Tue Jan 22 19:34:58 2008 +0100
+++ b/trunk/src/dil/ast/Types.d	Tue Jan 22 20:56:10 2008 +0100
@@ -64,14 +64,14 @@
 /// Type "." Type
 class QualifiedType : TypeNode
 {
-  alias next left;
-  TypeNode right;
-  this(TypeNode left, TypeNode right)
+  alias next lhs; /// Left-hand side type.
+  TypeNode rhs; /// Right-hand side type.
+  this(TypeNode lhs, TypeNode rhs)
   {
-    super(left);
+    super(lhs);
     mixin(set_kind);
-    addChild(right);
-    this.right = right;
+    addChild(rhs);
+    this.rhs = rhs;
   }
 }