(method: RpcMethod)
| 1334 | } |
| 1335 | |
| 1336 | function getMethodResultSchema(method: RpcMethod): JSONSchema7 | undefined { |
| 1337 | return resolveSchema(method.result, rpcDefinitions) ?? method.result ?? undefined; |
| 1338 | } |
| 1339 | |
| 1340 | function isPythonObjectResultSchema(schema: JSONSchema7 | undefined): boolean { |
| 1341 | if (!schema) return false; |
no test coverage detected
searching dependent graphs…