#63: -objectEnumerator troubles ------------------------+--------------------------------------------------- Reporter: z@wzph.com | Owner: lsansonetti@apple.com Type: defect | Status: new Priority: major | Milestone: MacRuby 1.0 Component: MacRuby | Resolution: Keywords: | ------------------------+--------------------------------------------------- Comment (by lsansonetti@apple.com): With trunk as of r465, it seems to work better (no crash! real class name!), but it's still not yielding the right objects yet. {{{ $ macirb
a=[1,2,3] => [1, 2, 3] a.objectEnumerator => #<__NSFastEnumerationEnumerator:0x2e7ef80> e = a.objectEnumerator => #<__NSFastEnumerationEnumerator:0x28f6d50> e.nextObject => 109967364 e.nextObject => 109967368 e.nextObject => 109967372 e.nextObject => nil
}}}
-- Ticket URL: <http://www.macruby.org/trac/ticket/63#comment:4> macruby <http://macruby.org/>