analyzer/stx_goodies_petitparser_analyzer.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Fri, 03 Oct 2014 02:33:08 +0100
changeset 377 6112a403a52d
parent 376 a2656b27cace
child 378 53d66ecfeb1b
permissions -rw-r--r--
Updated to latest version from Moose repository. Name: PetitParser-JanKurs.250 Author: JanKurs Time: 01-10-2014, 04:44:04 AM UUID: c46eea20-51a0-4deb-8fd5-8cb99810a8b4 Repository: http://smalltalkhub.com/mc/Moose/PetitParser/main Name: PetitTests-JanKurs.60 Author: JanKurs Time: 29-09-2014, 11:48:10 AM UUID: 28fd2e65-c287-4f73-b71e-5b6bb25bebaa Repository: http://smalltalkhub.com/mc/Moose/PetitParser/main
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
225
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"{ Package: 'stx:goodies/petitparser/analyzer' }"
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
LibraryDefinition subclass:#stx_goodies_petitparser_analyzer
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
	instanceVariableNames:''
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
	classVariableNames:''
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
	poolDictionaries:''
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
	category:'* Projects & Packages *'
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
!
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
376
a2656b27cace Added monticelloName to package definition to ease export to .mcz
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 308
diff changeset
    11
!stx_goodies_petitparser_analyzer class methodsFor:'accessing - monticello'!
a2656b27cace Added monticelloName to package definition to ease export to .mcz
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 308
diff changeset
    12
a2656b27cace Added monticelloName to package definition to ease export to .mcz
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 308
diff changeset
    13
monticelloName
a2656b27cace Added monticelloName to package definition to ease export to .mcz
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 308
diff changeset
    14
    "Return name of the package for Monticello. This is used when package is exported"
a2656b27cace Added monticelloName to package definition to ease export to .mcz
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 308
diff changeset
    15
a2656b27cace Added monticelloName to package definition to ease export to .mcz
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 308
diff changeset
    16
    ^ 'PetitAnalyzer'
a2656b27cace Added monticelloName to package definition to ease export to .mcz
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 308
diff changeset
    17
a2656b27cace Added monticelloName to package definition to ease export to .mcz
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 308
diff changeset
    18
    "Created: / 03-10-2014 / 01:48:26 / Jan Vrany <jan.vrany@fit.cvut.cz>"
a2656b27cace Added monticelloName to package definition to ease export to .mcz
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 308
diff changeset
    19
! !
a2656b27cace Added monticelloName to package definition to ease export to .mcz
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 308
diff changeset
    20
225
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
!stx_goodies_petitparser_analyzer class methodsFor:'description'!
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
excludedFromPreRequisites
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
    "list all packages which should be ignored in the automatic
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    25
     preRequisites scan. See #preRequisites for more."
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    26
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    27
    ^ #(
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    28
    )
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    29
!
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    30
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
mandatoryPreRequisites
377
6112a403a52d Updated to latest version from Moose repository.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 376
diff changeset
    32
    "list packages which are mandatory as a prerequisite.
6112a403a52d Updated to latest version from Moose repository.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 376
diff changeset
    33
     This are packages containing superclasses of my classes and classes which
6112a403a52d Updated to latest version from Moose repository.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 376
diff changeset
    34
     are extended by myself.
6112a403a52d Updated to latest version from Moose repository.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 376
diff changeset
    35
     They are mandatory, because we need these packages as a prerequisite for loading and compiling.
6112a403a52d Updated to latest version from Moose repository.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 376
diff changeset
    36
     This method is generated automatically,
6112a403a52d Updated to latest version from Moose repository.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 376
diff changeset
    37
     by searching along the inheritance chain of all of my classes."
225
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
    ^ #(
377
6112a403a52d Updated to latest version from Moose repository.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 376
diff changeset
    40
        #'stx:goodies/petitparser'    "PPActionParser - extended"
6112a403a52d Updated to latest version from Moose repository.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 376
diff changeset
    41
        #'stx:libbasic'    "LibraryDefinition - superclass of stx_goodies_petitparser_analyzer"
225
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
    )
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
!
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
referencedPreRequisites
377
6112a403a52d Updated to latest version from Moose repository.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 376
diff changeset
    46
    "list packages which are a prerequisite, because they contain
6112a403a52d Updated to latest version from Moose repository.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 376
diff changeset
    47
     classes which are referenced by my classes.
6112a403a52d Updated to latest version from Moose repository.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 376
diff changeset
    48
     We do not need these packages as a prerequisite for loading or compiling.
6112a403a52d Updated to latest version from Moose repository.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 376
diff changeset
    49
     This method is generated automatically,
6112a403a52d Updated to latest version from Moose repository.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 376
diff changeset
    50
     by searching all classes (and their packages) which are referenced by my classes."
225
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    51
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    52
    ^ #(
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    53
    )
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    54
!
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    55
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    56
subProjects
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    57
    "list packages which are known as subprojects.
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    58
     The generated makefile will enter those and make there as well.
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    59
     However: they are not forced to be loaded when a package is loaded;
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    60
     for those, redefine requiredPrerequisites"
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    61
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    62
    ^ #(
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    63
    )
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    64
! !
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    65
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    66
!stx_goodies_petitparser_analyzer class methodsFor:'description - contents'!
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    67
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    68
classNamesAndAttributes
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    69
    "lists the classes which are to be included in the project.
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    70
     Each entry in the list may be: a single class-name (symbol),
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    71
     or an array-literal consisting of class name and attributes.
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    72
     Attributes are: #autoload or #<os> where os is one of win32, unix,..."
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    73
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    74
    ^ #(
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    75
        "<className> or (<className> attributes...) in load order"
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    76
        PPPattern
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    77
        PPProcessor
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    78
        PPRule
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    79
        PPSentinel
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    80
        #'stx_goodies_petitparser_analyzer'
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    81
        PPListPattern
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    82
        PPReplaceRule
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    83
        PPRewriter
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    84
        PPSearchRule
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    85
        PPSearcher
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    86
        PPBlockReplaceRule
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    87
        PPParserReplaceRule
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    88
    )
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    89
!
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    90
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    91
extensionMethodNames
377
6112a403a52d Updated to latest version from Moose repository.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 376
diff changeset
    92
    "list class/selector pairs of extensions.
6112a403a52d Updated to latest version from Moose repository.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 376
diff changeset
    93
     A correponding method with real names must be present in my concrete subclasses"
225
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    94
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    95
    ^ #(
277
Claus Gittinger <cg@exept.de>
parents: 225
diff changeset
    96
        PPActionParser match:inContext:seen:
Claus Gittinger <cg@exept.de>
parents: 225
diff changeset
    97
        PPDelegateParser replace:with:
Claus Gittinger <cg@exept.de>
parents: 225
diff changeset
    98
        PPEpsilonParser isNullable
Claus Gittinger <cg@exept.de>
parents: 225
diff changeset
    99
        PPFailingParser match:inContext:seen:
Claus Gittinger <cg@exept.de>
parents: 225
diff changeset
   100
        PPLimitedRepeatingParser replace:with:
Claus Gittinger <cg@exept.de>
parents: 225
diff changeset
   101
        PPListParser copyInContext:seen:
Claus Gittinger <cg@exept.de>
parents: 225
diff changeset
   102
        PPListParser replace:with:
Claus Gittinger <cg@exept.de>
parents: 225
diff changeset
   103
        PPLiteralParser match:inContext:seen:
Claus Gittinger <cg@exept.de>
parents: 225
diff changeset
   104
        PPOptionalParser isNullable
Claus Gittinger <cg@exept.de>
parents: 225
diff changeset
   105
        PPParser allNamedParsers
Claus Gittinger <cg@exept.de>
parents: 225
diff changeset
   106
        PPParser allNamedParsersDo:
Claus Gittinger <cg@exept.de>
parents: 225
diff changeset
   107
        PPParser allParsers
Claus Gittinger <cg@exept.de>
parents: 225
diff changeset
   108
        PPParser allParsersDo:
Claus Gittinger <cg@exept.de>
parents: 225
diff changeset
   109
        PPParser allParsersDo:seen:
Claus Gittinger <cg@exept.de>
parents: 225
diff changeset
   110
        PPParser copyInContext:
Claus Gittinger <cg@exept.de>
parents: 225
diff changeset
   111
        PPParser copyInContext:seen:
Claus Gittinger <cg@exept.de>
parents: 225
diff changeset
   112
        PPParser cycleSet
Claus Gittinger <cg@exept.de>
parents: 225
diff changeset
   113
        PPParser cycleSet:
Claus Gittinger <cg@exept.de>
parents: 225
diff changeset
   114
        PPParser cycleSet:firstSets:into:
Claus Gittinger <cg@exept.de>
parents: 225
diff changeset
   115
        PPParser firstSet
Claus Gittinger <cg@exept.de>
parents: 225
diff changeset
   116
        PPParser firstSets
Claus Gittinger <cg@exept.de>
parents: 225
diff changeset
   117
        PPParser firstSets:into:
Claus Gittinger <cg@exept.de>
parents: 225
diff changeset
   118
        PPParser followSet
Claus Gittinger <cg@exept.de>
parents: 225
diff changeset
   119
        PPParser followSets
Claus Gittinger <cg@exept.de>
parents: 225
diff changeset
   120
        PPParser followSets:firstSets:into:
Claus Gittinger <cg@exept.de>
parents: 225
diff changeset
   121
        PPParser innerChildren
Claus Gittinger <cg@exept.de>
parents: 225
diff changeset
   122
        PPParser innerChildrenDo:
Claus Gittinger <cg@exept.de>
parents: 225
diff changeset
   123
        PPParser innerChildrenDo:seen:
Claus Gittinger <cg@exept.de>
parents: 225
diff changeset
   124
        PPParser isNullable
Claus Gittinger <cg@exept.de>
parents: 225
diff changeset
   125
        PPParser isTerminal
Claus Gittinger <cg@exept.de>
parents: 225
diff changeset
   126
        PPParser match:inContext:
Claus Gittinger <cg@exept.de>
parents: 225
diff changeset
   127
        PPParser match:inContext:seen:
Claus Gittinger <cg@exept.de>
parents: 225
diff changeset
   128
        PPParser matchList:against:inContext:seen:
Claus Gittinger <cg@exept.de>
parents: 225
diff changeset
   129
        PPParser matchList:index:against:index:inContext:seen:
Claus Gittinger <cg@exept.de>
parents: 225
diff changeset
   130
        PPParser namedChildren
Claus Gittinger <cg@exept.de>
parents: 225
diff changeset
   131
        PPParser namedChildrenDo:
Claus Gittinger <cg@exept.de>
parents: 225
diff changeset
   132
        PPParser namedChildrenDo:seen:
Claus Gittinger <cg@exept.de>
parents: 225
diff changeset
   133
        PPParser replace:with:
Claus Gittinger <cg@exept.de>
parents: 225
diff changeset
   134
        PPParser transform:
Claus Gittinger <cg@exept.de>
parents: 225
diff changeset
   135
        PPPluggableParser match:inContext:seen:
Claus Gittinger <cg@exept.de>
parents: 225
diff changeset
   136
        PPPredicateParser match:inContext:seen:
Claus Gittinger <cg@exept.de>
parents: 225
diff changeset
   137
        PPPredicateSequenceParser match:inContext:seen:
Claus Gittinger <cg@exept.de>
parents: 225
diff changeset
   138
        PPRepeatingParser isNullable
Claus Gittinger <cg@exept.de>
parents: 225
diff changeset
   139
        PPRepeatingParser match:inContext:seen:
Claus Gittinger <cg@exept.de>
parents: 225
diff changeset
   140
        PPSequenceParser cycleSet:
Claus Gittinger <cg@exept.de>
parents: 225
diff changeset
   141
        PPSequenceParser firstSets:into:
Claus Gittinger <cg@exept.de>
parents: 225
diff changeset
   142
        PPSequenceParser followSets:firstSets:into:
Claus Gittinger <cg@exept.de>
parents: 225
diff changeset
   143
        PPTokenParser match:inContext:seen:
225
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   144
    )
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   145
! !
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   146
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   147
!stx_goodies_petitparser_analyzer class methodsFor:'description - project information'!
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   148
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   149
companyName
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   150
    "Return a companyname which will appear in <lib>.rc"
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   151
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   152
    ^ 'eXept Software AG'
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   153
!
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   154
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   155
description
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   156
    "Return a description string which will appear in vc.def / bc.def"
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   157
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   158
    ^ 'Smalltalk/X Class library'
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   159
!
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   160
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   161
legalCopyright
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   162
    "Return a copyright string which will appear in <lib>.rc"
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   163
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   164
    ^ 'Copyright Claus Gittinger 1988-2014\nCopyright eXept Software AG 1998-2014'
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   165
!
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   166
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   167
productName
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   168
    "Return a product name which will appear in <lib>.rc"
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   169
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   170
    ^ 'Smalltalk/X'
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   171
! !
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   172
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   173
!stx_goodies_petitparser_analyzer class methodsFor:'documentation'!
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   174
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   175
version
308
Claus Gittinger <cg@exept.de>
parents: 302
diff changeset
   176
    ^ '$Header: /cvs/stx/stx/goodies/petitparser/analyzer/stx_goodies_petitparser_analyzer.st,v 1.6 2014-03-04 20:29:43 cg Exp $'
225
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   177
!
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   178
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   179
version_CVS
308
Claus Gittinger <cg@exept.de>
parents: 302
diff changeset
   180
    ^ '$Header: /cvs/stx/stx/goodies/petitparser/analyzer/stx_goodies_petitparser_analyzer.st,v 1.6 2014-03-04 20:29:43 cg Exp $'
225
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   181
!
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   182
376
a2656b27cace Added monticelloName to package definition to ease export to .mcz
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 308
diff changeset
   183
version_HG
a2656b27cace Added monticelloName to package definition to ease export to .mcz
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 308
diff changeset
   184
    ^ '$Changeset: <not expanded> $'
a2656b27cace Added monticelloName to package definition to ease export to .mcz
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 308
diff changeset
   185
!
a2656b27cace Added monticelloName to package definition to ease export to .mcz
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 308
diff changeset
   186
225
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   187
version_MC
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   188
    ^ '$PetitAnalyzer-lr.41 608069e1-dadc-4435-abd6-995adf7519e2 2013-03-16T21:52:20 lr$'
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   189
! !
d99d3e951afc initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   190