public ConcatElement(StringLiteral text, Sequence<Expression> expressionList)
 {
     this.text = text;
     this.expressionList = expressionList;
 }
Example #2
0
 public ConcatElement(StringLiteral text, Sequence <Expression> expressionList)
 {
     this.text           = text;
     this.expressionList = expressionList;
 }
 public ConcatElement(StringLiteral text)
     : this(text, null)
 {
 }
Example #4
0
 public ConcatElement(StringLiteral text) : this(text, null)
 {
 }