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