emit an if instruction
(self, cond, false_offset)
| 142 | _ffi_api.ExecBuilderEmitGoto(self, pc_offset) # type: ignore |
| 143 | |
| 144 | def emit_if(self, cond, false_offset): |
| 145 | """emit an if instruction""" |
| 146 | self._check_scope() |
| 147 | _ffi_api.ExecBuilderEmitIf(self, cond, false_offset) # type: ignore |
| 148 | |
| 149 | def get(self) -> VMExecutable: |
| 150 | """return the executable""" |