| 3 | const { classToInvokable } = require(class="st">'./utils'); |
| 4 | |
| 5 | class ABSTRACT { |
| 6 | static toString(...args) { |
| 7 | return new this().toString(...args); |
| 8 | } |
| 9 | |
| 10 | toString(...args) { |
| 11 | return this.toSql(...args); |
| 12 | } |
| 13 | |
| 14 | toSql() { |
| 15 | throw new Error(class="st">'toSql implementation missing'); |
| 16 | } |
| 17 | } |
| 18 | |
| 19 | class INITIALLY_DEFERRED extends ABSTRACT { |
| 20 | toSql() { |
nothing calls this directly
no outgoing calls
no test coverage detected