Sha256: 5654c5b4610102a2af45cae155fd91e4ad66e778a01674dd42888665ca577c04

Contents?: true

Size: 625 Bytes

Versions: 63

Compression:

Stored size: 625 Bytes

Contents

# frozen_string_literal: true
# (see Ruby::PrivateConstantHandler)
class YARD::Handlers::Ruby::Legacy::PrivateConstantHandler < YARD::Handlers::Ruby::Legacy::Base
  handles(/\Aprivate_constant(\s|\(|$)/)
  namespace_only

  process do
    tokval_list(statement.tokens[2..-1], :attr, TkCONSTANT).each do |name|
      privatize_constant name
    end
  end

  private

  def privatize_constant(name)
    const = Proxy.new(namespace, name)
    ensure_loaded!(const)
    const.visibility = :private
  rescue NamespaceMissingError
    raise UndocumentableError, "private visibility set on unrecognized constant: #{name}"
  end
end

Version data entries

63 entries across 62 versions & 9 rubygems

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