compiler/PPCClass.st
changeset 529 439c4057517f
parent 527 9b50ec9a6918
--- a/compiler/PPCClass.st	Mon Aug 24 22:32:15 2015 +0100
+++ b/compiler/PPCClass.st	Mon Aug 24 23:42:53 2015 +0100
@@ -3,7 +3,7 @@
 "{ NameSpace: Smalltalk }"
 
 Object subclass:#PPCClass
-	instanceVariableNames:'methodDictionary currentMethod constants idGen arguments
+	instanceVariableNames:'methodDictionary currentMethod constants idGen options
 		methodStack returnVariable properties'
 	classVariableNames:''
 	poolDictionaries:''
@@ -20,8 +20,8 @@
 
 !PPCClass methodsFor:'accessing'!
 
-arguments: args
-    arguments := args
+options: args
+    options := args
 !
 
 constants