On 07 Aug 2014, at 11:17, Marcus Denker <marcus.denker@inria.fr> wrote:
Hi,
Pharo4 #155 now contains a Pointer explorer build with the Eye Tree Inspector framework:
EyePointerExplorer openOn: #zot
EyePointerExplorer openStrongOn: #zot
Why is this needed? âââââââââ
Currently we still use a sub lass of ObjectExplorer for the PointerExplorer, which means that we can remove the whole package Tool-Explorer now that we have one based on the new inspector.
Next step? ââââââ
- put the new tool as the default (and unify Smalltalk tools strongPointerExplorer with pointerExplorer) Done in #156
Note that there is now *only* #pointerExplorer for tools. (which then has to provide openOn: and openStrongOn:)
- remove package Tool-Explorer (ca. 700 Loc, 6 classes)
after https://pharo.fogbugz.com/f/cases/13794/Make-Tools-Explorer-unloadable we can just unload it. Marcus