Exemplo n.º 1
0
 public string visit(OctalConstant n)
 {
     throw new NotImplementedException();
 }
 public abstract string visit(OctalConstant n);
Exemplo 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
 }
Exemplo n.º 4
0
        public override string visit(OctalConstant n)
        {
            return "0" + n.Value.ToString();

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