# HG changeset patch # User Aziz K?ksal # Date 1200341796 -3600 # Node ID 6a1cb6768bd2af1e222695765e1491fb625845aa # Parent 68953760d569171ff8c6fd9f6da95da6325cbb60 Fixed ctor of ParenExpression. diff -r 68953760d569 -r 6a1cb6768bd2 trunk/src/dil/ast/Expressions.d --- 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; } }