Lines Matching refs:body
45 Statement body;
51 public CatchStatement(long where, Expression texpr, IdentifierToken id, Statement body) {
56 this.body = body;
60 public CatchStatement(long where, Expression texpr, Identifier id, Statement body) {
64 this.body = body;
96 return body.check(env, ctx, vset, exp);
111 if (body != null) {
112 body = body.inline(env, ctx);
122 if (body != null) {
123 s.body = body.copyInline(ctx, valNeeded);
136 if (body != null) {
137 cost += body.costInline(thresh, env,ctx);
153 if (body != null) {
154 body.code(env, newctx, asm);
167 if (body != null) {
168 body.print(out, indent);