summaryrefslogtreecommitdiff
path: root/lib/irb/command/next.rb
blob: 6487c9d24cb6ee4f6ecac9e23a5d8ced08691b1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

require_relative "debug"

module IRB
  # :stopdoc:

  module Command
    class Next < DebugCommand
      def execute(*args)
        super(do_cmds: ["next", *args].join(" "))
      end
    end
  end

  # :startdoc:
end