tests/stx_goodies_petitparser_tests.st
changeset 427 a7f5e6de19d2
parent 426 2a65c972b937
equal deleted inserted replaced
426:2a65c972b937 427:a7f5e6de19d2
     1 "{ Encoding: utf8 }"
       
     2 
       
     3 "{ Package: 'stx:goodies/petitparser/tests' }"
     1 "{ Package: 'stx:goodies/petitparser/tests' }"
     4 
     2 
     5 "{ NameSpace: Smalltalk }"
     3 "{ NameSpace: Smalltalk }"
     6 
     4 
     7 LibraryDefinition subclass:#stx_goodies_petitparser_tests
     5 LibraryDefinition subclass:#stx_goodies_petitparser_tests
    63 !
    61 !
    64 
    62 
    65 referencedPreRequisites
    63 referencedPreRequisites
    66     "list packages which are a prerequisite, because they contain
    64     "list packages which are a prerequisite, because they contain
    67      classes which are referenced by my classes.
    65      classes which are referenced by my classes.
    68      We do not need these packages as a prerequisite for loading or compiling.
    66      We do not need these packages as a prerequisite for compiling or loading,
       
    67      however, a class from it may be referenced during execution and having it
       
    68      unloaded then may lead to a runtime doesNotUnderstand error, unless the caller
       
    69      includes explicit checks for the package being present.
    69      This method is generated automatically,
    70      This method is generated automatically,
    70      by searching all classes (and their packages) which are referenced by my classes."
    71      by searching all classes (and their packages) which are referenced by my classes."
    71 
    72 
    72     ^ #(
    73     ^ #(
    73     )
    74     )
   108         PPLambdaParser
   109         PPLambdaParser
   109         PPParserResource
   110         PPParserResource
   110         #'stx_goodies_petitparser_tests'
   111         #'stx_goodies_petitparser_tests'
   111         PPComposedTest
   112         PPComposedTest
   112         PPCompositeParserTest
   113         PPCompositeParserTest
       
   114         PPConditionalParserTest
       
   115         PPConditionalParserTests
   113         PPExtensionTest
   116         PPExtensionTest
   114         PPMappingTest
   117         PPMappingTest
   115         PPObjectTest
   118         PPObjectTest
   116         PPParserTest
   119         PPParserTest
   117         PPPredicateTest
   120         PPPredicateTest