Hi,

just a simple patch to fix error with STDecompiler ;)

Gwen
diff --git a/packages/stinst/parser/STDecompiler.st b/packages/stinst/parser/STDecompiler.st
index d9dc077..58b31ef 100644
--- a/packages/stinst/parser/STDecompiler.st
+++ b/packages/stinst/parser/STDecompiler.st
@@ -616,7 +616,7 @@ control-structures-as-messages.'>
 	"Answer the set of statements executed by the receiver"
 
 	<category: 'accessing'>
-	^statements
+	^ statements ifNil: [ #() ]
     ]
 
     statements: aCollection [
@@ -1092,9 +1092,9 @@ Object subclass: STDecompiler [
 	'' displayNl.
 	(self decompile: #bindWith: in: CharacterArray) displayNl.
 	'' displayNl.
-	(self decompile: #detect: in: Collection) displayNl.
+	(self decompile: #detect: in: Iterable) displayNl.
 	'' displayNl.
-	(self decompile: #key:value:environment: in: VariableBinding class) 
+	(self decompile: #key:value:environment: in: HomedAssociation class) 
 	    displayNl.
 	'' displayNl.
 	(self decompile: #storeOn: in: VariableBinding) displayNl.
_______________________________________________
help-smalltalk mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/help-smalltalk

Reply via email to