MCPcopy Create free account
hub / github.com/fabioz/PyDev.Debugger / cmd_step_over

Method cmd_step_over

_pydevd_bundle/pydevd_plugin_utils.py:153–159  ·  view source on GitHub ↗
(self, py_db, frame, event, info, thread, stop_info, stop)

Source from the content-addressed store, hash-verified

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 """

Callers 2

_plugin_steppingFunction · 0.80
trace_dispatchMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected