go/ast.FuncType.Func (field)

7 uses

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

	go/parser
		parser.go#L1125: 	return &ast.FuncType{Func: pos, Params: params, Results: results}
		parser.go#L1160: 					Func:    token.NoPos,
		parser.go#L1189: 			typ = &ast.FuncType{Func: token.NoPos, Params: params, Results: results}
		parser.go#L2834: 			Func:       pos,