LazyMethod.st
changeset 142 c5fd93e97594
parent 135 aa4f7b8f121e
child 190 12df41d666ae
--- a/LazyMethod.st	Thu Nov 23 03:23:14 1995 +0100
+++ b/LazyMethod.st	Thu Nov 23 12:17:11 1995 +0100
@@ -33,10 +33,6 @@
 "
 !
 
-version
-    ^ '$Header: /cvs/stx/stx/libcomp/LazyMethod.st,v 1.15 1995-11-11 15:30:27 cg Exp $'
-!
-
 documentation
 "
     Instances of LazyMethod are created when doing a lazy autoload.
@@ -52,6 +48,10 @@
     which only a small subset is actually used, this can also save
     lots of memory (beside making autoloading faster).
 "
+!
+
+version
+    ^ '$Header: /cvs/stx/stx/libcomp/LazyMethod.st,v 1.16 1995-11-23 11:17:11 cg Exp $'
 ! !
 
 !LazyMethod class methodsFor:'initialization'!
@@ -73,12 +73,6 @@
     ^ CompilationFailedSignal
 ! !
 
-!LazyMethod methodsFor:'queries'!
-
-isLazyMethod
-    ^ true
-! !
-
 !LazyMethod methodsFor:'compiling'!
 
 makeRealMethod
@@ -174,3 +168,11 @@
 		      search:nil
 		      sender:nil
 ! !
+
+!LazyMethod methodsFor:'queries'!
+
+isLazyMethod
+    ^ true
+! !
+
+LazyMethod initialize!