(u: unknown)
| 286 | (i0: C["i0"], i1: C["i1"], i2: C["i2"]): Statement.Fragment => new FragmentImpl([new CustomImpl(kind, i0, i1, i2)]) |
| 287 | |
| 288 | const isHelper = (u: unknown): u is Statement.Helper => |
| 289 | u instanceof ArrayHelperImpl || |
| 290 | u instanceof RecordInsertHelperImpl || |
| 291 | u instanceof RecordUpdateHelperImpl || |
| 292 | u instanceof RecordUpdateHelperSingleImpl || |
| 293 | u instanceof IdentifierImpl |
| 294 | |
| 295 | const constructorCache = globalValue( |
| 296 | "@effect/sql/Statement/constructorCache", |
no outgoing calls
no test coverage detected
searching dependent graphs…