Sha256: bf8031ae5218df8792def039ae4e10c4a0c0163b9a338528b3fce787f7479a0a

Contents?: true

Size: 594 Bytes

Versions: 106

Compression:

Stored size: 594 Bytes

Contents

# (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

106 entries across 86 versions & 10 rubygems

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