Exemple #1
0
 public SortParserResultExpression(string name, SortParserResultOperator @operator) : this(name)
 {
     this.Operator = @operator;
 }
Exemple #2
0
 public SortParserResultExpression(string name, SortParserResultOperator @operator, ISortParserResultExpression child) : this(name, @operator)
 {
     this.Child = child;
 }
Exemple #3
0
 public SortParserResultExpression(SortParserResultOperator @operator)
 {
     this.Operator = @operator;
 }