go/ast.FuncType.Pos (method, view implemented interface methods)

7 uses

	go/ast (current package)
		ast.go#L496: func (x *FuncLit) Pos() token.Pos  { return x.Type.Pos() }
		ast.go#L516: func (x *FuncType) Pos() token.Pos {
		ast.go#L1007: func (d *FuncDecl) Pos() token.Pos { return d.Type.Pos() }

	go/parser
		resolver.go#L278: 		r.openScope(n.Pos())

	go/printer
		nodes.go#L874: 		p.setPos(x.Type.Pos())
		nodes.go#L879: 		p.funcBody(p.distanceFrom(x.Type.Pos(), startCol), blank, x.Body)

	go/types
		signature.go#L125: 		scopePos := ftyp.Pos()