Пример #1
0
 public string visit(HexadecimalConstant n)
 {
     throw new NotImplementedException();
 }
 public abstract string visit(HexadecimalConstant 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
 }
Пример #4
0
        public override string visit(HexadecimalConstant n)
        {
            return "0x" + n.Value.ToString();

        }
Пример #5
0
 public ASTType visit(HexadecimalConstant n)
 {
     throw new NotImplementedException();
 }