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.

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-tp3237535p3241521.html
Sent from the Pharo Smalltalk mailing list archive at Nabble.com.

Reply via email to