compiler/tests/extras/extensions.st
changeset 524 f6f68d32de73
equal deleted inserted replaced
515:b5316ef15274 524:f6f68d32de73
       
     1 "{ Package: 'stx:goodies/petitparser/compiler/tests/extras' }"!
       
     2 
       
     3 !PPJavaWhitespaceParser methodsFor:'*PetitCompiler-Extras-Tests'!
       
     4 
       
     5 = anotherParser
       
     6     anotherParser == self ifTrue: [ ^ true ].
       
     7    anotherParser class = self class ifFalse: [ ^ false ].
       
     8  ^ anotherParser name = self name
       
     9 ! !
       
    10 
       
    11 !PPJavaWhitespaceParser methodsFor:'*PetitCompiler-Extras-Tests'!
       
    12 
       
    13 hash
       
    14     ^ self name hash
       
    15 ! !
       
    16 
       
    17 !stx_goodies_petitparser_compiler_tests_extras class methodsFor:'documentation'!
       
    18 
       
    19 extensionsVersion_HG
       
    20 
       
    21     ^ '$Changeset: <not expanded> $'
       
    22 ! !