(method reflect.Method)
| 337 | } |
| 338 | |
| 339 | func hasUpdatesReturn(method reflect.Method) bool { |
| 340 | for idx := 0; idx < method.Type.NumOut(); idx++ { |
| 341 | outType := method.Type.Out(idx) |
| 342 | if outType == updatesRtnRType { |
| 343 | return true |
| 344 | } |
| 345 | } |
| 346 | return false |
| 347 | } |
| 348 | |
| 349 | func GenerateMethodSignature(serviceName string, method reflect.Method, meta tsgenmeta.MethodMeta, isFirst bool, tsTypesMap map[reflect.Type]string) string { |
| 350 | var sb strings.Builder |
no outgoing calls
no test coverage detected