(self, py_db, frame, event, info, thread, stop_info, stop)
| 151 | return stop, plugin_stop |
| 152 | |
| 153 | def cmd_step_over(self, py_db, frame, event, info, thread, stop_info, stop): |
| 154 | plugin_stop = False |
| 155 | for plugin in self.active_plugins: |
| 156 | stop, plugin_stop = plugin.cmd_step_over(py_db, frame, event, info, thread, stop_info, stop) |
| 157 | if plugin_stop: |
| 158 | return stop, plugin_stop |
| 159 | return stop, plugin_stop |
| 160 | |
| 161 | def stop(self, py_db, frame, event, thread, stop_info, arg, step_cmd): |
| 162 | """ |
no outgoing calls
no test coverage detected