[MacRuby-devel] [MacRuby] #513: MacRuby gets confused about inheritance under certain conditions

MacRuby ruby-noreply at macosforge.org
Sun Jan 24 19:43:18 PST 2010


#513: MacRuby gets confused about inheritance under certain conditions
-----------------------------------+----------------------------------------
 Reporter:  matthew@…              |       Owner:  lsansonetti@…        
     Type:  defect                 |      Status:  new                  
 Priority:  blocker                |   Milestone:                       
Component:  MacRuby                |    Keywords:                       
-----------------------------------+----------------------------------------

Comment(by matthew@…):

 Replying to [ticket:513 matthew@…]:

 I was looking at this again and realized that I had included an extra line
 in the repro case.

 This:

 {{{
 module Foo
   module Bar
     module Baz
       class Bat
         include Foo::Bar::Baz
         include Foo::Bar::Quux
       end
     end
   end
 end
 }}}

 should be:

 {{{
 module Foo
   module Bar
     module Baz
       class Bat
         include Foo::Bar::Quux
       end
     end
   end
 end
 }}}

 In other words, the first include here is irrelevant.

-- 
Ticket URL: <http://www.macruby.org/trac/ticket/513#comment:2>
MacRuby <http://macruby.org/>



More information about the MacRuby-devel mailing list