()
| 6551 | Boolean hjc; |
| 6552 | |
| 6553 | public boolean hasJavaClass() { |
| 6554 | if (hjc == null) |
| 6555 | { |
| 6556 | if(init != null && init.hasJavaClass() && Util.isPrimitive(init.getJavaClass()) && !(init instanceof MaybePrimitiveExpr)) |
| 6557 | hjc = false; |
| 6558 | else |
| 6559 | hjc = tag != null || (init != null && init.hasJavaClass()); |
| 6560 | } |
| 6561 | return hjc; |
| 6562 | } |
| 6563 | |
| 6564 | Class jc; |
| 6565 |
nothing calls this directly
no test coverage detected