(element, compiler, **kw)
| 6479 | |
| 6480 | @compiles(CatchCol) |
| 6481 | def compile_col(element, compiler, **kw): |
| 6482 | assert "canary" in kw |
| 6483 | return compiler.visit_column(element) |
| 6484 | |
| 6485 | @compiles(CatchTable) |
| 6486 | def compile_table(element, compiler, **kw): |
nothing calls this directly
no test coverage detected