(names: string[])
| 3348 | } |
| 3349 | |
| 3350 | function renderPythonAllList(names: string[]): string { |
| 3351 | const lines: string[] = ["__all__ = ["]; |
| 3352 | for (const name of names) { |
| 3353 | lines.push(` ${JSON.stringify(name)},`); |
| 3354 | } |
| 3355 | lines.push("]"); |
| 3356 | return lines.join("\n"); |
| 3357 | } |
| 3358 | |
| 3359 | function collectPythonSessionEventExportedTypeNames(schema: JSONSchema7): Set<string> { |
| 3360 | const definitions = collectDefinitionCollections(schema as Record<string, unknown>); |
no test coverage detected
searching dependent graphs…