mirror of
https://github.com/ruby/ruby.git
synced 2026-01-28 13:04:22 +00:00
18 lines
259 B
Ruby
18 lines
259 B
Ruby
# frozen_string_literal: true
|
|
|
|
require_relative "debug"
|
|
|
|
module IRB
|
|
# :stopdoc:
|
|
|
|
module Command
|
|
class Continue < DebugCommand
|
|
def execute(arg)
|
|
execute_debug_command(do_cmds: "continue #{arg}")
|
|
end
|
|
end
|
|
end
|
|
|
|
# :startdoc:
|
|
end
|