(C context, ObjExpr objx, GeneratorAdapter gen)
| 4001 | } |
| 4002 | |
| 4003 | public void emit(C context, ObjExpr objx, GeneratorAdapter gen){ |
| 4004 | emitUnboxed(context, objx, gen); |
| 4005 | if(context != C.STATEMENT) |
| 4006 | HostExpr.emitBoxReturn(objx,gen,retClass); |
| 4007 | if(context == C.STATEMENT) |
| 4008 | { |
| 4009 | if(retClass == long.class || retClass == double.class) |
| 4010 | gen.pop2(); |
| 4011 | else |
| 4012 | gen.pop(); |
| 4013 | } |
| 4014 | } |
| 4015 | |
| 4016 | public boolean hasJavaClass() { |
| 4017 | return true; |
nothing calls this directly
no test coverage detected