type go/ast.FuncLit

16 uses

	go/ast (current package)
		ast.go#L306: 	FuncLit struct {
		ast.go#L473: func (x *FuncLit) Pos() token.Pos  { return x.Type.Pos() }
		ast.go#L511: func (x *FuncLit) End() token.Pos        { return x.Body.End() }
		ast.go#L542: func (*FuncLit) exprNode()        {}
		walk.go#L96: 	case *FuncLit:

	go/parser
		parser.go#L1134: 	return &ast.FuncLit{Type: typ, Body: body}
		parser.go#L1382: 	case *ast.FuncLit:

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

	golang.org/x/pkgsite/internal/godoc
		encode_ast.gen.go#L1554: func encode_ast_FuncLit(e *codec.Encoder, x *ast.FuncLit) {
		encode_ast.gen.go#L1569: func decode_ast_FuncLit(d *codec.Decoder, p **ast.FuncLit) {
		encode_ast.gen.go#L1575: 		*p = ref.(*ast.FuncLit)
		encode_ast.gen.go#L1578: 	var x ast.FuncLit
		encode_ast.gen.go#L1598: 	codec.Register(&ast.FuncLit{},
		encode_ast.gen.go#L1599: 		func(e *codec.Encoder, x interface{}) { encode_ast_FuncLit(e, x.(*ast.FuncLit)) },
		encode_ast.gen.go#L1601: 			var x *ast.FuncLit

	golang.org/x/pkgsite/internal/godoc/dochtml/internal/render
		synopsis.go#L123: 	case *ast.FuncLit: