type go/ast.FuncLit

18 uses

	go/ast (current package)
		ast.go#L324: 	FuncLit struct {
		ast.go#L499: func (x *FuncLit) Pos() token.Pos  { return x.Type.Pos() }
		ast.go#L546: func (x *FuncLit) End() token.Pos        { return x.Body.End() }
		ast.go#L577: func (*FuncLit) exprNode()        {}
		walk.go#L76: 	case *FuncLit:

	go/parser
		parser.go#L1467: 	return &ast.FuncLit{Type: typ, Body: body}
		resolver.go#L261: 	case *ast.FuncLit:

	go/printer
		nodes.go#L873: 	case *ast.FuncLit:

	go/types
		expr.go#L269: 		*ast.FuncLit,
		expr.go#L1069: 	case *ast.FuncLit:
		exprstring.go#L49: 	case *ast.FuncLit:
		literals.go#L83: func (check *Checker) funcLit(x *operand, e *ast.FuncLit) {

	golang.org/x/tools/go/ast/edge
		edge.go#L235: 	FuncLit_Body:          info[*ast.FuncLit]("Body"),
		edge.go#L236: 	FuncLit_Type:          info[*ast.FuncLit]("Type"),

	golang.org/x/tools/go/ast/inspector
		typeof.go#L154: 	case *ast.FuncLit:
		walk.go#L66: 	case *ast.FuncLit:

	golang.org/x/tools/internal/typesinternal
		fx.go#L58: 		case *ast.FuncLit:
		types.go#L179: 		case *ast.FuncLit: