compiler/tests/PPTokenizedLL1ExpressionGrammarResource.st
changeset 465 f729f6cd3c76
parent 463 d4014e0a47a0
parent 464 f6d77fee9811
child 466 ac2d987a03d3
--- a/compiler/tests/PPTokenizedLL1ExpressionGrammarResource.st	Wed May 20 16:47:52 2015 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,27 +0,0 @@
-"{ Package: 'stx:goodies/petitparser/compiler/tests' }"
-
-"{ NameSpace: Smalltalk }"
-
-TestResource subclass:#PPTokenizedLL1ExpressionGrammarResource
-	instanceVariableNames:''
-	classVariableNames:''
-	poolDictionaries:''
-	category:'PetitCompiler-Tests-ExpressionGrammar'
-!
-
-!PPTokenizedLL1ExpressionGrammarResource methodsFor:'as yet unclassified'!
-
-setUp
-    | time configuration |
-    configuration := PPCLL1Configuration new.
-    configuration arguments name:#PPTokenizedLL1ExpressionGrammar.
-    
-    
-    time := Time millisecondsToRun: [
-        PPLL1ExpressionGrammar new compileWithConfiguration: configuration.
-    ].
-    Transcript show: 'Expression grammar compiled in: '; show: time asString; show: 'ms'; cr.
-
-    "Modified: / 12-05-2015 / 01:38:28 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-! !
-