'From Squeak3.7alpha of 11 September 2003 [latest update: #5765] on 9 March 2004 at 10:27:22 am'! "Change Set: PseudoClassPrettyPrintFix-nk Date: 9 March 2004 Author: Ned Konz As reported by David Shaffer, If color pretty printing are enabled, if a method being viewed in the FileContentsBrowser includes an i-var reference which the PseudoClass can't find in it's scope table, you get the attached stack trace. I'm not exactly sure how PseudoClass is supposed to work so I don't know if this is considered a bug (*) in that class but I think that the browser should non-pretty print the text if parsing fails. This CS adds instVarNames to PseudoClass to avoid this bug. "! !PseudoClass methodsFor: 'accessing' stamp: 'nk 3/9/2004 10:24'! instVarNames ^ #()! !