compiler/tests/PPCOverlappingTokensTest.st
changeset 538 16e8536f5cfb
parent 537 fb212e14d1f4
child 542 bb97dcbe2359
--- a/compiler/tests/PPCOverlappingTokensTest.st	Mon Sep 07 08:20:46 2015 +0100
+++ b/compiler/tests/PPCOverlappingTokensTest.st	Mon Sep 07 11:53:38 2015 +0100
@@ -34,9 +34,9 @@
 !
 
 compile: aPPParser
-    parser := aPPParser compileUsingCompiler: compiler
+    parser := compiler compile: aPPParser.
 
-    "Modified: / 07-09-2015 / 10:08:27 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 07-09-2015 / 12:36:03 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
 context	
@@ -44,12 +44,12 @@
 !
 
 setUp
-    options := (PPCCompilationOptions default)
+    options := (PPCCompilationOptions new)
             profile:true;
             tokenize:true;
             yourself.
     compiler := PPCCompiler new.
-    compiler context options:options.
+    compiler options:options.
     self cleanClass.
     fooToken := ('foo' asParser token trim)
             name:'foo';
@@ -67,7 +67,7 @@
             name:'assignment';
             yourself.
 
-    "Modified: / 04-09-2015 / 16:21:42 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 07-09-2015 / 11:05:05 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
 tearDown