go/ast.FuncLit.Body (field)

8 uses

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

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

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

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