ruby-core@ruby-lang.org archive (unofficial mirror)
 help / color / mirror / Atom feed
From: nobu@ruby-lang.org
To: ruby-core@ruby-lang.org
Subject: [ruby-core:94386] [Ruby master Bug#16107] Module#refine and Module#using behaved unexpectedly
Date: Fri, 16 Aug 2019 13:19:06 +0000 (UTC)	[thread overview]
Message-ID: <redmine.journal-80801.20190816131905.e929e559fa4c763b@ruby-lang.org> (raw)
In-Reply-To: redmine.issue-16107.20190816083455@ruby-lang.org

Issue #16107 has been updated by nobu (Nobuyoshi Nakada).


I shortened the example a little.

```ruby
class A
end

module M1
  refine A do
    def foo
      puts "foo"
    end
  end
end

module M2
  using M1
  refine A do
    A.new.foo
  end
end
```

It seems that a `refine` block does not inherit outer `using`s.


----------------------------------------
Bug #16107: Module#refine and Module#using behaved unexpectedly
https://bugs.ruby-lang.org/issues/16107#change-80801

* Author: UlyssesZhan (有丘 詹)
* Status: Open
* Priority: Normal
* Assignee: 
* Target version: 
* ruby -v: ruby 2.6.0p0 (2018-12-25 revision 66547) [x64-mingw32]
* Backport: 2.5: UNKNOWN, 2.6: UNKNOWN
----------------------------------------
The issue happened when I tried to run the code below:
``` ruby
# Main.rb
class A
end
class B
end

module M1
	refine A do
	  def foo *args
		  puts "foo"
	  end
	end
end

using M1
module M2
	def self.enable_foo
		refine B do
			def call_foo *args
				A.new.foo *args
			end
		end
	end
end

M2.enable_foo
using M2
B.new.call_foo
```
I expected it to output `foo`, but I got this:
```
Traceback (most recent call last):
        1: from Main.rb:28:in `<main>'
Main.rb:20:in `call_foo': undefined method `foo' for #<A:0x000000000719f3a0> (NoMethodError)
Did you mean?  for
```
I tried to put `using M1` in M2 and its singleton class, but the same error was raised.
Maybe it is a Ruby bug. If it is not, I hope to get a workaround when I encounter similiar situations.
`RUBY_VERSION` is `"2.6.0"`, and `RUBY_PLATFORM` is `"x64-mingw32"`.



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

  parent reply	other threads:[~2019-08-16 13:19 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <redmine.issue-16107.20190816083455@ruby-lang.org>
2019-08-16  8:34 ` [ruby-core:94382] [Ruby master Bug#16107] Module#refine and Module#using behaved unexpectedly UlyssesZhan
2019-08-16 10:52 ` [ruby-core:94383] " johnwheeler304
2019-08-16 13:19 ` nobu [this message]
2019-08-16 13:25 ` [ruby-core:94387] " manga.osyo
2019-08-16 15:19 ` [ruby-core:94390] " nobu

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-list from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.ruby-lang.org/en/community/mailing-lists/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=redmine.journal-80801.20190816131905.e929e559fa4c763b@ruby-lang.org \
    --to=ruby-core@ruby-lang.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).