summaryrefslogtreecommitdiff
path: root/lib/irb/cmd/break.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/irb/cmd/break.rb')
-rw-r--r--lib/irb/cmd/break.rb21
1 files changed, 0 insertions, 21 deletions
diff --git a/lib/irb/cmd/break.rb b/lib/irb/cmd/break.rb
deleted file mode 100644
index df259a90ca..0000000000
--- a/lib/irb/cmd/break.rb
+++ /dev/null
@@ -1,21 +0,0 @@
-# frozen_string_literal: true
-
-require_relative "debug"
-
-module IRB
- # :stopdoc:
-
- module ExtendCommand
- class Break < DebugCommand
- def self.transform_args(args)
- args&.dump
- end
-
- def execute(args = nil)
- super(pre_cmds: "break #{args}")
- end
- end
- end
-
- # :startdoc:
-end