1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Add boot_classes to rdoc parsing, fix a couple of bugs

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5216 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
dave 2003-12-19 03:58:57 +00:00
parent d3b74e1806
commit 8ed8664aa7
7 changed files with 191 additions and 16 deletions

View file

@ -77,7 +77,7 @@ module RI
# Return our full name
def full_namep
def full_name
res = @in_class.full_name
res << "::" unless res.empty?
res << @name
@ -95,7 +95,7 @@ module RI
when nil then @class_methods + @instance_methods
when true then @class_methods
when false then @instance_methods
else fail "Unknown is_class_method"
else fail "Unknown is_class_method: #{is_class_method.inspect}"
end
list.find_all {|m| m.name; m.name[name]}