(self, prim_expr: PrimExpr)
| 223 | return self.build_ast_node("Op", name=wrap_quotes(op.name)) |
| 224 | |
| 225 | def visit_prim_expr_(self, prim_expr: PrimExpr) -> str: |
| 226 | # TODO: We may want to print PrimExpr ASTs, but this is a simplification for now |
| 227 | return self.build_ast_node("PrimExpr", value=f"`{prim_expr!s}`") |
| 228 | |
| 229 | def visit_tuple_getitem_(self, op: relax.TupleGetItem) -> str: |
| 230 | return self.build_expr( |
no test coverage detected