Sha256: 92005ade8ffcb4b006214f5d6df481f875d54bbd4c5fe9c97e7eee0753b78354

Contents?: true

Size: 1 KB

Versions: 46

Compression:

Stored size: 1 KB

Contents

# (see Ruby::YieldHandler)
class YARD::Handlers::Ruby::Legacy::YieldHandler < YARD::Handlers::Ruby::Legacy::Base
  handles TkYIELD

  process do
    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, "", [])
    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.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.add_tag YARD::Tags::Tag.new(:yieldparam,
          "the result of the method from the superclass", nil, '_super')
      else
        yieldtag.types << item
      end
    end

    owner.add_tag(yieldtag) unless yieldtag.types.empty?
  end
end

Version data entries

46 entries across 39 versions & 7 rubygems

Version Path
abaci-0.3.0 vendor/bundle/gems/yard-0.9.2/lib/yard/handlers/ruby/legacy/yield_handler.rb
abaci-0.3.0 vendor/bundle/gems/yard-0.9.1/lib/yard/handlers/ruby/legacy/yield_handler.rb
yard-0.9.5 lib/yard/handlers/ruby/legacy/yield_handler.rb
yard-0.9.4 lib/yard/handlers/ruby/legacy/yield_handler.rb
yard-0.9.3 lib/yard/handlers/ruby/legacy/yield_handler.rb
yard-0.9.2 lib/yard/handlers/ruby/legacy/yield_handler.rb
yard-0.9.1 lib/yard/handlers/ruby/legacy/yield_handler.rb
yard-0.9.0 lib/yard/handlers/ruby/legacy/yield_handler.rb
yard-0.8.7.6 lib/yard/handlers/ruby/legacy/yield_handler.rb
yard-0.8.7.5 lib/yard/handlers/ruby/legacy/yield_handler.rb
climine-0.0.7 vendor/bundle/ruby/2.0.0/gems/yard-0.8.7.3/lib/yard/handlers/ruby/legacy/yield_handler.rb
climine-0.0.7 vendor/bundle/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/handlers/ruby/legacy/yield_handler.rb
climine-0.0.6 vendor/bundle/ruby/2.0.0/gems/yard-0.8.7.3/lib/yard/handlers/ruby/legacy/yield_handler.rb
climine-0.0.5 vendor/bundle/ruby/2.0.0/gems/yard-0.8.7.3/lib/yard/handlers/ruby/legacy/yield_handler.rb
yard-0.8.7.4 lib/yard/handlers/ruby/legacy/yield_handler.rb
climine-0.0.4 vendor/bundle/ruby/2.0.0/gems/yard-0.8.7.3/lib/yard/handlers/ruby/legacy/yield_handler.rb
climine-0.0.3 vendor/bundle/ruby/2.0.0/gems/yard-0.8.7.3/lib/yard/handlers/ruby/legacy/yield_handler.rb
mango-0.8.0 vendor/bundler/ruby/2.1.0/gems/yard-0.8.7.3/lib/yard/handlers/ruby/legacy/yield_handler.rb
mango-0.7.1 vendor/bundler/ruby/2.0.0/gems/yard-0.8.7.3/lib/yard/handlers/ruby/legacy/yield_handler.rb
mango-0.7.0 vendor/bundler/ruby/2.0.0/gems/yard-0.8.7.3/lib/yard/handlers/ruby/legacy/yield_handler.rb