()
| 579 | const out: Table<Columns, {}> = { |
| 580 | ormName: "", |
| 581 | get names() { |
| 582 | if (names) return names; |
| 583 | |
| 584 | return typeof name === "string" |
| 585 | ? nameVariants(name, out.ormName) |
| 586 | : nameVariants(out.ormName, out.ormName, name); |
| 587 | }, |
| 588 | set names(v) { |
| 589 | names = v; |
| 590 | }, |
nothing calls this directly
no test coverage detected