Lines Matching refs:newctx
58 CheckContext newctx = new CheckContext(ctx, this);
61 vset = body.check(env, newctx, reach(env, vset), exp);
62 vset = vset.join(newctx.vsContinue);
66 cond.checkCondition(env, newctx, vset, exp);
67 cond = convert(env, newctx, Type.tBoolean, cond);
71 vset = newctx.vsBreak.join(cvars.vsFalse);
114 CodeContext newctx = new CodeContext(ctx, this);
117 body.code(env, newctx, asm);
119 asm.add(newctx.contLabel);
120 cond.codeBranch(env, newctx, asm, l1, true);
121 asm.add(newctx.breakLabel);