Kevin Driedger
Kevin Driedger

Reputation: 54292

How do I find out references to myObject?

When searching down a memory leak (sticky object) in smalltalk, I would like to get the references to an instance of my objects (retreived by doing a Foo allInstances ).

Upvotes: 4

Views: 106

Answers (1)

Kevin Driedger
Kevin Driedger

Reputation: 54292

In Visual Age Smalltalk:

myObject allReferences

Upvotes: 4

Related Questions