示例#1
0
 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
 }
示例#4
0
        public override string visit(HexadecimalConstant n)
        {
            return "0x" + n.Value.ToString();

        }
示例#5
0
 public ASTType visit(HexadecimalConstant n)
 {
     throw new NotImplementedException();
 }