comparison trunk/src/dil/Expressions.d @ 488:cfb3805768b6

Added DotExpression and DotType.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Sat, 01 Dec 2007 21:42:24 +0100
parents bd176bc73e43
children a7291d3ee9d7
comparison
equal deleted inserted replaced
487:bccca748d745 488:cfb3805768b6
602 { 602 {
603 this.identList = identList; 603 this.identList = identList;
604 } 604 }
605 } 605 }
606 */ 606 */
607
608 class DotExpression : Expression
609 {
610 this()
611 {
612 mixin(set_kind);
613 }
614 }
615
607 class DotListExpression : Expression 616 class DotListExpression : Expression
608 { 617 {
609 Expression[] items; 618 Expression[] items;
610 this(Expression[] items) 619 this(Expression[] items)
611 { 620 {