compiler/PPCNodeVisitor.st
changeset 529 439c4057517f
parent 515 b5316ef15274
child 532 132d7898a2a1
--- a/compiler/PPCNodeVisitor.st	Mon Aug 24 22:32:15 2015 +0100
+++ b/compiler/PPCNodeVisitor.st	Mon Aug 24 23:42:53 2015 +0100
@@ -3,7 +3,7 @@
 "{ NameSpace: Smalltalk }"
 
 Object subclass:#PPCNodeVisitor
-	instanceVariableNames:'openSet closeSet cache arguments'
+	instanceVariableNames:'openSet closeSet cache options'
 	classVariableNames:''
 	poolDictionaries:''
 	category:'PetitCompiler-Visitors'
@@ -17,8 +17,8 @@
 
 !PPCNodeVisitor methodsFor:'accessing'!
 
-arguments: args
-    arguments := args
+options: args
+    options := args
 ! !
 
 !PPCNodeVisitor methodsFor:'hooks'!