compiler/tests/PPCompiledExpressionGrammarResource.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Sat, 02 May 2015 06:29:04 +0200
changeset 443 2c87ed364404
parent 438 20598d7ce9fa
child 453 bd5107faf4d6
permissions -rw-r--r--
Portability: do not use Transcript>>crShow: ...use Transcript show: '...'; cr. which is more portable.

"{ 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> $'
! !