From 0e8f4681e6ceaa69bc2bf88621c2cad4d2d70563 Mon Sep 17 00:00:00 2001 From: dave Date: Wed, 5 May 2004 17:02:47 +0000 Subject: Don't include &block if we have yield parameters git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@6248 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/rdoc/code_objects.rb | 6 ++++++ lib/rdoc/generators/html_generator.rb | 5 +++++ lib/rdoc/parsers/parse_rb.rb | 1 + 3 files changed, 12 insertions(+) (limited to 'lib') diff --git a/lib/rdoc/code_objects.rb b/lib/rdoc/code_objects.rb index 1d2e4d212..9bacab8f6 100644 --- a/lib/rdoc/code_objects.rb +++ b/lib/rdoc/code_objects.rb @@ -597,6 +597,12 @@ module RDoc p = "(" + p + ")" unless p[0] == ?( if (block = block_params) + # If this method has explicit block parameters, remove any + # explicit &block +$stderr.puts p + p.sub!(/,?\s*&\w+/) +$stderr.puts p + block.gsub!(/\s*\#.*/, '') block = block.tr("\n", " ").squeeze(" ") if block[0] == ?( diff --git a/lib/rdoc/generators/html_generator.rb b/lib/rdoc/generators/html_generator.rb index 75b056b8b..13d63e5a3 100644 --- a/lib/rdoc/generators/html_generator.rb +++ b/lib/rdoc/generators/html_generator.rb @@ -922,6 +922,11 @@ module Generators p = "(" + p + ")" unless p[0] == ?( if (block = @context.block_params) + # If this method has explicit block parameters, remove any + # explicit &block + + p.sub!(/,?\s*&\w+/, '') + block.gsub!(/\s*\#.*/, '') block = block.tr("\n", " ").squeeze(" ") if block[0] == ?( diff --git a/lib/rdoc/parsers/parse_rb.rb b/lib/rdoc/parsers/parse_rb.rb index 6876cfe0f..1a3874fe2 100644 --- a/lib/rdoc/parsers/parse_rb.rb +++ b/lib/rdoc/parsers/parse_rb.rb @@ -1968,6 +1968,7 @@ module RDoc remove_token_listener(meth) meth.comment = comment + end def skip_method(container) -- cgit