go/ast.FuncLit.Body (field)

8 uses

	go/ast (current package)
		ast.go#L323: 		Body *BlockStmt // function body
		ast.go#L535: func (x *FuncLit) End() token.Pos        { return x.Body.End() }
		walk.go#L78: 		Walk(v, n.Body)

	go/parser
		parser.go#L1451: 	return &ast.FuncLit{Type: typ, Body: body}
		resolver.go#L265: 		r.walkBody(n.Body)

	go/printer
		nodes.go#L879: 		p.funcBody(p.distanceFrom(x.Type.Pos(), startCol), blank, x.Body)

	go/types
		literals.go#L89: 		if !check.conf.IgnoreFuncBodies && e.Body != nil {
		literals.go#L100: 				check.funcBody(decl, "<function literal>", sig, e.Body, iota)