Sha256: 52f19f969799fc4deec793e0b001f1c133bd70b7c7409cdf8bf2338a0d7f34aa

Contents?: true

Size: 1.04 KB

Versions: 6

Compression:

Stored size: 1.04 KB

Contents

class YARD::Handlers::Ruby::YieldHandler < YARD::Handlers::Ruby::Base
  handles :yield, :yield0
  
  def process
    return unless owner.is_a?(MethodObject) # Only methods yield
    return if owner.has_tag? :yield         # Don't override yield tags
    return if owner.has_tag? :yieldparam    # Same thing.

    yieldtag = YARD::Tags::Tag.new(:yield, "", [])
    
    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
    
    owner.docstring.add_tag(yieldtag) unless yieldtag.types.empty?
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
yard-0.5.3 lib/yard/handlers/ruby/yield_handler.rb
yard-0.5.2 lib/yard/handlers/ruby/yield_handler.rb
yard-0.5.1p1 lib/yard/handlers/ruby/yield_handler.rb
yard-0.5.1 lib/yard/handlers/ruby/yield_handler.rb
yard-0.5.0 lib/yard/handlers/ruby/yield_handler.rb
yard-0.4.0 lib/yard/handlers/ruby/yield_handler.rb