comment
authorClaus Gittinger <cg@exept.de>
Thu, 31 Aug 2000 12:04:54 +0200
changeset 5571 1c522f744719
parent 5570 e6e14f50d721
child 5572 121e985bc542
comment
NameSpace.st
--- a/NameSpace.st	Thu Aug 31 12:03:29 2000 +0200
+++ b/NameSpace.st	Thu Aug 31 12:04:54 2000 +0200
@@ -302,11 +302,13 @@
                 category: category
                 attributes: annotations
 
+    "VW5i compatibility class/namespace creation"
+
     |variable words pointers|
 
     variable := words := pointers := false.
     indexed ~~ #none ifTrue:[
-        self halt.
+        self halt:'not yet implemented'.
     ].
     ^ superclass value class
         name:name 
@@ -322,9 +324,6 @@
         comment:nil
         changed:true
         classInstanceVariableNames:classInstVars
-        
-
-
 ! !
 
 !NameSpace class methodsFor:'enumerating'!
@@ -467,5 +466,5 @@
 !NameSpace class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/NameSpace.st,v 1.39 2000-07-17 17:01:35 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/NameSpace.st,v 1.40 2000-08-31 10:04:54 cg Exp $'
 ! !