(self, op: relax.Var)
| 125 | return self.build_expr(op, "DataflowVar", name_hint=wrap_quotes(op.name_hint)) |
| 126 | |
| 127 | def visit_var_(self, op: relax.Var) -> str: |
| 128 | return self.build_expr(op, "Var", name_hint=wrap_quotes(op.name_hint)) |
| 129 | |
| 130 | def visit_shape_expr_(self, op: relax.ShapeExpr) -> str: |
| 131 | return self.build_expr( |
nothing calls this directly
no test coverage detected