brew/Library/Homebrew/sorbet/rbi/gems/byebug@11.1.3.rbi

37 lines
1013 B
Plaintext
Raw Normal View History

# typed: true
# DO NOT EDIT MANUALLY
# This is an autogenerated file for types exported from the `byebug` gem.
2021-09-17 19:28:50 +01:00
# Please instead update this file by running `bin/tapioca gem byebug`.
2023-12-14 15:34:15 +00:00
# Reopen main module to define the library version
#
# source://byebug//lib/byebug/attacher.rb#6
module Byebug
class << self
2023-12-14 15:34:15 +00:00
# Starts byebug, and stops at the first line of user's code.
#
# source://byebug//lib/byebug/attacher.rb#10
def attach; end
2023-12-14 15:34:15 +00:00
# source://byebug//lib/byebug/attacher.rb#21
def spawn(host = T.unsafe(nil), port = T.unsafe(nil)); end
end
end
2023-12-14 15:34:15 +00:00
# Adds a `byebug` method to the Kernel module.
#
# Dropping a `byebug` call anywhere in your code, you get a debug prompt.
#
# source://byebug//lib/byebug/attacher.rb#34
module Kernel
2023-12-14 15:34:15 +00:00
# source://byebug//lib/byebug/attacher.rb#35
def byebug; end
2023-12-14 15:34:15 +00:00
# source://byebug//lib/byebug/attacher.rb#35
def debugger; end
2023-12-14 15:34:15 +00:00
# source://byebug//lib/byebug/attacher.rb#41
def remote_byebug(host = T.unsafe(nil), port = T.unsafe(nil)); end
end