зеркало из https://github.com/github/ruby.git
27 строки
576 B
Ruby
Executable File
27 строки
576 B
Ruby
Executable File
#!ruby
|
|
|
|
# Filter for preventing Doxygen from processing RDoc comments.
|
|
# Used by the Doxygen template.
|
|
|
|
ARGF.binmode
|
|
source = ARGF.read
|
|
source = source.gsub(%r{/\*([!*])((?!\*/).+?)\*/}m) do |comment|
|
|
marker, comment = $1, $2
|
|
next "/**#{comment}*/" unless /^\s*\*\s?\-\-\s*$/ =~ comment
|
|
doxybody = nil
|
|
comment.each_line do |line|
|
|
if doxybody
|
|
if /^\s*\*\s?\+\+\s*$/ =~ line
|
|
break
|
|
end
|
|
doxybody << line
|
|
else
|
|
if /^\s*\*\s?--\s*$/ =~ line
|
|
doxybody = "\n"
|
|
end
|
|
end
|
|
end
|
|
"/*#{marker}#{doxybody}*/"
|
|
end
|
|
print source
|