Lines Matching refs:body
41 Statement body;
46 InlineMethodExpression(long where, Type type, MemberDefinition field, Statement body) {
49 this.body = body;
55 body = body.inline(env, new Context(ctx, this));
56 if (body == null) {
58 } else if (body.op == INLINERETURN) {
59 Expression expr = ((InlineReturnStatement)body).expr;
69 // When this node was constructed, "copyInline" walked the body
82 if (body != null) {
83 e.body = body.copyInline(ctx, true);
97 body.code(env, newctx, asm);
106 body.print(out, 1);