Sha256: 63178038503d230dfa310546a01fe973b608e56b45d4e7f2547d11ccd5bf77dd

Contents?: true

Size: 1001 Bytes

Versions: 5

Compression:

Stored size: 1001 Bytes

Contents

class YARD::Handlers::Ruby::Legacy::YieldHandler < YARD::Handlers::Ruby::Legacy::Base
  handles TkYIELD
  
  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, "", [])
    owner.docstring.add_tag(yieldtag)
    tokval_list(statement.tokens[2..-1], Token).each do |item|
      item = item.inspect unless item.is_a?(String)
      if item == "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 == "super"
        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
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
yard-0.2.3.5 lib/yard/handlers/ruby/legacy/yield_handler.rb
yard-0.2.3.4 lib/yard/handlers/ruby/legacy/yield_handler.rb
yard-0.2.3.2 lib/yard/handlers/ruby/legacy/yield_handler.rb
yard-0.2.3.3 lib/yard/handlers/ruby/legacy/yield_handler.rb
yard-0.2.3 lib/yard/handlers/ruby/legacy/yield_handler.rb