Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!mnetor!seismo!husc6!mit-eddie!ll-xn!ames!oliveb!felix!peterg From: peterg@felix.UUCP (Peter Gruenbeck) Newsgroups: comp.lang.smalltalk Subject: Re: finding instances Message-ID: <3082@felix.UUCP> Date: Thu, 25-Jun-87 14:35:49 EDT Article-I.D.: felix.3082 Posted: Thu Jun 25 14:35:49 1987 Date-Received: Sat, 27-Jun-87 04:40:44 EDT References: <470@cup.portal.com> Sender: daemon@felix.UUCP Reply-To: peterg@felix.UUCP (Peter Gruenbeck) Distribution: world Organization: FileNet Corp., Costa Mesa, CA Lines: 20 In article <470@cup.portal.com> tony_mak_makonnen@cup.portal.com writes: >I am having trouble findind the names of instances I created under >Smalltalk/V . Is there a procedure that does that ? or must I document >every instance I create ? Any help appreciated . In the Digitalk Smalltalk you can execute: Smalltalk inspect which will open an inspector window on the system dictionary. The system dictionary contains: classes, global variables (including itself), and pool dictionaries. You can also send messages to the system dictionary to search for senders and implementors of something. Try Smalltalk sendersOf: #at: and Smalltalk implementorsOf: #at: ------------------------------------------------------ Poor grammar and spelling errors are included on purpose. I print something for everyone. and