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

        }
예제 #5
0
 public ASTType visit(OctalConstant n)
 {
     throw new NotImplementedException();
 }