go/ast.FuncLit.Type (field)

7 uses

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

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

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