From 29cef5f795043a048a58874d90de0dfe01aa12ea Mon Sep 17 00:00:00 2001 From: nobu Date: Wed, 2 Oct 2002 16:45:35 +0000 Subject: use Object#class instead of deprecated Object#type. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2927 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/irb/completion.rb | 2 +- lib/irb/context.rb | 2 +- lib/irb/init.rb | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) (limited to 'lib/irb') diff --git a/lib/irb/completion.rb b/lib/irb/completion.rb index a350013e8e..30d60c2449 100644 --- a/lib/irb/completion.rb +++ b/lib/irb/completion.rb @@ -157,7 +157,7 @@ module IRB select_message(receiver, message, candidates) else - candidates = eval("methods | private_methods | local_variables | type.constants", bind) + candidates = eval("methods | private_methods | local_variables | self.class.constants", bind) (candidates|ReservedWords).grep(/^#{Regexp.quote(input)}/) end diff --git a/lib/irb/context.rb b/lib/irb/context.rb index 1c504451cb..a041a001e4 100644 --- a/lib/irb/context.rb +++ b/lib/irb/context.rb @@ -164,7 +164,7 @@ module IRB end def file_input? - @io.type == FileInputMethod + @io.class == FileInputMethod end def inspect_mode=(opt) diff --git a/lib/irb/init.rb b/lib/irb/init.rb index f238153164..d883b78911 100644 --- a/lib/irb/init.rb +++ b/lib/irb/init.rb @@ -191,7 +191,7 @@ module IRB rescue LoadError, Errno::ENOENT rescue print "load error: #{rc}\n" - print $!.type, ": ", $!, "\n" + print $!.class, ": ", $!, "\n" for err in $@[0, $@.size - 2] print "\t", err, "\n" end @@ -208,7 +208,7 @@ module IRB begin require m rescue - print $@[0], ":", $!.type, ": ", $!, "\n" + print $@[0], ":", $!.class, ": ", $!, "\n" end end end -- cgit v1.2.3