compiler/benchmarks/stx_goodies_petitparser_compiler_benchmarks.st
changeset 420 b2f2f15cef26
child 421 7e08b31e0dae
equal deleted inserted replaced
419:5c502ab8e87d 420:b2f2f15cef26
       
     1 "{ Package: 'stx:goodies/petitparser/compiler/benchmarks' }"
       
     2 
       
     3 LibraryDefinition subclass:#stx_goodies_petitparser_compiler_benchmarks
       
     4 	instanceVariableNames:''
       
     5 	classVariableNames:''
       
     6 	poolDictionaries:''
       
     7 	category:'* Projects & Packages *'
       
     8 !
       
     9 
       
    10 
       
    11 !stx_goodies_petitparser_compiler_benchmarks class methodsFor:'description'!
       
    12 
       
    13 excludedFromPreRequisites
       
    14     "list packages which are to be explicitely excluded from the automatic constructed
       
    15      prerequisites list. If empty, everything that is found along the inheritance of any of
       
    16      my classes is considered to be a prerequisite package."
       
    17 
       
    18     ^ #(
       
    19     )
       
    20 !
       
    21 
       
    22 mandatoryPreRequisites
       
    23     "list packages which are mandatory as a prerequisite.
       
    24      This are packages containing superclasses of my classes and classes which
       
    25      are extended by myself.
       
    26      They are mandatory, because we need these packages as a prerequisite for loading and compiling.
       
    27      This method is generated automatically,
       
    28      by searching along the inheritance chain of all of my classes."
       
    29 
       
    30     ^ #(
       
    31         #'stx:libbasic'    "LibraryDefinition - superclass of stx_goodies_petitparser_compiler_benchmarks"
       
    32     )
       
    33 !
       
    34 
       
    35 referencedPreRequisites
       
    36     "list packages which are a prerequisite, because they contain
       
    37      classes which are referenced by my classes.
       
    38      We do not need these packages as a prerequisite for loading or compiling.
       
    39      This method is generated automatically,
       
    40      by searching all classes (and their packages) which are referenced by my classes."
       
    41 
       
    42     ^ #(
       
    43         #'stx:goodies/petitparser'    "PPContext - referenced by PPCBenchmark>>benchmarkSmalltalkGrammar"
       
    44         #'stx:goodies/petitparser/compiler'    "PPCContext - referenced by PPCBenchmark>>benchmarkSmalltalkGrammarCompiled"
       
    45         #'stx:goodies/petitparser/parsers/smalltalk'    "PPSmalltalkGrammar - referenced by PPCBenchmark>>benchmarkSmalltalkGrammar"
       
    46         #'stx:goodies/refactoryBrowser/parser'    "RBParser - referenced by PPCBenchmark>>benchmarkRBParserC"
       
    47     )
       
    48 !
       
    49 
       
    50 subProjects
       
    51     "list packages which are known as subprojects.
       
    52      The generated makefile will enter those and make there as well.
       
    53      However: they are not forced to be loaded when a package is loaded;
       
    54      for those, redefine requiredPrerequisites."
       
    55 
       
    56     ^ #(
       
    57     )
       
    58 ! !
       
    59 
       
    60 !stx_goodies_petitparser_compiler_benchmarks class methodsFor:'description - contents'!
       
    61 
       
    62 classNamesAndAttributes
       
    63     "lists the classes which are to be included in the project.
       
    64      Each entry in the list may be: a single class-name (symbol),
       
    65      or an array-literal consisting of class name and attributes.
       
    66      Attributes are: #autoload or #<os> where os is one of win32, unix,..."
       
    67 
       
    68     ^ #(
       
    69         "<className> or (<className> attributes...) in load order"
       
    70         PPCBenchmark
       
    71         PPCBenchmarkResources
       
    72         #'stx_goodies_petitparser_compiler_benchmarks'
       
    73     )
       
    74 !
       
    75 
       
    76 extensionMethodNames
       
    77     "list class/selector pairs of extensions.
       
    78      A correponding method with real names must be present in my concrete subclasses"
       
    79 
       
    80     ^ #(
       
    81     )
       
    82 ! !
       
    83 
       
    84 !stx_goodies_petitparser_compiler_benchmarks class methodsFor:'description - project information'!
       
    85 
       
    86 companyName
       
    87     "Returns a company string which will appear in <lib>.rc.
       
    88      Under win32, this is placed into the dlls file-info"
       
    89 
       
    90     ^ 'eXept Software AG'
       
    91 !
       
    92 
       
    93 description
       
    94     "Returns a description string which will appear in nt.def / bc.def"
       
    95 
       
    96     ^ 'Smalltalk/X Class library'
       
    97 !
       
    98 
       
    99 legalCopyright
       
   100     "Returns a copyright string which will appear in <lib>.rc.
       
   101      Under win32, this is placed into the dlls file-info"
       
   102 
       
   103     ^ 'Copyright Claus Gittinger 1988-2014\nCopyright eXept Software AG 1998-2014'
       
   104 !
       
   105 
       
   106 productName
       
   107     "Returns a product name which will appear in <lib>.rc.
       
   108      Under win32, this is placed into the dlls file-info.
       
   109      This method is usually redefined in a concrete application definition"
       
   110 
       
   111     ^ 'Smalltalk/X'
       
   112 ! !
       
   113 
       
   114 !stx_goodies_petitparser_compiler_benchmarks class methodsFor:'documentation'!
       
   115 
       
   116 version_HG
       
   117     ^ '$Changeset: <not expanded> $'
       
   118 ! !
       
   119