(Object sym)
| 377 | } |
| 378 | |
| 379 | static boolean isSpecial(Object sym){ |
| 380 | return specials.containsKey(sym); |
| 381 | } |
| 382 | |
| 383 | static boolean inTailCall(C context) { |
| 384 | return (context == C.RETURN) && (METHOD_RETURN_CONTEXT.deref() != null) && (IN_CATCH_FINALLY.deref() == null); |
no test coverage detected