mirror of
https://github.com/ruby/ruby.git
synced 2025-08-24 05:25:34 +02:00
17 lines
255 B
Ruby
17 lines
255 B
Ruby
# frozen_string_literal: true
|
|
|
|
require_relative "debug"
|
|
|
|
module IRB
|
|
# :stopdoc:
|
|
|
|
module ExtendCommand
|
|
class Next < DebugCommand
|
|
def execute(*args)
|
|
super(do_cmds: ["next", *args].join(" "))
|
|
end
|
|
end
|
|
end
|
|
|
|
# :startdoc:
|
|
end
|