mirror of
https://github.com/ruby/ruby.git
synced 2025-08-16 05:59:00 +02:00
17 lines
251 B
Ruby
17 lines
251 B
Ruby
# frozen_string_literal: true
|
|
|
|
require_relative "debug"
|
|
|
|
module IRB
|
|
# :stopdoc:
|
|
|
|
module Command
|
|
class Next < DebugCommand
|
|
def execute(arg)
|
|
execute_debug_command(do_cmds: "next #{arg}")
|
|
end
|
|
end
|
|
end
|
|
|
|
# :startdoc:
|
|
end
|