This project is closed and read-only.
Actions
Backport #8416
closedsuper does not forward either named or anonymous **
Backport #8416:
super does not forward either named or anonymous **
Status:
Closed
Assignee:
Description
irb(main):015:0> class Super; def self.foo(h); h; end; end; class Sub < Super; def self.foo(); super; end; end; Sub.foo(a: 1)
=> {}
Updated by marcandre (Marc-Andre Lafortune) over 13 years ago
- Category set to core
- Assignee set to nobu (Nobuyoshi Nakada)
- Priority changed from Normal to 5
Updated by nobu (Nobuyoshi Nakada) over 13 years ago
- Backport changed from 1.9.3: UNKNOWN, 2.0.0: UNKNOWN to 2.0.0: REQUIRED
Updated by nobu (Nobuyoshi Nakada) over 13 years ago
- Status changed from Open to Closed
- % Done changed from 0 to 100
This issue was solved with changeset r40807.
First, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
compile.c: forward kwrest
- compile.c (iseq_compile_each): forward anonymous and first keyword
rest argument one. [ruby-core:55033] [Bug #8416].
Updated by nagachika (Tomoyuki Chikanaga) over 13 years ago
- Tracker changed from Bug to Backport
- Project changed from Ruby to 15
- Category deleted (
core) - Status changed from Closed to Assigned
- Assignee changed from nobu (Nobuyoshi Nakada) to nagachika (Tomoyuki Chikanaga)
Updated by nagachika (Tomoyuki Chikanaga) over 13 years ago
- Status changed from Assigned to Closed
This issue was solved with changeset r41051.
First, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
merge revision(s) 40807: [Backport #8416]
* compile.c (iseq_compile_each): forward anonymous and first keyword
rest argument one. [ruby-core:55033] [Bug #8416].
Actions