module Byebug

Public Class Methods

start_dap(host, port = 0) click to toggle source

Creates and starts the server. See {DAP::Server#initialize} and {DAP::Server#start}. @param host the host passed to {DAP::Server#start} @param port the port passed to {DAP::Server#start} @return [DAP::Server]

# File lib/byebug/dap.rb, line 35
def start_dap(host, port = 0)
  DAP::Server.new.start(host, port)
end