aboutsummaryrefslogtreecommitdiffstats
path: root/lib/irb/type_completion/methods.rb
diff options
context:
space:
mode:
authortomoya ishida <tomoyapenguin@gmail.com>2023-11-30 01:30:08 +0900
committergit <svn-admin@ruby-lang.org>2023-11-29 16:30:13 +0000
commit86d9a6dcb61b47bcacfe98200cb6d47da6bb1134 (patch)
tree1c5a777119c0fb94341857139059faee446ac636 /lib/irb/type_completion/methods.rb
parentb549722eefaf1d7b43b607d96778f82fecc92e43 (diff)
downloadruby-86d9a6dcb61b47bcacfe98200cb6d47da6bb1134.tar.gz
[ruby/irb] Use gem repl_type_completor, remove type_completion
implementation (https://github.com/ruby/irb/pull/772) https://github.com/ruby/irb/commit/a4868a5373
Diffstat (limited to 'lib/irb/type_completion/methods.rb')
-rw-r--r--lib/irb/type_completion/methods.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/irb/type_completion/methods.rb b/lib/irb/type_completion/methods.rb
deleted file mode 100644
index 8a88b6d0f9..0000000000
--- a/lib/irb/type_completion/methods.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-# frozen_string_literal: true
-
-module IRB
- module TypeCompletion
- module Methods
- OBJECT_SINGLETON_CLASS_METHOD = Object.instance_method(:singleton_class)
- OBJECT_INSTANCE_VARIABLES_METHOD = Object.instance_method(:instance_variables)
- OBJECT_INSTANCE_VARIABLE_GET_METHOD = Object.instance_method(:instance_variable_get)
- OBJECT_CLASS_METHOD = Object.instance_method(:class)
- MODULE_NAME_METHOD = Module.instance_method(:name)
- end
- end
-end