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

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