コード例 #1
0
ファイル: FCastExpr.java プロジェクト: amuller/furia-chan
  public String toQ() throws Exception {

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

    return res;
  }
コード例 #2
0
ファイル: FCastExpr.java プロジェクト: amuller/furia-chan
 public Object clone() // NOPMD by amuller on 11/16/06 4:09 PM
     {
   return new FCastExpr(Frimp.cloneIfNecessary(getOp()), getCastType());
 }
コード例 #3
0
ファイル: FCastExpr.java プロジェクト: amuller/furia-chan
 public FCastExpr(Value op, Type type) {
   super(Frimp.v().newExprBox(op), type);
 }