go/ast.FuncType.Func (field)

7 uses

	go/ast (current package)
		ast.go#L461: 		Func       token.Pos  // position of "func" keyword (token.NoPos if there is no "func")
		ast.go#L517: 	if x.Func.IsValid() || x.Params == nil { // see issue 3870
		ast.go#L518: 		return x.Func

	go/parser
		parser.go#L1109: 	return &ast.FuncType{Func: pos, Params: params, Results: results}
		parser.go#L1144: 					Func:    token.NoPos,
		parser.go#L1173: 			typ = &ast.FuncType{Func: token.NoPos, Params: params, Results: results}
		parser.go#L2810: 			Func:       pos,