def process
return unless owner.is_a?(MethodObject)
return if owner.has_tag? :yield
return if owner.has_tag? :yieldparam
yieldtag = YARD::Tags::Tag.new(:yield, "", [])
owner.docstring.add_tag(yieldtag)
if statement.type == :yield
statement.jump(:list).children.each do |item|
if item == s(:var_ref, s(:kw, "self"))
yieldtag.types << '_self'
owner.docstring.add_tag YARD::Tags::Tag.new(:yieldparam,
"the object that the method was called on", owner.namespace.path, '_self')
elsif item == s(:zsuper)
yieldtag.types << '_super'
owner.docstring.add_tag YARD::Tags::Tag.new(:yieldparam,
"the result of the method from the superclass", nil, '_super')
else
yieldtag.types << item.source
end
end
end
end