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
yard-0.7.4 lib/yard/handlers/ruby/legacy/private_constant_handler.rb
yard-0.7.3 lib/yard/handlers/ruby/legacy/private_constant_handler.rb
vanity-1.7.1 vendor/ruby/1.9.1/gems/yard-0.7.2/lib/yard/handlers/ruby/legacy/private_constant_handler.rb
yard-0.7.2 lib/yard/handlers/ruby/legacy/private_constant_handler.rb
yard-0.7.1 lib/yard/handlers/ruby/legacy/private_constant_handler.rb
yard-0.7.0 lib/yard/handlers/ruby/legacy/private_constant_handler.rb