1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
# frozen_string_literal: true
module Zeitwerk::RealModName
#: UnboundMethod
UNBOUND_METHOD_MODULE_NAME = Module.instance_method(:name)
private_constant :UNBOUND_METHOD_MODULE_NAME
# Returns the real name of the class or module.
#
# We need this indirection becasue the `name` method can be overridden, and
# because in practice what we really need is the constant paths of modules
# with a permanent name, not so much what the user considers to be the name of
# a certain class or module of theirs.
#
#: (Module) -> String?
def real_mod_name(mod)
UNBOUND_METHOD_MODULE_NAME.bind_call(mod)
end
end
|