compiler/tests/PPCompiledExpressionGrammarResource.st
changeset 452 9f4558b3be66
parent 438 20598d7ce9fa
child 453 bd5107faf4d6
child 459 4751c407bb40
--- a/compiler/tests/PPCompiledExpressionGrammarResource.st	Thu Apr 30 23:43:14 2015 +0200
+++ b/compiler/tests/PPCompiledExpressionGrammarResource.st	Sun May 10 06:28:36 2015 +0100
@@ -12,11 +12,15 @@
 !PPCompiledExpressionGrammarResource methodsFor:'as yet unclassified'!
 
 setUp
-	| time |
-	time := Time millisecondsToRun: [
-		PPExpressionGrammar new compileAs: #PPCompiledExpressionGrammar
-	].
-	Transcript crShow: 'Exprssion grammar compiled in: ', time asString, 'ms'.
-	
+    | time configuration |
+    configuration := PPCLL1Configuration new.
+    configuration arguments name:#PPCompiledExpressionGrammar.
+    
+    
+    time := Time millisecondsToRun: [
+        PPExpressionGrammar new compileWithConfiguration: configuration.
+    ].
+    Transcript crShow: 'Expression grammar compiled in: ', time asString, 'ms'.
+    
 ! !