[MacRuby] #1248: nested module include bug
#1248: nested module include bug -----------------------------------+---------------------------------------- Reporter: lsansonetti@… | Owner: lsansonetti@… Type: defect | Status: new Priority: blocker | Milestone: Component: MacRuby | Keywords: -----------------------------------+---------------------------------------- The following code does not perform as expected. {{{ module M01; end module M02; end module M03; include M02; end module M02; include M01; end module M03; include M02; end p M01.ancestors p M02.ancestors p M03.ancestors }}} Result: {{{ $ ruby19 t.rb [M01] [M02, M01] [M03, M02, M01] $ macruby t.rb [M01] [M02, M01] [M03, M02, M01, M01, M02, M01] }}} -- Ticket URL: <http://www.macruby.org/trac/ticket/1248> MacRuby <http://macruby.org/>
#1248: nested module include bug -----------------------------------+---------------------------------------- Reporter: lsansonetti@… | Owner: lsansonetti@… Type: defect | Status: new Priority: blocker | Milestone: Component: MacRuby | Keywords: -----------------------------------+---------------------------------------- Comment(by martin@…): Still happening as of https://github.com/MacRuby/MacRuby/commit/8b4d3bd0129c385668b1933ec646a14591... -- Ticket URL: <http://www.macruby.org/trac/ticket/1248#comment:2> MacRuby <http://macruby.org/>
participants (1)
-
MacRuby