#valueNowOrOnUnwindDo: -> #ensure:
authorClaus Gittinger <cg@exept.de>
Tue, 26 Feb 2002 14:07:09 +0100
changeset 1253 93bdb3e41f6f
parent 1252 666db3206028
child 1254 a43cdb1d0126
#valueNowOrOnUnwindDo: -> #ensure:
ByteCodeCompiler.st
--- a/ByteCodeCompiler.st	Tue Feb 26 11:53:28 2002 +0100
+++ b/ByteCodeCompiler.st	Tue Feb 26 14:07:09 2002 +0100
@@ -3691,7 +3691,7 @@
         OperatingSystem removeFile:moduleFileName.
         self parseError:'dynamic load failed' position:1.
         ^ #CannotLoad
-    ] valueNowOrOnUnwindDo:[
+    ] ensure:[
         STCKeepSTIntermediate ifFalse:[
             OperatingSystem removeFile:stFileName.
             OperatingSystem removeFile:'errorOutput'.
@@ -3786,6 +3786,6 @@
 !ByteCodeCompiler class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libcomp/ByteCodeCompiler.st,v 1.197 2001-12-11 17:47:10 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/ByteCodeCompiler.st,v 1.198 2002-02-26 13:07:09 cg Exp $'
 ! !
 ByteCodeCompiler initialize!