Actions
Backport #7983
closedFixnumの演算子がprependでオーバーライドできない
Status:
Closed
Assignee:
Description
=begin
Fixnumの演算子をprependを使ってオーバーライドしても、適用されない。
sendで実行した場合はprependしたmoduleのメソッドが実行される。
【再現手順】
module M
def /(other)
to_f / other
end
end
Fixnum.send(:prepend, M)
1 / 2 #=> 0
1.send(:/, 2) #=> 0.5
=end
Updated by nobu (Nobuyoshi Nakada) over 11 years ago
- Status changed from Open to Closed
- % Done changed from 0 to 100
This issue was solved with changeset r39601.
yuki, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
class.c: check redefinition
- class.c (rb_prepend_module): check redefinition of built-in opimized
methods. [ruby-dev:47124] [Bug #7983] - vm.c (rb_vm_check_redefinition_by_prepend): ditto.
Updated by nobu (Nobuyoshi Nakada) over 11 years ago
- Tracker changed from Bug to Backport
- Project changed from Ruby master to Backport200
- Status changed from Closed to Assigned
- Assignee set to nagachika (Tomoyuki Chikanaga)
Updated by nagachika (Tomoyuki Chikanaga) over 11 years ago
- Status changed from Assigned to Closed
This issue was solved with changeset r39912.
yuki, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
merge revision(s) 39601 and 39602(partially): [Backport #7983]
* class.c (rb_prepend_module): check redefinition of built-in optimized
methods. [ruby-dev:47124] [Bug #7983]
* vm.c (rb_vm_check_redefinition_by_prepend): ditto.
Actions
Like0
Like0Like0Like0