public string visit(HexadecimalConstant n)
 {
     throw new NotImplementedException();
 }
 public abstract string visit(HexadecimalConstant n);
 public virtual string visit(HexadecimalConstant n)
 {
     throw new NotImplementedException("HexadecimalConstant is not implemented yet");
     // Do nothing; leave the implementation to the main class
 }
Exemple #4
0
        public override string visit(HexadecimalConstant n)
        {
            return "0x" + n.Value.ToString();

        }
 public ASTType visit(HexadecimalConstant n)
 {
     throw new NotImplementedException();
 }