Returns whether or not the bits in the mask have changed to all set. @param before bits before change @param after bits after change @param mask mask for bits @return true if all the bits in the mask are set in "after" but not in "before"
(int before, int after, int mask)
| 2257 | * @return {@code true} if all the bits in the mask are set in "after" but not in "before" |
| 2258 | */ |
| 2259 | private static final boolean nowAllSet(int before, int after, int mask) { |
| 2260 | return ((before & mask) != mask) && ((after & mask) == mask); |
| 2261 | } |
| 2262 | |
| 2263 | private AstNode returnOrYield(int tt, boolean exprContext) throws IOException { |
| 2264 | if (!insideFunctionBody()) { |