Send #shouldImplement instead of #halt:.
authorStefan Vogel <sv@exept.de>
Wed, 02 Aug 2006 11:22:06 +0200
changeset 6839 c25218305e50
parent 6838 c9f98b3c1b8a
child 6840 52d3f2cbf130
Send #shouldImplement instead of #halt:.
CodeGeneratorTool.st
--- a/CodeGeneratorTool.st	Thu Jul 27 10:10:51 2006 +0200
+++ b/CodeGeneratorTool.st	Wed Aug 02 11:22:06 2006 +0200
@@ -1379,7 +1379,7 @@
                         source := source , '    "default value for the ''%2'' instance variable (automatically generated)"\\'. 
                     ].
                     source := source    
-                               , '    self halt:''unfinished code''.\'
+                               , '    self shouldImplement.\'
                                , '    ^ nil.'.
                     source := (source bindWith:varType with:name) withCRs.
                     self compile:source forClass:aClass class inCategory:'defaults'.
@@ -1934,5 +1934,5 @@
 !CodeGeneratorTool class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/CodeGeneratorTool.st,v 1.38 2006-06-07 15:47:22 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/CodeGeneratorTool.st,v 1.39 2006-08-02 09:22:06 stefan Exp $'
 ! !