Sha256: 9ec84dc87ffa75b5434fcc2e312416a71d19565f34b3571884dc047a396ada95

Contents?: true

Size: 1.03 KB

Versions: 61

Compression:

Stored size: 1.03 KB

Contents

# frozen_string_literal: true
# (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

61 entries across 60 versions & 9 rubygems

Version Path
yard-0.9.24 lib/yard/handlers/ruby/legacy/yield_handler.rb
yard-0.9.23 lib/yard/handlers/ruby/legacy/yield_handler.rb
yard-0.9.22 lib/yard/handlers/ruby/legacy/yield_handler.rb
yard-0.9.21 lib/yard/handlers/ruby/legacy/yield_handler.rb
yard-0.9.20 lib/yard/handlers/ruby/legacy/yield_handler.rb
yard-0.9.19 lib/yard/handlers/ruby/legacy/yield_handler.rb
yard-0.9.16 lib/yard/handlers/ruby/legacy/yield_handler.rb
yard-0.9.15 lib/yard/handlers/ruby/legacy/yield_handler.rb
yard-0.9.14 lib/yard/handlers/ruby/legacy/yield_handler.rb
yard-0.9.13 lib/yard/handlers/ruby/legacy/yield_handler.rb
yard-0.9.12 lib/yard/handlers/ruby/legacy/yield_handler.rb
yard-0.9.11 lib/yard/handlers/ruby/legacy/yield_handler.rb
yard-0.9.10 lib/yard/handlers/ruby/legacy/yield_handler.rb
yard-0.9.9 lib/yard/handlers/ruby/legacy/yield_handler.rb
etude_for_ruby-0.1.4 vendor/bundle/ruby/2.2.0/gems/yard-0.9.8/lib/yard/handlers/ruby/legacy/yield_handler.rb
etude_for_ruby-0.1.4 vendor/bundle/ruby/2.4.0/gems/yard-0.9.8/lib/yard/handlers/ruby/legacy/yield_handler.rb
mdg-1.0.1 vendor/bundle/ruby/2.3.0/gems/yard-0.9.8/lib/yard/handlers/ruby/legacy/yield_handler.rb
yard-0.9.8 lib/yard/handlers/ruby/legacy/yield_handler.rb
abaci-0.3.0 vendor/bundle/gems/yard-0.9.7/lib/yard/handlers/ruby/legacy/yield_handler.rb
yard-0.9.7 lib/yard/handlers/ruby/legacy/yield_handler.rb