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