compiler/tests/PPCompiledExpressionGrammarResource.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Fri, 01 May 2015 14:39:47 +0200
changeset 445 eb33780df2f9
parent 443 2c87ed364404
child 453 bd5107faf4d6
permissions -rw-r--r--
Portability: Inlined #asLegalSelector since Smalltalk/X does not support it

"{ Package: 'stx:goodies/petitparser/compiler/tests' }"

"{ NameSpace: Smalltalk }"

TestResource subclass:#PPCompiledExpressionGrammarResource
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'PetitCompiler-Tests-ExpressionGrammar'
!


!PPCompiledExpressionGrammarResource methodsFor:'as yet unclassified'!

setUp
        | time |
        time := Time millisecondsToRun: [
                PPExpressionGrammar new compileAs: #PPCompiledExpressionGrammar
        ].
        Transcript show: 'Exprssion grammar compiled in: '; show: time asString; show: 'ms'; cr.

    "Modified: / 01-05-2015 / 14:40:23 / Jan Vrany <jan.vrany@fit.cvut.cz>"
! !

!PPCompiledExpressionGrammarResource class methodsFor:'documentation'!

version_HG

    ^ '$Changeset: <not expanded> $'
! !