(C context, ObjExpr objx, GeneratorAdapter gen)
| 2433 | } |
| 2434 | |
| 2435 | public void emitUnboxed(C context, ObjExpr objx, GeneratorAdapter gen){ |
| 2436 | if(n instanceof Integer) |
| 2437 | gen.push(n.longValue()); |
| 2438 | else if(n instanceof Double) |
| 2439 | gen.push(n.doubleValue()); |
| 2440 | else if(n instanceof Long) |
| 2441 | gen.push(n.longValue()); |
| 2442 | } |
| 2443 | |
| 2444 | static public Expr parse(Number form){ |
| 2445 | if(form instanceof Integer |
nothing calls this directly
no test coverage detected