Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix syntax warnings #1072

Merged
merged 1 commit into from
Feb 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions lib/debug/server_cdp.rb
Original file line number Diff line number Diff line change
@@ -131,7 +131,7 @@ def run_new_chrome
stdout.close
data = stderr.readpartial 4096
stderr.close
if data.match /DevTools listening on ws:\/\/127.0.0.1:(\d+)(.*)/
if data.match(/DevTools listening on ws:\/\/127.0.0.1:(\d+)(.*)/)
port = $1
path = $2
end
@@ -158,7 +158,7 @@ def run_new_chrome
raise NotFoundChromeEndpointError
end
stderr.close
if data.match /DevTools listening on ws:\/\/127.0.0.1:(\d+)(.*)/
if data.match(/DevTools listening on ws:\/\/127.0.0.1:(\d+)(.*)/)
port = $1
path = $2
end
@@ -190,7 +190,7 @@ def get_devtools_endpoint tf
while i < ITERATIONS
i += 1
if File.exist?(tf) && data = File.read(tf)
if data.match /DevTools listening on ws:\/\/127.0.0.1:(\d+)(.*)/
if data.match(/DevTools listening on ws:\/\/127.0.0.1:(\d+)(.*)/)
port = $1
path = $2
return [port, path]
@@ -297,7 +297,7 @@ def handshake port, path
res = @sock.readpartial 4092
show_protocol :<, res

if res.match /^Sec-WebSocket-Accept: (.*)\r\n/
if res.match(/^Sec-WebSocket-Accept: (.*)\r\n/)
correct_key = Base64.strict_encode64 Digest::SHA1.digest "#{key}==258EAFA5-E914-47DA-95CA-C5AB0DC85B11"
raise "The Sec-WebSocket-Accept value: #{$1} is not valid" unless $1 == correct_key
else
@@ -378,7 +378,7 @@ def handshake
req = @sock.readpartial 4096
show_protocol '>', req

if req.match /^Sec-WebSocket-Key: (.*)\r\n/
if req.match(/^Sec-WebSocket-Key: (.*)\r\n/)
accept = Base64.strict_encode64 Digest::SHA1.digest "#{$1}258EAFA5-E914-47DA-95CA-C5AB0DC85B11"
res = "HTTP/1.1 101 Switching Protocols\r\nUpgrade: websocket\r\nConnection: Upgrade\r\nSec-WebSocket-Accept: #{accept}\r\n\r\n"
@sock.print res
@@ -658,7 +658,7 @@ def get_source_code path

def activate_bp bps
bps.each_key{|k|
if k.match /^\d+:(\d+):(.*)/
if k.match(/^\d+:(\d+):(.*)/)
line = $1
path = $2
SESSION.add_line_breakpoint(path, line.to_i + 1)