Re: [Pharo-dev] Old ClassBuilder remove!
Nicolas wrote:
It has to be more simple than thatâ¦
Probably. I donât do this often enough.
Why not searching for allReferences to true and false, and gather the class of referents?
How is that going to give me the values of the instVars?
This would also remove the limitation of first 10 instancesâ¦
Taking a look at all instances just takes a bit longer... Iâm open to suggestions. Stephan
(true pointersTo collect: #class as: Set) intersection: (false pointersTo collect: #class as: Set) et voila 2013/11/22 Stephan Eggermont <stephan@stack.nl>
Nicolas wrote:
It has to be more simple than thatâ¦
Probably. I donât do this often enough.
Why not searching for allReferences to true and false, and gather the class of referents?
How is that going to give me the values of the instVars?
This would also remove the limitation of first 10 instancesâ¦
Taking a look at all instances just takes a bit longer...
Iâm open to suggestions.
Stephan
OK, got it, nothing tells that they come from same slot... At least you have a pre-filter. 2013/11/22 Nicolas Cellier <nicolas.cellier.aka.nice@gmail.com>
(true pointersTo collect: #class as: Set) intersection: (false pointersTo collect: #class as: Set)
et voila
2013/11/22 Stephan Eggermont <stephan@stack.nl>
Nicolas wrote:
It has to be more simple than thatâ¦
Probably. I donât do this often enough.
Why not searching for allReferences to true and false, and gather the class of referents?
How is that going to give me the values of the instVars?
This would also remove the limitation of first 10 instancesâ¦
Taking a look at all instances just takes a bit longer...
Iâm open to suggestions.
Stephan
participants (2)
-
Nicolas Cellier -
Stephan Eggermont