(left: RpcMethod, right: RpcMethod)
| 160 | } |
| 161 | |
| 162 | function compareRpcMethodsByGoName(left: RpcMethod, right: RpcMethod): number { |
| 163 | return clientHandlerMethodName(left.rpcMethod).localeCompare(clientHandlerMethodName(right.rpcMethod)); |
| 164 | } |
| 165 | |
| 166 | function splitGoIdentifierWords(name: string): string[] { |
| 167 | return name |
nothing calls this directly
no test coverage detected
searching dependent graphs…