Esempio n. 1
0
 public CToken(ETokenType token_type, string text, SPosition inPos)
 {
     _token_type = token_type;
     _text       = text;
     _position   = inPos;
 }
Esempio n. 2
0
 public static CKey Create(CKey parent, SPosition pos)
 {
     return(new CKey(parent, string.Empty, false, pos));
 }
Esempio n. 3
0
 public static CKey CreateArrayKey(CKey parent, SPosition pos)
 {
     return(new CKey(parent, string.Empty, true, pos));
 }
Esempio n. 4
0
 private CKey(CKey parent, string inName, bool inArray, SPosition pos) : base(parent, pos)
 {
     SetName(inName);
     IsArray = inArray;
 }