PrimitiveNode.st
author Jan Vrany <jan.vrany@labware.com>
Thu, 27 Oct 2022 14:53:59 +0100
branchjv
changeset 4735 3b11fb3ede98
parent 3836 fa78fd27bebf
permissions -rw-r--r--
Allow single underscore as method / block argument and temporaries This commit is a follow up for 38b221e.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
     1
"
4
f6fd83437415 *** empty log message ***
claus
parents: 3
diff changeset
     2
 COPYRIGHT (c) 1990 by Claus Gittinger
53
c5dd7abf8431 *** empty log message ***
claus
parents: 33
diff changeset
     3
	      All Rights Reserved
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
     4
7ad01559b262 Initial revision
claus
parents:
diff changeset
     5
 This software is furnished under a license and may be used
7ad01559b262 Initial revision
claus
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
7ad01559b262 Initial revision
claus
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
7ad01559b262 Initial revision
claus
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
7ad01559b262 Initial revision
claus
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
7ad01559b262 Initial revision
claus
parents:
diff changeset
    10
 hereby transferred.
7ad01559b262 Initial revision
claus
parents:
diff changeset
    11
"
1046
8e5818442eb9 newCode (for rel5)
Claus Gittinger <cg@exept.de>
parents: 1035
diff changeset
    12
"{ Package: 'stx:libcomp' }"
8e5818442eb9 newCode (for rel5)
Claus Gittinger <cg@exept.de>
parents: 1035
diff changeset
    13
3836
fa78fd27bebf #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 2602
diff changeset
    14
"{ NameSpace: Smalltalk }"
fa78fd27bebf #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 2602
diff changeset
    15
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
    16
StatementNode subclass:#PrimitiveNode
261
0372e948ca2d commentary
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
    17
	instanceVariableNames:'code primNumber optional'
0372e948ca2d commentary
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
    18
	classVariableNames:''
0372e948ca2d commentary
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
    19
	poolDictionaries:''
0372e948ca2d commentary
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
    20
	category:'System-Compiler-Support'
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
    21
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
    22
20
f8dd8ba75205 *** empty log message ***
claus
parents: 4
diff changeset
    23
!PrimitiveNode class methodsFor:'documentation'!
f8dd8ba75205 *** empty log message ***
claus
parents: 4
diff changeset
    24
f8dd8ba75205 *** empty log message ***
claus
parents: 4
diff changeset
    25
copyright
f8dd8ba75205 *** empty log message ***
claus
parents: 4
diff changeset
    26
"
f8dd8ba75205 *** empty log message ***
claus
parents: 4
diff changeset
    27
 COPYRIGHT (c) 1990 by Claus Gittinger
53
c5dd7abf8431 *** empty log message ***
claus
parents: 33
diff changeset
    28
	      All Rights Reserved
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
    29
20
f8dd8ba75205 *** empty log message ***
claus
parents: 4
diff changeset
    30
 This software is furnished under a license and may be used
f8dd8ba75205 *** empty log message ***
claus
parents: 4
diff changeset
    31
 only in accordance with the terms of that license and with the
f8dd8ba75205 *** empty log message ***
claus
parents: 4
diff changeset
    32
 inclusion of the above copyright notice.   This software may not
f8dd8ba75205 *** empty log message ***
claus
parents: 4
diff changeset
    33
 be provided or otherwise made available to, or used by, any
f8dd8ba75205 *** empty log message ***
claus
parents: 4
diff changeset
    34
 other person.  No title to or ownership of the software is
f8dd8ba75205 *** empty log message ***
claus
parents: 4
diff changeset
    35
 hereby transferred.
f8dd8ba75205 *** empty log message ***
claus
parents: 4
diff changeset
    36
"
f8dd8ba75205 *** empty log message ***
claus
parents: 4
diff changeset
    37
!
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
    38
20
f8dd8ba75205 *** empty log message ***
claus
parents: 4
diff changeset
    39
documentation
f8dd8ba75205 *** empty log message ***
claus
parents: 4
diff changeset
    40
"
f8dd8ba75205 *** empty log message ***
claus
parents: 4
diff changeset
    41
    node for parse-trees, representing primitive code
261
0372e948ca2d commentary
Claus Gittinger <cg@exept.de>
parents: 148
diff changeset
    42
    This is a helper class for the compiler.
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
    43
126
Claus Gittinger <cg@exept.de>
parents: 104
diff changeset
    44
    Primitives are (currently) not always supported by the incremental compiler 
20
f8dd8ba75205 *** empty log message ***
claus
parents: 4
diff changeset
    45
    - if you want a primitive, you must use the stc-compiler and 
f8dd8ba75205 *** empty log message ***
claus
parents: 4
diff changeset
    46
    link a new smalltalk.
f8dd8ba75205 *** empty log message ***
claus
parents: 4
diff changeset
    47
126
Claus Gittinger <cg@exept.de>
parents: 104
diff changeset
    48
    On system which support dynamic object loading, methods with primitives are passed 
Claus Gittinger <cg@exept.de>
parents: 104
diff changeset
    49
    to stc and the resulting binary is loaded into the image 
Claus Gittinger <cg@exept.de>
parents: 104
diff changeset
    50
    (also a limited set of numeric primitives could be implemented for more ST-80 
Claus Gittinger <cg@exept.de>
parents: 104
diff changeset
    51
     compatibility - if there is a need).
Claus Gittinger <cg@exept.de>
parents: 104
diff changeset
    52
Claus Gittinger <cg@exept.de>
parents: 104
diff changeset
    53
    To allow autoloaded/filedIn code to be written for best performance, an optional
Claus Gittinger <cg@exept.de>
parents: 104
diff changeset
    54
    primitive directive (in the primitives first lines comment) may specify an
Claus Gittinger <cg@exept.de>
parents: 104
diff changeset
    55
    optional primitive; these are compiled on systems which do support binary code
Claus Gittinger <cg@exept.de>
parents: 104
diff changeset
    56
    loading, and ignored completely on others.
263
3b21d0991eff documentation
Claus Gittinger <cg@exept.de>
parents: 261
diff changeset
    57
3b21d0991eff documentation
Claus Gittinger <cg@exept.de>
parents: 261
diff changeset
    58
    [author:]
3b21d0991eff documentation
Claus Gittinger <cg@exept.de>
parents: 261
diff changeset
    59
        Claus Gittinger
20
f8dd8ba75205 *** empty log message ***
claus
parents: 4
diff changeset
    60
"
f8dd8ba75205 *** empty log message ***
claus
parents: 4
diff changeset
    61
! !
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
    62
7ad01559b262 Initial revision
claus
parents:
diff changeset
    63
!PrimitiveNode class methodsFor:'instance creation'!
7ad01559b262 Initial revision
claus
parents:
diff changeset
    64
7ad01559b262 Initial revision
claus
parents:
diff changeset
    65
code:aString
7ad01559b262 Initial revision
claus
parents:
diff changeset
    66
    ^ self basicNew code:aString
7ad01559b262 Initial revision
claus
parents:
diff changeset
    67
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
    68
7ad01559b262 Initial revision
claus
parents:
diff changeset
    69
primitiveNumber:anInteger
7ad01559b262 Initial revision
claus
parents:
diff changeset
    70
    ^ self basicNew primitiveNumber:anInteger
7ad01559b262 Initial revision
claus
parents:
diff changeset
    71
! !
7ad01559b262 Initial revision
claus
parents:
diff changeset
    72
7ad01559b262 Initial revision
claus
parents:
diff changeset
    73
!PrimitiveNode methodsFor:'accessing'!
7ad01559b262 Initial revision
claus
parents:
diff changeset
    74
7ad01559b262 Initial revision
claus
parents:
diff changeset
    75
code:aString
126
Claus Gittinger <cg@exept.de>
parents: 104
diff changeset
    76
    "set the primitives code - check for the 'OPTIONAL' directive"
Claus Gittinger <cg@exept.de>
parents: 104
diff changeset
    77
Claus Gittinger <cg@exept.de>
parents: 104
diff changeset
    78
    |firstLine commentPos words|
Claus Gittinger <cg@exept.de>
parents: 104
diff changeset
    79
Claus Gittinger <cg@exept.de>
parents: 104
diff changeset
    80
    code := aString.
Claus Gittinger <cg@exept.de>
parents: 104
diff changeset
    81
    optional := false.
Claus Gittinger <cg@exept.de>
parents: 104
diff changeset
    82
Claus Gittinger <cg@exept.de>
parents: 104
diff changeset
    83
    firstLine := aString readStream nextLine.
Claus Gittinger <cg@exept.de>
parents: 104
diff changeset
    84
    commentPos := firstLine indexOfSubCollection:'/*'.
Claus Gittinger <cg@exept.de>
parents: 104
diff changeset
    85
    commentPos ~~ 0 ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 104
diff changeset
    86
	words := (firstLine copyFrom:(commentPos + 2)) asCollectionOfWords.
Claus Gittinger <cg@exept.de>
parents: 104
diff changeset
    87
	(words includes:'OPTIONAL') ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 104
diff changeset
    88
	    optional := true
Claus Gittinger <cg@exept.de>
parents: 104
diff changeset
    89
	]
Claus Gittinger <cg@exept.de>
parents: 104
diff changeset
    90
    ]
Claus Gittinger <cg@exept.de>
parents: 104
diff changeset
    91
Claus Gittinger <cg@exept.de>
parents: 104
diff changeset
    92
    "Modified: 24.10.1995 / 11:29:51 / cg"
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
    93
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
    94
7ad01559b262 Initial revision
claus
parents:
diff changeset
    95
primitiveNumber:anInteger 
126
Claus Gittinger <cg@exept.de>
parents: 104
diff changeset
    96
    optional := false.
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
    97
    primNumber := anInteger
7ad01559b262 Initial revision
claus
parents:
diff changeset
    98
! !
7ad01559b262 Initial revision
claus
parents:
diff changeset
    99
3836
fa78fd27bebf #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 2602
diff changeset
   100
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   101
!PrimitiveNode methodsFor:'code generation'!
7ad01559b262 Initial revision
claus
parents:
diff changeset
   102
104
claus
parents: 103
diff changeset
   103
codeForSideEffectOn:aStream inBlock:b for:aCompiler
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   104
    "catch code generation"
7ad01559b262 Initial revision
claus
parents:
diff changeset
   105
126
Claus Gittinger <cg@exept.de>
parents: 104
diff changeset
   106
    optional ifTrue:[^ self].
1049
0b69b110f150 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1046
diff changeset
   107
    aCompiler class newPrimitives == true ifTrue:[^ self].
940
84c858922dc3 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
   108
    self error:'cannot compile primitives (as yet)' mayProceed:true
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   109
!
7ad01559b262 Initial revision
claus
parents:
diff changeset
   110
104
claus
parents: 103
diff changeset
   111
codeOn:aStream inBlock:b for:aCompiler
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   112
    "catch code generation"
7ad01559b262 Initial revision
claus
parents:
diff changeset
   113
126
Claus Gittinger <cg@exept.de>
parents: 104
diff changeset
   114
    optional ifTrue:[^ self].
1049
0b69b110f150 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1046
diff changeset
   115
    aCompiler class newPrimitives == true ifTrue:[^ self].
940
84c858922dc3 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
   116
    self error:'cannot compile primitives (as yet)' mayProceed:true
0
7ad01559b262 Initial revision
claus
parents:
diff changeset
   117
! !
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   118
1585
63f4b846bf3d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1383
diff changeset
   119
!PrimitiveNode methodsFor:'enumerating'!
63f4b846bf3d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1383
diff changeset
   120
63f4b846bf3d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1383
diff changeset
   121
nodeDo:anEnumerator
63f4b846bf3d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1383
diff changeset
   122
    "helper for parse tree walking"
63f4b846bf3d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1383
diff changeset
   123
63f4b846bf3d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1383
diff changeset
   124
    ^ anEnumerator doPrimitive:self code:code primitiveIndex:primNumber
63f4b846bf3d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1383
diff changeset
   125
! !
63f4b846bf3d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1383
diff changeset
   126
1035
8848672cb893 category rename
Claus Gittinger <cg@exept.de>
parents: 940
diff changeset
   127
!PrimitiveNode methodsFor:'evaluation'!
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   128
1383
3d485eefbb36 evaluate -> evaluateIn:
Claus Gittinger <cg@exept.de>
parents: 1049
diff changeset
   129
evaluateExpressionIn:anEnvironment
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   130
    "catch evaluation"
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   131
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   132
    optional ifTrue:[^ nil].
940
84c858922dc3 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
   133
    self error:'cannot evaluate primitives' mayProceed:true
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   134
!
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   135
1383
3d485eefbb36 evaluate -> evaluateIn:
Claus Gittinger <cg@exept.de>
parents: 1049
diff changeset
   136
evaluateIn:anEnvironment
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   137
    "catch evaluation"
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   138
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   139
    optional ifTrue:[^ nil].
940
84c858922dc3 error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 263
diff changeset
   140
    self error:'cannot evaluate primitives' mayProceed:true
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   141
! !
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   142
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   143
!PrimitiveNode methodsFor:'queries'!
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   144
2565
918b43d03a00 - parse tree nodes are no longer shared
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2104
diff changeset
   145
containsReturn
918b43d03a00 - parse tree nodes are no longer shared
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2104
diff changeset
   146
918b43d03a00 - parse tree nodes are no longer shared
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2104
diff changeset
   147
    "/JV@2011-07-19: I'm not quite sure that this is OK..."
918b43d03a00 - parse tree nodes are no longer shared
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2104
diff changeset
   148
    ^(code includesString: 'return') 
918b43d03a00 - parse tree nodes are no longer shared
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2104
diff changeset
   149
        or: [code includesString: 'RETURN']
918b43d03a00 - parse tree nodes are no longer shared
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2104
diff changeset
   150
918b43d03a00 - parse tree nodes are no longer shared
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2104
diff changeset
   151
    "Created: / 19-07-2011 / 18:47:30 / Jan Vrany <jan.vrany@fit.cvut.cz>"
918b43d03a00 - parse tree nodes are no longer shared
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2104
diff changeset
   152
!
918b43d03a00 - parse tree nodes are no longer shared
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2104
diff changeset
   153
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   154
isConstant
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   155
    ^ false
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   156
!
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   157
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   158
isOptional
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   159
    ^ optional
2104
6bd4cdfdb2b1 obfuscated code detection
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   160
!
6bd4cdfdb2b1 obfuscated code detection
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   161
6bd4cdfdb2b1 obfuscated code detection
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   162
isSimpleConstant
6bd4cdfdb2b1 obfuscated code detection
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   163
    ^ false
6bd4cdfdb2b1 obfuscated code detection
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   164
!
6bd4cdfdb2b1 obfuscated code detection
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   165
6bd4cdfdb2b1 obfuscated code detection
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   166
isSimpleExpression
6bd4cdfdb2b1 obfuscated code detection
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   167
    ^ false
6bd4cdfdb2b1 obfuscated code detection
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   168
!
6bd4cdfdb2b1 obfuscated code detection
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   169
6bd4cdfdb2b1 obfuscated code detection
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   170
isSimpleVariable
6bd4cdfdb2b1 obfuscated code detection
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   171
    ^ false
140
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   172
! !
1ef1d1395146 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 135
diff changeset
   173
2602
abf07802e67f - added acceptVisior:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2565
diff changeset
   174
!PrimitiveNode methodsFor:'visiting'!
abf07802e67f - added acceptVisior:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2565
diff changeset
   175
abf07802e67f - added acceptVisior:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2565
diff changeset
   176
acceptVisitor:aVisitor 
abf07802e67f - added acceptVisior:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2565
diff changeset
   177
    "Double dispatch back to the visitor, passing my type encoded in
abf07802e67f - added acceptVisior:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2565
diff changeset
   178
     the selector (visitor pattern)"
abf07802e67f - added acceptVisior:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2565
diff changeset
   179
abf07802e67f - added acceptVisior:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2565
diff changeset
   180
    "stub code automatically generated - please change if required"
abf07802e67f - added acceptVisior:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2565
diff changeset
   181
abf07802e67f - added acceptVisior:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2565
diff changeset
   182
    ^ aVisitor visitPrimitiveNode:self
abf07802e67f - added acceptVisior:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2565
diff changeset
   183
! !
abf07802e67f - added acceptVisior:
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 2565
diff changeset
   184
148
ef0e604209ec version method at the end
Claus Gittinger <cg@exept.de>
parents: 140
diff changeset
   185
!PrimitiveNode class methodsFor:'documentation'!
ef0e604209ec version method at the end
Claus Gittinger <cg@exept.de>
parents: 140
diff changeset
   186
ef0e604209ec version method at the end
Claus Gittinger <cg@exept.de>
parents: 140
diff changeset
   187
version
3836
fa78fd27bebf #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 2602
diff changeset
   188
    ^ '$Header$'
fa78fd27bebf #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 2602
diff changeset
   189
!
fa78fd27bebf #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 2602
diff changeset
   190
fa78fd27bebf #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 2602
diff changeset
   191
version_CVS
fa78fd27bebf #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 2602
diff changeset
   192
    ^ '$Header$'
148
ef0e604209ec version method at the end
Claus Gittinger <cg@exept.de>
parents: 140
diff changeset
   193
! !
3836
fa78fd27bebf #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 2602
diff changeset
   194