From 91faa496b3d1864fc3c8de34c5cbb0712791686c Mon Sep 17 00:00:00 2001 From: dave Date: Wed, 24 Mar 2004 03:35:24 +0000 Subject: Don't be as eager to invent classes to document git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6010 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/rdoc/parsers/parse_c.rb | 4 +++- lib/rdoc/parsers/parse_rb.rb | 7 ++++--- 2 files changed, 7 insertions(+), 4 deletions(-) (limited to 'lib/rdoc/parsers') diff --git a/lib/rdoc/parsers/parse_c.rb b/lib/rdoc/parsers/parse_c.rb index 2b12411ae9..200519a784 100644 --- a/lib/rdoc/parsers/parse_c.rb +++ b/lib/rdoc/parsers/parse_c.rb @@ -340,8 +340,10 @@ module RDoc meth_body, param_count, source_file = nil) @stats.num_methods += 1 + class_name = @known_classes[var_name] + + return unless class_name - class_name = @known_classes[var_name] || var_name class_obj = find_class(var_name, class_name) if class_obj diff --git a/lib/rdoc/parsers/parse_rb.rb b/lib/rdoc/parsers/parse_rb.rb index f7c5a32dfe..e5276bf6c9 100644 --- a/lib/rdoc/parsers/parse_rb.rb +++ b/lib/rdoc/parsers/parse_rb.rb @@ -1752,9 +1752,10 @@ module RDoc else other = TopLevel.find_class_named(name) unless other - other = @top_level.add_class(NormalClass, name, nil) - other.record_location(@top_level) - other.comment = comment +# other = @top_level.add_class(NormalClass, name, nil) +# other.record_location(@top_level) +# other.comment = comment + other = NormalClass.new("Dummy", nil) end read_documentation_modifiers(other, CLASS_MODIFIERS) parse_statements(other, SINGLE, &block) -- cgit v1.2.3