comparison trunk/src/dil/Expressions.d @ 542:743b0390d20a

Fixed StringExpression constructor.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Wed, 19 Dec 2007 17:45:20 +0100
parents c0f5b1f78a55
children 57f5b08b8313
comparison
equal deleted inserted replaced
541:c0f5b1f78a55 542:743b0390d20a
862 { mixin(set_kind); } 862 { mixin(set_kind); }
863 863
864 /// Constructor used in parsing phase. 864 /// Constructor used in parsing phase.
865 this(Token*[] stringTokens) 865 this(Token*[] stringTokens)
866 { 866 {
867 this();
867 this.stringTokens = stringTokens; 868 this.stringTokens = stringTokens;
868 } 869 }
869 870
870 ubyte[] str; /// The string data. 871 ubyte[] str; /// The string data.
871 Type charType; /// The character type of the string. 872 Type charType; /// The character type of the string.