compiler/tests/extras/extensions.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Tue, 08 Sep 2015 02:23:45 +0100
changeset 540 694ad2f97c65
parent 524 f6f68d32de73
permissions -rw-r--r--
Merge

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

!PPJavaWhitespaceParser methodsFor:'*PetitCompiler-Extras-Tests'!

= anotherParser
    anotherParser == self ifTrue: [ ^ true ].
   anotherParser class = self class ifFalse: [ ^ false ].
 ^ anotherParser name = self name
! !

!PPJavaWhitespaceParser methodsFor:'*PetitCompiler-Extras-Tests'!

hash
    ^ self name hash
! !

!stx_goodies_petitparser_compiler_tests_extras class methodsFor:'documentation'!

extensionsVersion_HG

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