# File lib/ruby-debug/commands/pause.rb, line 11
    def execute
      c = get_context(@match[1].to_i)
      unless c.respond_to?(:pause)
        print_msg "Not implemented"
        return
      end
      c.pause
    end