Ejemplo n.º 1
0
 public VerbatimToken(TokenName tokenName, int position, string value)
 {
     Position  = position;
     Value     = value;
     TokenName = tokenName;
 }
Ejemplo n.º 2
0
 protected override bool ThisEquals(VerbatimToken other)
 {
     return(Position.Equals(other.Position) &&
            Value.Equals(other.Value) &&
            TokenName.Equals(other.TokenName));
 }