# File lib/pry/command.rb, line 233 def process_line(line) command_name, arg_string, captures, args = tokenize(line) check_for_command_name_collision(command_name, arg_string) if Pry.config.collision_warning self.arg_string = arg_string self.captures = captures call_safely(*(captures + args)) end