Re: [Jruby-devel] Bug in super handling for modules.

2006-04-19 Thread Charles O Nutter
Yeah, I think we've fixed the others, I just meant this was one more along the same lines.On 4/19/06, Thomas E Enebo < [EMAIL PROTECTED]> wrote:On Wed, 19 Apr 2006, Charles O Nutter defenestrated me: >>There have been myriad issues with super in modules...we'll add this>to the list and try

Re: [Jruby-devel] Bug in super handling for modules.

2006-04-19 Thread Thomas E Enebo
On Wed, 19 Apr 2006, Charles O Nutter defenestrated me: > >There have been myriad issues with super in modules...we'll add this >to the list and try to resolve it. This is the only remaining super problem we know of now though right? We ran the guantlet with the others. It is not too

Re: [Jruby-devel] Bug in super handling for modules.

2006-04-19 Thread Charles O Nutter
There have been myriad issues with super in modules...we'll add this to the list and try to resolve it.On 4/19/06, Ola Bini < [EMAIL PROTECTED]> wrote:Hi.I've found something that seems to be a bug. I have these modules:module A  def initialize(stream)super()  endendmodu