Skip to content

Commit eae44e4

Browse files
author
小野 直人
committed
Support "Force script execution" feature in Chrome
1 parent 0f1c661 commit eae44e4

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

lib/debug/server_cdp.rb

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,14 @@ def process
165165
@q_msg << req
166166
send_response req
167167
send_event 'Debugger.resumed'
168+
when 'Debugger.setSkipAllPauses'
169+
skip = req.dig('params', 'skip')
170+
if skip
171+
deactivate_bp
172+
else
173+
activate_bp bps
174+
end
175+
send_response req
168176

169177
# breakpoint
170178
when 'Debugger.getPossibleBreakpoints'

0 commit comments

Comments
 (0)