(left: string, right: string)
| 156 | } |
| 157 | |
| 158 | function compareGoTypeNames(left: string, right: string): number { |
| 159 | return left.localeCompare(right); |
| 160 | } |
| 161 | |
| 162 | function compareRpcMethodsByGoName(left: RpcMethod, right: RpcMethod): number { |
| 163 | return clientHandlerMethodName(left.rpcMethod).localeCompare(clientHandlerMethodName(right.rpcMethod)); |
no outgoing calls
no test coverage detected
searching dependent graphs…