Lines Matching refs:newctx
58 CheckContext newctx = new CheckContext(ctx, this);
64 cond.checkCondition(env, newctx, reach(env, vset), exp);
65 cond = convert(env, newctx, Type.tBoolean, cond);
67 vset = body.check(env, newctx, cvars.vsTrue, exp);
68 vset = vset.join(newctx.vsContinue);
72 vset = newctx.vsBreak.join(cvars.vsFalse);
112 CodeContext newctx = new CodeContext(ctx, this);
114 asm.add(where, opc_goto, newctx.contLabel);
120 body.code(env, newctx, asm);
123 asm.add(newctx.contLabel);
124 cond.codeBranch(env, newctx, asm, l1, true);
125 asm.add(newctx.breakLabel);