(
vm: &VirtualMachine,
code: &PyRef<PyCode>,
offset: u32,
destination: u32,
)
| 1064 | } |
| 1065 | |
| 1066 | pub fn fire_branch_right( |
| 1067 | vm: &VirtualMachine, |
| 1068 | code: &PyRef<PyCode>, |
| 1069 | offset: u32, |
| 1070 | destination: u32, |
| 1071 | ) -> PyResult<()> { |
| 1072 | fire( |
| 1073 | vm, |
| 1074 | EVENT_BRANCH_RIGHT, |
| 1075 | code, |
| 1076 | offset, |
| 1077 | &[ |
| 1078 | vm.ctx.new_int(offset).into(), |
| 1079 | vm.ctx.new_int(destination).into(), |
| 1080 | ], |
| 1081 | ) |
| 1082 | } |
| 1083 | |
| 1084 | #[pymodule(sub)] |
| 1085 | pub(super) mod sys_monitoring { |
no test coverage detected