Sha256: 5f502f2dfc70718601bdc2c460cc3f59db4045788bc2ce44f65dd1703d847095
Contents?: true
Size: 1.05 KB
Versions: 63
Compression:
Stored size: 1.05 KB
Contents
# frozen_string_literal: true # Handles 'yield' calls class YARD::Handlers::Ruby::YieldHandler < YARD::Handlers::Ruby::Base handles :yield, :yield0 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, "", []) if statement.type == :yield statement.jump(:list).children.each do |item| if item == s(:var_ref, s(:kw, "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 == s(:zsuper) 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.source end end end owner.add_tag(yieldtag) unless yieldtag.types.empty? end end
Version data entries
63 entries across 62 versions & 9 rubygems
Version | Path |
---|---|
abaci-0.3.0 | vendor/bundle/gems/yard-0.9.7/lib/yard/handlers/ruby/yield_handler.rb |
yard-0.9.7 | lib/yard/handlers/ruby/yield_handler.rb |
yard-0.9.6 | lib/yard/handlers/ruby/yield_handler.rb |