Exemplo n.º 1
0
 public SucoToken(SucoTokenType type, int numericalValue, int startIndex, int endIndex) : this()
 {
     Type           = type;
     NumericalValue = numericalValue;
     StartIndex     = startIndex;
     EndIndex       = endIndex;
 }
Exemplo n.º 2
0
 public SucoToken(SucoTokenType type, double decimalValue, int startIndex, int endIndex) : this()
 {
     Type         = type;
     DecimalValue = decimalValue;
     StartIndex   = startIndex;
     EndIndex     = endIndex;
 }
Exemplo n.º 3
0
 public SucoToken(SucoTokenType type, string stringValue, int startIndex, int endIndex) : this()
 {
     Type        = type;
     StringValue = stringValue;
     StartIndex  = startIndex;
     EndIndex    = endIndex;
 }