type go/ast.FuncLit

11 uses

	go/ast (current package)
		ast.go#L325: 	FuncLit struct {
		ast.go#L500: func (x *FuncLit) Pos() token.Pos  { return x.Type.Pos() }
		ast.go#L539: func (x *FuncLit) End() token.Pos        { return x.Body.End() }
		ast.go#L570: func (*FuncLit) exprNode()        {}
		walk.go#L76: 	case *FuncLit:

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

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