go/ast.FuncLit.Type (field)

10 uses

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

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

	go/printer
		nodes.go#L853: 		p.print(x.Type.Pos(), token.FUNC)
		nodes.go#L856: 		p.signature(x.Type)
		nodes.go#L857: 		p.funcBody(p.distanceFrom(x.Type.Pos(), startCol), blank, x.Body)

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