type go/ast.FuncLit

13 uses

	go/ast (current package)
		ast.go#L321: 	FuncLit struct {
		ast.go#L496: func (x *FuncLit) Pos() token.Pos  { return x.Type.Pos() }
		ast.go#L535: func (x *FuncLit) End() token.Pos        { return x.Body.End() }
		ast.go#L566: func (*FuncLit) exprNode()        {}
		walk.go#L76: 	case *FuncLit:

	go/parser
		parser.go#L1451: 	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#L239: 		*ast.FuncLit,
		expr.go#L1020: 	case *ast.FuncLit:
		exprstring.go#L49: 	case *ast.FuncLit:
		literals.go#L83: func (check *Checker) funcLit(x *operand, e *ast.FuncLit) {

	gotest.tools/v3/internal/source
		defers.go#L16: 			if funcLit, ok := node.(*ast.FuncLit); ok {