summaryrefslogtreecommitdiff
path: root/lib/irb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-10-02 16:45:35 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-10-02 16:45:35 +0000
commit29cef5f795043a048a58874d90de0dfe01aa12ea (patch)
tree6ae42a518c1c5705b8f097668d2b83413da0b6ec /lib/irb
parent8815306dc5aadd777c887bbd8de7057598ad709c (diff)
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
Diffstat (limited to 'lib/irb')
-rw-r--r--lib/irb/completion.rb2
-rw-r--r--lib/irb/context.rb2
-rw-r--r--lib/irb/init.rb4
3 files changed, 4 insertions, 4 deletions
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