From: merch-redmine@... Date: 2020-05-24T03:39:58+00:00 Subject: [ruby-core:98495] [Ruby master Bug#11188] Method#inspect for chaining alias methods 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: ``` # # # # ``` I believe 3rd and 4th results should be: ``` # # ``` How about it? ---Files-------------------------------- method-inspect-chain-alias-11188.patch (2.37 KB) -- https://bugs.ruby-lang.org/ Unsubscribe: