Lines Matching refs:body
42 Statement body;
47 public WhileStatement(long where, Expression cond, Statement body) {
50 this.body = body;
66 // check the body, given that the condition returned true.
67 vset = body.check(env, newctx, cvars.vsTrue, exp);
82 if (body != null) {
83 body = body.inline(env, ctx);
93 + ((body != null) ? body.costInline(thresh, env, ctx) : 0);
102 if (body != null) {
103 s.body = body.copyInline(ctx, valNeeded);
119 if (body != null) {
120 body.code(env, newctx, asm);
135 if (body != null) {
137 body.print(out, indent);