compiler/tests/PPCNodeFirstFollowNextTests.st
changeset 529 439c4057517f
parent 523 09afcf28ed60
child 534 a949c4fe44df
--- a/compiler/tests/PPCNodeFirstFollowNextTests.st	Mon Aug 24 22:32:15 2015 +0100
+++ b/compiler/tests/PPCNodeFirstFollowNextTests.st	Mon Aug 24 23:42:53 2015 +0100
@@ -25,7 +25,7 @@
 
 setUp
     configuration := PPCConfiguration default.
-    configuration arguments generate: false.
+    configuration options generate: false.
 ! !
 
 !PPCNodeFirstFollowNextTests methodsFor:'support'!
@@ -162,7 +162,7 @@
 !
 
 testFirstNegate1
-    configuration arguments specialize: true.
+    configuration options specialize: true.
     tree := self treeFrom: ('a' asParser negate, 'b' asParser).
     
     first := self first: tree.
@@ -183,7 +183,7 @@
 !
 
 testFirstNot2
-    configuration arguments specialize: true.
+    configuration options specialize: true.
     tree := self treeFrom: (#letter asParser not star, #letter asParser).
     
     first := self first: tree.
@@ -323,7 +323,7 @@
 !
 
 testFirstSequence6
-    configuration arguments specialize: true.
+    configuration options specialize: true.
     tree := self treeFrom: #space asParser star, 'a' asParser.
     
     tree firstFollowCache: nil.
@@ -351,7 +351,7 @@
 !
 
 testFirstStarMessagePredicate2
-    configuration arguments specialize: true.
+    configuration options specialize: true.
     tree := self treeFrom: #space asParser star.
     
     first := self first: tree.
@@ -364,7 +364,7 @@
 !
 
 testFirstTerminal
-    configuration arguments specialize: true.
+    configuration options specialize: true.
     tree := self treeFrom: 'a' asParser not.
 
     first := self first: tree.
@@ -659,7 +659,7 @@
 
 testFollowTrimmingToken
     | token1 token2 |
-    configuration arguments specialize: false.
+    configuration options specialize: false.
     token1 := #letter asParser plus trimmingToken name: 'token1'; yourself.
     token2 := #letter asParser plus trimmingToken name: 'token2'; yourself.