diff trunk/src/dil/ast/Expressions.d @ 647:6a1cb6768bd2

Fixed ctor of ParenExpression.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Mon, 14 Jan 2008 21:16:36 +0100
parents 68953760d569
children 29cc5bf3ce89
line wrap: on
line diff
--- a/trunk/src/dil/ast/Expressions.d	Mon Jan 14 17:21:45 2008 +0100
+++ b/trunk/src/dil/ast/Expressions.d	Mon Jan 14 21:16:36 2008 +0100
@@ -933,6 +933,7 @@
   this(Expression next)
   {
     mixin(set_kind);
+    addChild(next);
     this.next = next;
   }
 }