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

        }
Ejemplo n.º 5
0
 public ASTType visit(HexadecimalConstant n)
 {
     throw new NotImplementedException();
 }