(rpcMethod: string)
| 3579 | } |
| 3580 | |
| 3581 | function clientSessionHandlerMethodName(rpcMethod: string): string { |
| 3582 | const parts = rpcMethod.split("."); |
| 3583 | return toSnakeCase(parts[parts.length - 1]); |
| 3584 | } |
| 3585 | |
| 3586 | function emitClientSessionApiRegistration( |
| 3587 | lines: string[], |
no test coverage detected
searching dependent graphs…