Issue #18273 has been updated by fxn (Xavier Noria). Hmm, now that I think, maybe you don't see how this affects Zeitwerk directly. In Zeitwerk, "reloading" means issuing `remove_const` calls to unload, and execute `Module#autoload` calls to be reading to load again fresh definitions. So, in a reload something like this happens: ```ruby C = Class.new D = Class.new(C) # Reload. Object.send(:remove_const, D) D = Class.new(C) C.subclasses # => [D, D] ``` In which situation would you find that? Well, in any situation where `Class#subclasses` is used in the context of reloading. However, I add this comment to further clarify that specific question about Zeitwerk. My remarks are not about Zeitwerk, they are more fundamental, at the language/core API level. ---------------------------------------- Feature #18273: Class#subclasses https://bugs.ruby-lang.org/issues/18273#change-96119 * Author: byroot (Jean Boussier) * Status: Closed * Priority: Normal ---------------------------------------- Ref: https://github.com/rails/rails/pull/43481 Something we forgot to mention in [Feature #14394], is either a parameter or another method to only get direct descendants. Active Support has been offering `Class.subclasses` as: ```ruby def subclasses descendants.select { |descendant| descendant.superclass == self } end ``` It seems a bit silly to grab all descendants and then restrict the list when `Class#descendants` had to do some recursion to get them all in the first place. ### Proposal We could either implement `Class#subclasses` directly, or accept a parameter in `Class#descendants`, e.g. `descendants(immediate = false)`. cc @eregon -- https://bugs.ruby-lang.org/ Unsubscribe: <mailto:ruby-core-request / ruby-lang.org?subject=unsubscribe> <http://lists.ruby-lang.org/cgi-bin/mailman/options/ruby-core>