[Pharo-project] users of thisContext
Hi -- I am trying to find the methods who make reference to the *thisContext * pseudo variable. Any ideas how to get that list? - Francisco
my first guess... Use the Finder and search the source code WorldMenu / Tools / Finder and change search mode to source code (note that it will take a while to search the whole image) best cami On 2012-05-07, at 10:27, Francisco Garau wrote:
Hi -- I am trying to find the methods who make reference to the thisContext pseudo variable.
Any ideas how to get that list?
- Francisco
In the context menu of the workspace you have the option extended search... -> method source with it It's kinda hidden, but very helpful :). On Mon, May 7, 2012 at 11:25 AM, Camillo Bruni <camillobruni@gmail.com>wrote:
my first guess... Use the Finder and search the source code
WorldMenu / Tools / Finder
and change search mode to source code (note that it will take a while to search the whole image)
best cami
On 2012-05-07, at 10:27, Francisco Garau wrote:
Hi -- I am trying to find the methods who make reference to the thisContext pseudo variable.
Any ideas how to get that list?
- Francisco
On Mon, May 7, 2012 at 1:27 AM, Francisco Garau <francisco.garau@gmail.com>wrote:
Hi -- I am trying to find the methods who make reference to the * thisContext* pseudo variable.
Any ideas how to get that list?
SystemNavigation new browseAllSelect: [:m| m scanFor: 137] 137 is the bytecode for pushThisContext. See BytecodeEncoder and subclasses. Or print e.g. thisContext method symbolic
- Francisco
-- best, Eliot
participants (4)
-
Camillo Bruni -
Eliot Miranda -
Francisco Garau -
Guillermo Polito