[MacRuby] #654: CALayer has a problem aliasing methods
#654: CALayer has a problem aliasing methods -------------------------------------+-------------------------------------- Reporter: eloy.de.enige@… | Owner: lsansonetti@… Type: defect | Status: new Priority: blocker | Milestone: Component: MacRuby | Keywords: -------------------------------------+-------------------------------------- This only seems to happen on CALayer subclasses: {{{ % cat t.rb framework 'QuartzCore' class X < CALayer attr_accessor :foo alias_method :foo?, :foo end x = X.new p x.foo? x.foo = true p x.foo? % macruby t.rb /Users/eloy/Documents/DEVELOPMENT/MacRuby/macruby/t.rb:4:in `block': undefined method `foo' for class `X' (NameError) from /Users/eloy/Documents/DEVELOPMENT/MacRuby/macruby/t.rb:1:in `<main>' }}} -- Ticket URL: <http://www.macruby.org/trac/ticket/654> MacRuby <http://macruby.org/>
#654: CALayer has a problem aliasing methods -------------------------------------+-------------------------------------- Reporter: eloy.de.enige@… | Owner: lsansonetti@… Type: defect | Status: closed Priority: blocker | Milestone: MacRuby 0.6 Component: MacRuby | Resolution: fixed Keywords: | -------------------------------------+-------------------------------------- Changes (by lsansonetti@…): * status: new => closed * resolution: => fixed * milestone: => MacRuby 0.6 Comment: Should be fixed in r3940. -- Ticket URL: <http://www.macruby.org/trac/ticket/654#comment:1> MacRuby <http://macruby.org/>
participants (1)
-
MacRuby