On 27 January 2011 07:28, HwaJong Oh <daliot.oh@gmail.com> wrote:
Yes, you are right. I was wrong. There is nothing super send. I had error editing my trait codes around "super", so i thought trait can super send. Â http://screencast.com/t/yyjLLm0S
MoveMethod:
FriendOfPointArray >> at: index
    ^(pointArray superAt: index * 2 - 1) @ (pointArray superAt: index * 2)
to
PointArrayTrait >> at: index
    ^(super at: index * 2 - 1) @ (super at: index * 2)
while editing "pointArray superAt:" to "super at:", the editor made error.
Hehe.. funny mistake :) Btw, what is this FriendOfPointArray? The name sounds strange
Copying the code to native Mac editor, edit them, then copy back to Pharo editor suceeded.
-- View this message in context: http://forum.world.st/First-commit-to-Pharoinbox-Need-advice-tp3237535p32415... Sent from the Pharo Smalltalk mailing list archive at Nabble.com.
-- Best regards, Igor Stasenko AKA sig.