Пример #1
0
 public SucoToken(SucoTokenType type, int numericalValue, int startIndex, int endIndex) : this()
 {
     Type           = type;
     NumericalValue = numericalValue;
     StartIndex     = startIndex;
     EndIndex       = endIndex;
 }
Пример #2
0
 public SucoToken(SucoTokenType type, double decimalValue, int startIndex, int endIndex) : this()
 {
     Type         = type;
     DecimalValue = decimalValue;
     StartIndex   = startIndex;
     EndIndex     = endIndex;
 }
Пример #3
0
 public SucoToken(SucoTokenType type, string stringValue, int startIndex, int endIndex) : this()
 {
     Type        = type;
     StringValue = stringValue;
     StartIndex  = startIndex;
     EndIndex    = endIndex;
 }