We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 636083b commit d86cad3Copy full SHA for d86cad3
src/bloqade/qasm2/emit/base.py
@@ -45,11 +45,6 @@ def initialize_frame(
45
) -> EmitQASM2Frame[StmtType]:
46
return EmitQASM2Frame(node, has_parent_access=has_parent_access)
47
48
- def run_method(
49
- self, method: ir.Method, args: tuple[ast.Node | None, ...]
50
- ) -> tuple[EmitQASM2Frame[StmtType], ast.Node | None]:
51
- return self.call(method, *args)
52
-
53
def emit_block(self, frame: EmitQASM2Frame, block: ir.Block) -> ast.Node | None:
54
for stmt in block.stmts:
55
result = self.frame_eval(frame, stmt)
0 commit comments