Flowdock
method

find_override_comment

Importance_0
v1_9_2_180 - Show latest stable - 0 notes - Class: C
find_override_comment(class_name, meth_name) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/rdoc/parser/c.rb, line 446
  def find_override_comment(class_name, meth_name)
    name = Regexp.escape(meth_name)
    if @content =~ %{Document-method:\s+#{class_name}(?:\.|::|#)#{name}\s*?\n((?>.*?\*/))} then
      $1
    elsif @content =~ %{Document-method:\s#{name}\s*?\n((?>.*?\*/))} then
      $1
    end
  end
Register or log in to add new notes.