(prefix: string)
| 214 | } |
| 215 | |
| 216 | function schemaOption(prefix: string): string { |
| 217 | const name = schemaName(prefix) |
| 218 | return name.length === 0 ? `, schema: ""` : `, schema: ${name}` |
| 219 | } |
| 220 | |
| 221 | function syncFacadeSourceCtor(classText: string, name: string): string { |
| 222 | const n = escapeRe(name) |
no test coverage detected
searching dependent graphs…