compiler/benchmarks/PPCSmalltalkNoopParserTests.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Sat, 16 May 2015 19:21:00 +0100
changeset 462 89464ab03518
permissions -rw-r--r--
Added benchmark of a smalltalk parser with empty actions. This is used to check the cost of compiled actions

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

"{ NameSpace: Smalltalk }"

PPSmalltalkGrammarTests subclass:#PPCSmalltalkNoopParserTests
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'PetitCompiler-Benchmarks-Parsers-Tests'
!

!PPCSmalltalkNoopParserTests methodsFor:'accessing'!

parserClass
        ^ PPCSmalltalkNoopParser

    "Created: / 15-05-2015 / 09:00:45 / Jan Vrany <jan.vrany@fit.cvut.cz>"
! !