compiler/benchmarks/PPCBenchmark.st
changeset 529 439c4057517f
parent 525 751532c8f3db
child 537 fb212e14d1f4
--- a/compiler/benchmarks/PPCBenchmark.st	Mon Aug 24 22:32:15 2015 +0100
+++ b/compiler/benchmarks/PPCBenchmark.st	Mon Aug 24 23:42:53 2015 +0100
@@ -549,8 +549,8 @@
 setupExpressionGrammarCompiled
     
     configuration := PPCConfiguration universal.
-    configuration arguments parserName: #PPCompiledExpressionGrammar.
-    configuration arguments scannerName: #PPCompiledExpressionScanner.
+    configuration options parserName: #PPCompiledExpressionGrammar.
+    configuration options scannerName: #PPCompiledExpressionScanner.
     parser := PPExpressionGrammar new compileWithConfiguration: configuration.
     context := self context.
     context initializeFor: parser.
@@ -560,8 +560,8 @@
 setupExpressionGrammarTokenized
     
     configuration := PPCConfiguration tokenizing.
-    configuration arguments parserName: #PPTokenizedExpressionGrammar.
-    configuration arguments scannerName: #PPTokenizedExpressionScanner.
+    configuration options parserName: #PPTokenizedExpressionGrammar.
+    configuration options scannerName: #PPTokenizedExpressionScanner.
     parser := PPExpressionGrammar new compileWithConfiguration: configuration.
     context := self context.
     context initializeFor: parser.
@@ -600,8 +600,8 @@
 setupLL1ExpressionGrammarCompiled
     
     configuration := PPCConfiguration universal.
-    configuration arguments parserName: #PPCompiledLL1ExpressionGrammar.
-    configuration arguments scannerName: #PPCompiledLL1ExpressionScanner.
+    configuration options parserName: #PPCompiledLL1ExpressionGrammar.
+    configuration options scannerName: #PPCompiledLL1ExpressionScanner.
     parser := PPLL1ExpressionGrammar new compileWithConfiguration: configuration.
     context := self context.
     context initializeFor: parser.
@@ -611,8 +611,8 @@
 setupLL1ExpressionGrammarTokenized
     
     configuration := PPCConfiguration tokenizing.
-    configuration arguments parserName: #PPTokenizedLL1ExpressionGrammar.
-    configuration arguments scannerName: #PPTokenizedLL1ExpressionScanner.
+    configuration options parserName: #PPTokenizedLL1ExpressionGrammar.
+    configuration options scannerName: #PPTokenizedLL1ExpressionScanner.
     parser := PPLL1ExpressionGrammar new compileWithConfiguration: configuration.
     context := self context.
     context initializeFor: parser.
@@ -666,8 +666,8 @@
 setupSmalltalkGrammarCompiled
 
     configuration := PPCConfiguration universal.
-    configuration arguments parserName: #PPSmalltalkGrammarC_Unviersal.
-    configuration arguments profile: profile.
+    configuration options parserName: #PPSmalltalkGrammarC_Unviersal.
+    configuration options profile: profile.
     
     parser := PPSmalltalkGrammar new compileWithConfiguration: configuration.
     context := self context.
@@ -683,9 +683,9 @@
 setupSmalltalkGrammarTokenized
 
     configuration := PPCConfiguration tokenizing.
-    configuration arguments parserName: #PPSmalltalkGrammarC_Tokenizing.
-    configuration arguments scannerName: #PPSmalltalkGrammarC_Scanner.
-    configuration arguments profile: profile.
+    configuration options parserName: #PPSmalltalkGrammarC_Tokenizing.
+    configuration options scannerName: #PPSmalltalkGrammarC_Scanner.
+    configuration options profile: profile.
     
     parser := PPSmalltalkGrammar new compileWithConfiguration: configuration.
     context := self context.