go/ast.FuncLit.Type (field)

10 uses

	go/ast (current package)
		ast.go#L322: 		Type *FuncType  // function type
		ast.go#L496: func (x *FuncLit) Pos() token.Pos  { return x.Type.Pos() }
		walk.go#L77: 		Walk(v, n.Type)

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

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

	go/types
		exprstring.go#L51: 		WriteExpr(buf, x.Type)
		literals.go#L84: 	if sig, ok := check.typ(e.Type).(*Signature); ok {