(Expr e)
| 1641 | } |
| 1642 | |
| 1643 | static Class maybePrimitiveType(Expr e){ |
| 1644 | if(e instanceof MaybePrimitiveExpr && e.hasJavaClass() && ((MaybePrimitiveExpr)e).canEmitPrimitive()) |
| 1645 | { |
| 1646 | Class c = e.getJavaClass(); |
| 1647 | if(Util.isPrimitive(c)) |
| 1648 | return c; |
| 1649 | } |
| 1650 | return null; |
| 1651 | } |
| 1652 | |
| 1653 | static class FISupport { |
| 1654 | private static final IPersistentSet AFN_FIS = RT.set(Callable.class, Runnable.class, Comparator.class); |
no test coverage detected