compiler/tests/PPCNodeFirstFollowNextTests.st
changeset 538 16e8536f5cfb
parent 537 fb212e14d1f4
--- a/compiler/tests/PPCNodeFirstFollowNextTests.st	Mon Sep 07 08:20:46 2015 +0100
+++ b/compiler/tests/PPCNodeFirstFollowNextTests.st	Mon Sep 07 11:53:38 2015 +0100
@@ -24,10 +24,10 @@
 !PPCNodeFirstFollowNextTests methodsFor:'setup'!
 
 setUp
-    compiler := PPCCompiler default.
+    compiler := PPCCompiler new.
     compiler context options generate:false.
 
-    "Modified: / 28-08-2015 / 14:17:57 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 07-09-2015 / 11:38:31 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
 !PPCNodeFirstFollowNextTests methodsFor:'support'!
@@ -75,7 +75,7 @@
 !
 
 treeFrom: parser
-    ^ parser compileUsingCompiler: compiler
+    ^ compiler compile: parser
 
     "Modified: / 07-09-2015 / 10:08:05 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !