go/ast.FuncType.Func (field)

7 uses

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

	go/parser
		parser.go#L1000: 	return &ast.FuncType{Func: pos, Params: params, Results: results}
		parser.go#L1035: 					Func:    token.NoPos,
		parser.go#L1064: 			typ = &ast.FuncType{Func: token.NoPos, Params: params, Results: results}
		parser.go#L2802: 			Func:       pos,