Ejemplo n.º 1
0
 public Expression(RawToken token)
 {
     this.Tokens = new List <RawToken>();
     this.Tokens.Add(token);
     this.ResultDataType = DataType.None;
 }
Ejemplo n.º 2
0
        public bool IsEquals(object obj)
        {
            RawToken rawToken = (RawToken)obj;

            return(this.Type == rawToken.Type && this.UID == rawToken.UID && this.LinearToken.Equals(rawToken.LinearToken));
        }