(Object v)
| 2458 | public final int id; |
| 2459 | |
| 2460 | public ConstantExpr(Object v){ |
| 2461 | this.v = v; |
| 2462 | this.id = registerConstant(v); |
| 2463 | // this.id = RT.nextID(); |
| 2464 | // DynamicClassLoader loader = (DynamicClassLoader) LOADER.get(); |
| 2465 | // loader.registerQuotedVal(id, v); |
| 2466 | } |
| 2467 | |
| 2468 | Object val(){ |
| 2469 | return v; |
nothing calls this directly
no test coverage detected