From acd857b9897cf98994e9d798f4e9179cf4a8d6e0 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Wed, 30 Nov 2022 22:59:15 +0900 Subject: [ruby/rdoc] Non-RD part feature has not been imported to RDoc https://github.com/ruby/rdoc/commit/fe0159de2f --- lib/rdoc/rd/block_parser.rb | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/lib/rdoc/rd/block_parser.rb b/lib/rdoc/rd/block_parser.rb index 1241f81762..bfcc126ed2 100644 --- a/lib/rdoc/rd/block_parser.rb +++ b/lib/rdoc/rd/block_parser.rb @@ -127,15 +127,19 @@ def next_token # :nodoc: # non-RD part begin when /^=begin\s+(\w+)/ part = $1 +=begin # not imported to RDoc if @in_part # if in non-RD part @part_content.push(line) else @in_part = part if @tree.filter[part] # if filter exists # p "BEGIN_PART: #{@in_part}" # DEBUG end +=end + @in_part = part # non-RD part end when /^=end/ if @in_part # if in non-RD part +=begin # not imported to RDoc # p "END_PART: #{@in_part}" # DEBUG # make Part-in object part = RDoc::RD::Part.new(@part_content.join(""), @tree, "r") @@ -154,11 +158,14 @@ def next_token # :nodoc: end @in_part = nil return [:SUBTREE, subtree] +=end end else +=begin # not imported to RDoc if @in_part # if in non-RD part @part_content.push(line) end +=end end end -- cgit v1.2.3