<div dir="ltr"><br><br><div class="gmail_quote">On Tue, Oct 7, 2008 at 1:17 PM, Mark Volkmann <span dir="ltr">&lt;<a href="mailto:mark@ociweb.com">mark@ociweb.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Looking at the code in SystemDictionary, it seems that StartUpList and ShutDownList should be classes, but when I do a &quot;find class...&quot; it doesn&#39;t find them. Where are those and how can I find out what&#39;s in them?<br>

<font color="#888888"></font></blockquote><div><br><br>They&#39;re &quot;class pool variables&quot;, which are a sort of global variables. Look at the definition of SystemDictionary:<br><br>&nbsp;IdentityDictionary subclass: #SystemDictionary<br>
&nbsp;&nbsp;&nbsp; instanceVariableNames: &#39;cachedClassNames&#39;<br>&nbsp;&nbsp;&nbsp; classVariableNames: &#39;LastImageName LastQuitLogPosition LowSpaceProcess LowSpaceSemaphore MemoryHogs ShutDownList SpecialSelectors StartUpList StartupStamp SystemChanges&#39;<br>
&nbsp;&nbsp;&nbsp; poolDictionaries: &#39;&#39;<br>&nbsp;&nbsp;&nbsp; category: &#39;System-Support&#39;<br><br>To see how they&#39;re used, click on the &quot;Class variables&quot; button in the browser and select them. The most interesting use is in &quot;SystemDictionary class initialize&quot;.<br>
<br>To actually inspect their values, open up an object explorer on &quot;SystemDictionary&quot; and navigate to &quot;classPool&quot;.<br></div></div><br>Gulik.<br clear="all"><br>-- <br><a href="http://people.squeakfoundation.org/person/mikevdg">http://people.squeakfoundation.org/person/mikevdg</a><br>
<a href="http://gulik.pbwiki.com/">http://gulik.pbwiki.com/</a><br>
</div>