(self, op: relax.GlobalVar)
| 138 | return self.build_ast_node("ExternFunc", global_symbol=wrap_quotes(op.global_symbol)) |
| 139 | |
| 140 | def visit_global_var_(self, op: relax.GlobalVar) -> str: |
| 141 | return self.build_expr(op, "GlobalVar", name_hint=wrap_quotes(op.name_hint)) |
| 142 | |
| 143 | def visit_function_(self, op: relax.Function) -> str: |
| 144 | fields = { |
nothing calls this directly
no test coverage detected