compiler/tests/PPCOverlappingTokensTest.st
changeset 535 a8feb0f47574
parent 534 a949c4fe44df
child 537 fb212e14d1f4
--- a/compiler/tests/PPCOverlappingTokensTest.st	Sat Aug 29 07:56:14 2015 +0100
+++ b/compiler/tests/PPCOverlappingTokensTest.st	Fri Sep 04 14:06:56 2015 +0100
@@ -44,9 +44,10 @@
 setUp
     options := PPCCompilationOptions default
         profile: true;
+        tokenize: true;
         yourself.
         
-    configuration := PPCTokenizingConfiguration new.
+    configuration := PPCConfiguration new.
     configuration context options: options.
         
     self cleanClass.
@@ -57,7 +58,7 @@
     keywordToken := (#word asParser plus, $: asParser) token trim name: 'kw'; yourself.
     assignmentToken := (':=' asParser) token trim name: 'assignment'; yourself.
 
-    "Modified: / 28-08-2015 / 14:19:50 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 04-09-2015 / 16:21:42 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
 tearDown