[ruby-core:98495] [Ruby master Bug#11188] Method#inspect for chaining alias methods
From:
merch-redmine@...
Date:
2020-05-24 03:39:58 UTC
List:
ruby-core #98495
Issue #11188 has been updated by jeremyevans0 (Jeremy Evans). Status changed from Open to Closed This patch was merged in commit:adecd43197d5ea2a62a618a5c9be653bcf009c62. ---------------------------------------- Bug #11188: Method#inspect for chaining alias methods https://bugs.ruby-lang.org/issues/11188#change-85772 * Author: ko1 (Koichi Sasada) * Status: Closed * Priority: Normal * Assignee: matz (Yukihiro Matsumoto) * ruby -v: 2.3dev * Backport: 2.0.0: UNKNOWN, 2.1: UNKNOWN, 2.2: UNKNOWN ---------------------------------------- The following script prints strange results (at least for me). ```ruby class C0 def foo end end class C1 < C0 alias foo1 foo alias foo2 foo1 alias foo3 foo2 end p C1.new.method(:foo) p C1.new.method(:foo1) p C1.new.method(:foo2) p C1.new.method(:foo3) ``` Result: ``` #<Method: C1(C0)#foo> #<Method: C1(C0)#foo1(foo)> #<Method: C1#foo2(foo)> #<Method: C1#foo3(foo)> ``` I believe 3rd and 4th results should be: ``` #<Method: C1(C0)#foo2(foo)> #<Method: C1(C0)#foo3(foo)> ``` How about it? ---Files-------------------------------- method-inspect-chain-alias-11188.patch (2.37 KB) -- 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>