changeset 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 4ae7b13aaac8
files trunk/src/dil/ast/Expressions.d
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
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;
   }
 }