ruby-core@ruby-lang.org archive (unofficial mirror)
 help / color / mirror / Atom feed
* [ruby-core:110483] [Ruby master Bug#19079] Modules included in a DelegateClass cannot override delegate methods
@ 2022-10-23  3:01 jonathanhefner (Jonathan Hefner)
  2022-10-23  3:02 ` [ruby-core:110484] " jonathanhefner (Jonathan Hefner)
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: jonathanhefner (Jonathan Hefner) @ 2022-10-23  3:01 UTC (permalink / raw)
  To: ruby-core

Issue #19079 has been reported by jonathanhefner (Jonathan Hefner).

----------------------------------------
Bug #19079: Modules included in a DelegateClass cannot override delegate methods
https://bugs.ruby-lang.org/issues/19079

* Author: jonathanhefner (Jonathan Hefner)
* Status: Open
* Priority: Normal
* ruby -v: ruby 3.1.2p20
* Backport: 2.7: UNKNOWN, 3.0: UNKNOWN, 3.1: UNKNOWN
----------------------------------------
Because `DelegateClass` defines delegate methods on the class itself, those delegate methods come first in the method lookup chain.  This prevents included modules from overriding delegate methods:

  ```ruby
  Base = Class.new do
    def foo
      "base"
    end
  end

  Helper = Module.new do
    def foo
      "helper"
    end
  end

  WithHelper = DelegateClass(Base) { include Helper }

  WithHelper.new(Base.new).foo
  # => "base"
  ```

One possible solution would be to define the delegate methods in a separate module.  That way, other modules could come before it in the method lookup chain.



-- 
https://bugs.ruby-lang.org/

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2022-12-01 17:19 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-10-23  3:01 [ruby-core:110483] [Ruby master Bug#19079] Modules included in a DelegateClass cannot override delegate methods jonathanhefner (Jonathan Hefner)
2022-10-23  3:02 ` [ruby-core:110484] " jonathanhefner (Jonathan Hefner)
2022-12-01  5:11 ` [ruby-core:111104] " matz (Yukihiro Matsumoto)
2022-12-01 12:38 ` [ruby-core:111126] " matz (Yukihiro Matsumoto)
2022-12-01 14:57 ` [ruby-core:111129] " Hanmac (Hans Mackowiak)
2022-12-01 17:19 ` [ruby-core:111132] " jonathanhefner (Jonathan Hefner)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).