# HG changeset patch # User Stefan Vogel # Date 1106750466 -3600 # Node ID 25088287bbd059d0f00eca7c06336f7cff9d259d # Parent fd7eba3420e1dd879cb50753c2b323335d9f0b66 Catch #fromString: (for autoloaded classes from Dolphin) diff -r fd7eba3420e1 -r 25088287bbd0 Autoload.st --- a/Autoload.st Wed Jan 26 15:02:39 2005 +0100 +++ b/Autoload.st Wed Jan 26 15:41:06 2005 +0100 @@ -517,6 +517,12 @@ ^ self doesNotUnderstand:(Message selector:#error) ! +fromString:aString + "catch - load the class and send it to the real one" + + ^ self doesNotUnderstand:(Message selector:#fromString: argument:aString) +! + new "catch new - load the class and resend #new to the real one" @@ -852,7 +858,7 @@ !Autoload class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libbasic/Autoload.st,v 1.128 2004-09-23 13:06:42 stefan Exp $' + ^ '$Header: /cvs/stx/stx/libbasic/Autoload.st,v 1.129 2005-01-26 14:41:06 stefan Exp $' ! ! Autoload initialize!