(self, op: relax.SeqExpr)
| 191 | return self.build_expr(op, "Call", **fields) |
| 192 | |
| 193 | def visit_seq_expr_(self, op: relax.SeqExpr) -> str: |
| 194 | return self.build_expr( |
| 195 | op, |
| 196 | "SeqExpr", |
| 197 | blocks=self.build_list(map(self.visit_binding_block_, op.blocks)), |
| 198 | body=self.visit_expr(op.body), |
| 199 | ) |
| 200 | |
| 201 | def visit_if_(self, op: relax.If) -> str: |
| 202 | return self.build_expr( |
nothing calls this directly
no test coverage detected