This file is indexed.

/usr/lib/ruby/vendor_ruby/pry/commands/switch_to.rb is in pry 0.10.3-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
class Pry
  class Command::SwitchTo < Pry::ClassCommand
    match 'switch-to'
    group 'Navigating Pry'
    description 'Start a new subsession on a binding in the current stack.'

    banner <<-'BANNER'
      Start a new subsession on a binding in the current stack (numbered by nesting).
    BANNER

    def process(selection)
      selection = selection.to_i

      if selection < 0 || selection > _pry_.binding_stack.size - 1
        raise CommandError, "Invalid binding index #{selection} - use `nesting` command to view valid indices."
      else
        Pry.start(_pry_.binding_stack[selection])
      end
    end
  end

  Pry::Commands.add_command(Pry::Command::SwitchTo)
end