Example #1
0
  public String toQ() throws Exception {

    String res =
        FuriaConstructDefinitions.FURIA_fcast
            + "("
            + Frimp.toQ(getCastType())
            + ","
            + Frimp.toQ(getOp())
            + ")";

    return res;
  }
Example #2
0
 public Object clone() // NOPMD by amuller on 11/16/06 4:09 PM
     {
   return new FCastExpr(Frimp.cloneIfNecessary(getOp()), getCastType());
 }
Example #3
0
 public FCastExpr(Value op, Type type) {
   super(Frimp.v().newExprBox(op), type);
 }