You want the 'Implementors' of # knownName (every place knownName is defined). In Squeak 4.3 you can search for them by typing knownName and hitting enter into the search box at the top right or by selecting the method name and right-clicking and choosing 'implementors' Which version of squeak are you using? On Sep 25, 2012, at 10:12 PM, "Peter K.H.tion N"<pkhgragert@gmail.com> wrote:
Hallo, Trying to implement the Laser-Game to Pharo I am at the moment stuck at [code]findLaserPathCounter ^ self allMorphs detect: [:t1 | t1 knownName = 'laserPath'] ifNone: [] [/code]
It works in Squeak (1.4) My question is: How do I find the definition of knownName in Squeak ( to fileout and transfer to Pharo)???
It seems to be a method for Morphs but I think I need to know how to question Smalltalk to find a definition of a method with the help of a 'Systembrowser' ?
Greets Peter