Sha256: 584ce6919c5cc288b4992513db9ab0e2535b111341467893a9b5a9a8be279f59

Contents?: true

Size: 1.82 KB

Versions: 20

Compression:

Stored size: 1.82 KB

Contents

# frozen_string_literal: true
# Handles the 'include' statement to mixin a module in the instance scope
class YARD::Handlers::Ruby::MixinHandler < YARD::Handlers::Ruby::Base
  handles method_call(:include)
  handles method_call(:prepend)
  namespace_only

  process do
    errors = []
    statement.parameters(false).reverse.each do |mixin|
      begin
        process_mixin(mixin)
      rescue YARD::Parser::UndocumentableError => err
        errors << err.message
      end
    end
    unless errors.empty?
      msg = errors.size == 1 ? ": #{errors[0]}" : "s: #{errors.join(", ")}"
      raise YARD::Parser::UndocumentableError, "mixin#{msg} for class #{namespace.path}"
    end
  end

  protected

  def process_mixin(mixin)
    raise YARD::Parser::UndocumentableError unless mixin.ref?
    raise YARD::Parser::UndocumentableError if mixin.first.type == :ident

    if mixin.type == :var_ref && mixin[0] == s(:kw, "self")
      obj = namespace
    else
      case obj = Proxy.new(namespace, mixin.source)
      when ConstantObject # If a constant is included, use its value as the real object
        obj = Proxy.new(namespace, obj.value, :module)
      else
        obj = Proxy.new(namespace, mixin.source, :module)
      end
    end

    rec = recipient(mixin)
    return if rec.nil?

    ensure_loaded!(rec)
    return if rec.mixins(scope).include?(obj)

    shift = statement.method_name(true) == :include ? :unshift : :push
    rec.mixins(scope).send(shift, obj)
  end

  def recipient(mixin)
    if statement[0].type == :const_path_ref || statement[0].type == :top_const_ref
      Proxy.new(namespace, statement[0].source)
    elsif statement[0].type == :var_ref && statement[0][0] != s(:kw, "self")
      statement[0][0].type == :const ?
        Proxy.new(namespace, statement.namespace.source) :
        nil
    else
      namespace
    end
  end
end

Version data entries

20 entries across 20 versions & 4 rubygems

Version Path
kinetic_sdk-5.0.29 gems/yard-0.9.36/lib/yard/handlers/ruby/mixin_handler.rb
kinetic_sdk-5.0.28 gems/yard-0.9.36/lib/yard/handlers/ruby/mixin_handler.rb
direct7-0.0.18 vendor/bundle/ruby/2.7.0/gems/yard-0.9.34/lib/yard/handlers/ruby/mixin_handler.rb
direct7-0.0.17 vendor/bundle/ruby/2.7.0/gems/yard-0.9.34/lib/yard/handlers/ruby/mixin_handler.rb
direct7-0.0.16 vendor/bundle/ruby/2.7.0/gems/yard-0.9.34/lib/yard/handlers/ruby/mixin_handler.rb
yard-0.9.37 lib/yard/handlers/ruby/mixin_handler.rb
kinetic_sdk-5.0.27 gems/yard-0.9.36/lib/yard/handlers/ruby/mixin_handler.rb
kinetic_sdk-5.0.26 gems/yard-0.9.36/lib/yard/handlers/ruby/mixin_handler.rb
direct7-0.0.13 vendor/bundle/ruby/2.7.0/gems/yard-0.9.34/lib/yard/handlers/ruby/mixin_handler.rb
yard-0.9.36 lib/yard/handlers/ruby/mixin_handler.rb
yard-0.9.35 lib/yard/handlers/ruby/mixin_handler.rb
direct7-0.0.12 vendor/bundle/ruby/2.7.0/gems/yard-0.9.34/lib/yard/handlers/ruby/mixin_handler.rb
getargv-0.3.3-universal-darwin vendor/bundle/ruby/3.3.0/gems/yard-0.9.34/lib/yard/handlers/ruby/mixin_handler.rb
direct7-0.0.11 vendor/bundle/ruby/2.7.0/gems/yard-0.9.34/lib/yard/handlers/ruby/mixin_handler.rb
yard-0.9.34 lib/yard/handlers/ruby/mixin_handler.rb
yard-0.9.33 lib/yard/handlers/ruby/mixin_handler.rb
yard-0.9.32 lib/yard/handlers/ruby/mixin_handler.rb
yard-0.9.31 lib/yard/handlers/ruby/mixin_handler.rb
yard-0.9.30 lib/yard/handlers/ruby/mixin_handler.rb
yard-0.9.29 lib/yard/handlers/ruby/mixin_handler.rb