コード例 #1
0
ファイル: SpringTokenType.cs プロジェクト: Fatalll/Spring
 public SpringToken(SpringTokenType type, IBuffer buffer, TextRange range)
 {
     _type   = type;
     _buffer = buffer;
     _range  = range;
 }
コード例 #2
0
 public SpringGenericToken(string text, SpringTokenType type)
 {
     _text = text;
     _type = type;
 }
コード例 #3
0
 public CLeafElement(string str, SpringTokenType tokenType)
 {
     Str           = str;
     TokenNodeType = tokenType;
 }
コード例 #4
0
 public SpringGenericToken(string text, SpringTokenType tokenType)
 {
     myText = text;
     myType = tokenType;
 }
コード例 #5
0
 public SpringLeafToken(string text, SpringTokenType tokenType)
 {
     _text = text;
     _type = tokenType;
 }
コード例 #6
0
 public SpringToken(SpringTokenType type, string text)
 {
     this.NodeType = type;
     this.text     = text;
 }