jemc (Joe McIlvain)
- Login: jemc
- Email: joe.eli.mac@gmail.com
- Registered on: 01/07/2014
- Last sign in: 01/07/2014
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 2 | 2 |
Activity
01/07/2014
-
04:15 PM Ruby Bug #9377 (Closed): Seg fault on call of missing super from self.extended in a Module
- Seg fault on call of missing super from `self.extended` in a Module
on 2.1.0-p0 and on 2.1.0-dev
x86_64 linux
Code to reproduce:
```ruby
module A
def foo; super end
def self.extended(obj)
instance_method(:foo).bind(... -
12:21 PM Ruby Bug #9376 (Closed): Passing do/end block inside decorated method fails, while passing {} block works.
- =begin
Since method (({def})) returns the symbol in 2.1, it opens the door for a decorator pattern in which the method def is the argument to a method.
This currently works, unless the method happens to call another method and pass it ...