Ejemplo n.º 1
0
 public SpringToken(SpringTokenType type, IBuffer buffer, TextRange range)
 {
     _type   = type;
     _buffer = buffer;
     _range  = range;
 }
Ejemplo n.º 2
0
 public SpringGenericToken(string text, SpringTokenType type)
 {
     _text = text;
     _type = type;
 }
Ejemplo n.º 3
0
 public CLeafElement(string str, SpringTokenType tokenType)
 {
     Str           = str;
     TokenNodeType = tokenType;
 }
Ejemplo n.º 4
0
 public SpringGenericToken(string text, SpringTokenType tokenType)
 {
     myText = text;
     myType = tokenType;
 }
Ejemplo n.º 5
0
 public SpringLeafToken(string text, SpringTokenType tokenType)
 {
     _text = text;
     _type = tokenType;
 }
Ejemplo n.º 6
0
 public SpringToken(SpringTokenType type, string text)
 {
     this.NodeType = type;
     this.text     = text;
 }