compiler/tests/extras/PPCLL1ExpressionGrammarTest.st
changeset 529 439c4057517f
parent 510 869853decf31
child 537 fb212e14d1f4
equal deleted inserted replaced
528:ebfddc82b8bb 529:439c4057517f
    87 setUpBefore
    87 setUpBefore
    88     "Called before any of my tests is run (when resources are set up)"
    88     "Called before any of my tests is run (when resources are set up)"
    89     | time configuration |
    89     | time configuration |
    90 
    90 
    91     configuration := self compilerConfiguration.
    91     configuration := self compilerConfiguration.
    92     configuration arguments parserName: self compiledParserClassName.
    92     configuration options parserName: self compiledParserClassName.
    93     time := Time millisecondsToRun: [
    93     time := Time millisecondsToRun: [
    94         self petitParser compileWithConfiguration: configuration.
    94         self petitParser compileWithConfiguration: configuration.
    95     ].
    95     ].
    96     Transcript show: self petitParserClass name ; show:' compiled in: '; show: time asString; show: 'ms'; cr.
    96     Transcript show: self petitParserClass name ; show:' compiled in: '; show: time asString; show: 'ms'; cr.
    97 
    97