compiler/tests/extras/PPCCompositeParserTest.st
changeset 529 439c4057517f
parent 516 3b81c9e53352
child 537 fb212e14d1f4
equal deleted inserted replaced
528:ebfddc82b8bb 529:439c4057517f
   169 setUpBefore
   169 setUpBefore
   170     "Called before any of my tests is run (when resources are set up)"
   170     "Called before any of my tests is run (when resources are set up)"
   171     | time configuration |
   171     | time configuration |
   172 
   172 
   173     configuration := self compilerConfiguration.
   173     configuration := self compilerConfiguration.
   174     configuration arguments parserName: self compiledParserClassName.
   174     configuration options parserName: self compiledParserClassName.
   175     time := Time millisecondsToRun: [
   175     time := Time millisecondsToRun: [
   176         self petitParser compileWithConfiguration: configuration.
   176         self petitParser compileWithConfiguration: configuration.
   177     ].
   177     ].
   178     Transcript show: self petitParserClass name ; show:' compiled in: '; show: time asString; show: 'ms'; cr.
   178     Transcript show: self petitParserClass name ; show:' compiled in: '; show: time asString; show: 'ms'; cr.
   179 
   179