compiler/PPCUniversalConfiguration.st
changeset 529 439c4057517f
parent 524 f6f68d32de73
child 530 e36906742693
--- a/compiler/PPCUniversalConfiguration.st	Mon Aug 24 22:32:15 2015 +0100
+++ b/compiler/PPCUniversalConfiguration.st	Mon Aug 24 23:42:53 2015 +0100
@@ -17,7 +17,7 @@
     
     builder := PPCClassBuilder new.
     
-    builder compiledClassName: arguments parserName.
+    builder compiledClassName: options parserName.
     builder compiledSuperclass: PPCompiledParser.
     builder methodDictionary: clazz methodDictionary.
     builder constants: clazz constants.
@@ -48,17 +48,17 @@
 
 codeGenerator
     ^ PPCUniversalCodeGenerator new
-        arguments: arguments
+        options: options
 ! !
 
 !PPCUniversalConfiguration methodsFor:'phases'!
 
 generate
     | rootMethod compiledParser |
-    arguments generate ifFalse: [ ^ self ].
+    options generate ifFalse: [ ^ self ].
     
     rootMethod := self codeGenerator
-        arguments: arguments;
+        options: options;
         clazz: clazz;
         visit: ir.