Change #halt: to #shouldImplement or #assert:
authorStefan Vogel <sv@exept.de>
Mon, 03 Nov 2008 12:22:46 +0100
changeset 11305 83f14d00b6a7
parent 11304 dbc86babac7d
child 11306 c0c5c6a7054a
Change #halt: to #shouldImplement or #assert:
SharedPool.st
--- a/SharedPool.st	Mon Nov 03 12:20:32 2008 +0100
+++ b/SharedPool.st	Mon Nov 03 12:22:46 2008 +0100
@@ -68,7 +68,7 @@
 
     | aSymbol binding |
 
-self halt:'unfinished implementation'.
+    self shouldImplement.       "not yet finished"
     aSymbol := varName asSymbol.
 
     "First look in classVar dictionary."
@@ -93,8 +93,8 @@
 classBindingOf: varName
     "For initialization messages grant the regular scope"
 
-self halt:'unfinished implementation'.
-    ^super bindingOf: varName
+    self shouldImplement.       "not yet finished"
+    ^ super bindingOf: varName
 !
 
 includesKey:aSymbol
@@ -138,5 +138,5 @@
 !SharedPool class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/SharedPool.st,v 1.5 2008-01-25 10:25:16 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/SharedPool.st,v 1.6 2008-11-03 11:22:46 stefan Exp $'
 ! !