Method: Thread#__step_over_at
- Defined in:
- lib/mdbe/database_views/thread.rb
#__step_over_at(frame) ⇒ Object
38 39 40 41 42 43 44 45 |
# File 'lib/mdbe/database_views/thread.rb', line 38 def __step_over_at(frame) thread = Thread.start(self) do |debug_thread| Thread.pass debug_thread.__step_over_in_frame(frame) end sleep 0.1 unless thread.stop? end |