MethodChange.st
author Claus Gittinger <cg@exept.de>
Mon, 20 Aug 2018 10:11:25 +0200
changeset 4346 6604af2f1554
parent 4242 915a6770025f
child 4526 f87aa4714f76
permissions -rw-r--r--
#OTHER by cg class: FileBasedSourceCodeManager class removed: #version_FileRepository
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4
7744cd9b1453 *** empty log message ***
claus
parents: 0
diff changeset
     1
"
7744cd9b1453 *** empty log message ***
claus
parents: 0
diff changeset
     2
 COPYRIGHT (c) 1993 by Claus Gittinger
25
claus
parents: 10
diff changeset
     3
	       All Rights Reserved
4
7744cd9b1453 *** empty log message ***
claus
parents: 0
diff changeset
     4
7744cd9b1453 *** empty log message ***
claus
parents: 0
diff changeset
     5
 This software is furnished under a license and may be used
7744cd9b1453 *** empty log message ***
claus
parents: 0
diff changeset
     6
 only in accordance with the terms of that license and with the
7744cd9b1453 *** empty log message ***
claus
parents: 0
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
7744cd9b1453 *** empty log message ***
claus
parents: 0
diff changeset
     8
 be provided or otherwise made available to, or used by, any
7744cd9b1453 *** empty log message ***
claus
parents: 0
diff changeset
     9
 other person.  No title to or ownership of the software is
7744cd9b1453 *** empty log message ***
claus
parents: 0
diff changeset
    10
 hereby transferred.
7744cd9b1453 *** empty log message ***
claus
parents: 0
diff changeset
    11
"
956
0c6c209df4e9 keep previousVersion of method in changeSet
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
    12
"{ Package: 'stx:libbasic3' }"
0c6c209df4e9 keep previousVersion of method in changeSet
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
    13
3774
927ab9fa567e class: MethodChange
Claus Gittinger <cg@exept.de>
parents: 3560
diff changeset
    14
"{ NameSpace: Smalltalk }"
927ab9fa567e class: MethodChange
Claus Gittinger <cg@exept.de>
parents: 3560
diff changeset
    15
0
470788421600 Initial revision
claus
parents:
diff changeset
    16
ClassChange subclass:#MethodChange
956
0c6c209df4e9 keep previousVersion of method in changeSet
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
    17
	instanceVariableNames:'selector methodCategory privacy previousVersion'
2509
173f64701e6a class definition
Claus Gittinger <cg@exept.de>
parents: 2503
diff changeset
    18
	classVariableNames:'LastReplacementClass'
235
3ebfdc6edab9 documentation
Claus Gittinger <cg@exept.de>
parents: 102
diff changeset
    19
	poolDictionaries:''
3ebfdc6edab9 documentation
Claus Gittinger <cg@exept.de>
parents: 102
diff changeset
    20
	category:'System-Changes'
0
470788421600 Initial revision
claus
parents:
diff changeset
    21
!
470788421600 Initial revision
claus
parents:
diff changeset
    22
1325
b874a070362e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1322
diff changeset
    23
MethodChange subclass:#NamedMethodChange
b874a070362e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1322
diff changeset
    24
	instanceVariableNames:'changeName'
b874a070362e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1322
diff changeset
    25
	classVariableNames:''
b874a070362e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1322
diff changeset
    26
	poolDictionaries:''
b874a070362e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1322
diff changeset
    27
	privateIn:MethodChange
b874a070362e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1322
diff changeset
    28
!
b874a070362e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1322
diff changeset
    29
25
claus
parents: 10
diff changeset
    30
!MethodChange class methodsFor:'documentation'!
claus
parents: 10
diff changeset
    31
claus
parents: 10
diff changeset
    32
copyright
claus
parents: 10
diff changeset
    33
"
claus
parents: 10
diff changeset
    34
 COPYRIGHT (c) 1993 by Claus Gittinger
claus
parents: 10
diff changeset
    35
	       All Rights Reserved
10
676ce0471de4 *** empty log message ***
claus
parents: 7
diff changeset
    36
25
claus
parents: 10
diff changeset
    37
 This software is furnished under a license and may be used
claus
parents: 10
diff changeset
    38
 only in accordance with the terms of that license and with the
claus
parents: 10
diff changeset
    39
 inclusion of the above copyright notice.   This software may not
claus
parents: 10
diff changeset
    40
 be provided or otherwise made available to, or used by, any
claus
parents: 10
diff changeset
    41
 other person.  No title to or ownership of the software is
claus
parents: 10
diff changeset
    42
 hereby transferred.
claus
parents: 10
diff changeset
    43
"
claus
parents: 10
diff changeset
    44
!
claus
parents: 10
diff changeset
    45
45
claus
parents: 39
diff changeset
    46
documentation
claus
parents: 39
diff changeset
    47
"
claus
parents: 39
diff changeset
    48
    instances represent method-changes (as done in the browser). 
claus
parents: 39
diff changeset
    49
    They are typically held in a ChangeSet.
235
3ebfdc6edab9 documentation
Claus Gittinger <cg@exept.de>
parents: 102
diff changeset
    50
3ebfdc6edab9 documentation
Claus Gittinger <cg@exept.de>
parents: 102
diff changeset
    51
    [author:]
3ebfdc6edab9 documentation
Claus Gittinger <cg@exept.de>
parents: 102
diff changeset
    52
        Claus Gittinger
45
claus
parents: 39
diff changeset
    53
"
25
claus
parents: 10
diff changeset
    54
! !
10
676ce0471de4 *** empty log message ***
claus
parents: 7
diff changeset
    55
0
470788421600 Initial revision
claus
parents:
diff changeset
    56
!MethodChange class methodsFor:'instance creation'!
470788421600 Initial revision
claus
parents:
diff changeset
    57
102
3f85fe87cc58 include category in methodChanges
Claus Gittinger <cg@exept.de>
parents: 85
diff changeset
    58
class:cls selector:sel source:src category:cat
3f85fe87cc58 include category in methodChanges
Claus Gittinger <cg@exept.de>
parents: 85
diff changeset
    59
    ^ self basicNew class:cls selector:sel source:src category:cat
1073
627aafb2cfec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 963
diff changeset
    60
!
627aafb2cfec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 963
diff changeset
    61
627aafb2cfec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 963
diff changeset
    62
className:clsName selector:sel source:src category:cat
627aafb2cfec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 963
diff changeset
    63
    ^ self basicNew className:clsName selector:sel source:src category:cat
0
470788421600 Initial revision
claus
parents:
diff changeset
    64
! !
470788421600 Initial revision
claus
parents:
diff changeset
    65
470788421600 Initial revision
claus
parents:
diff changeset
    66
!MethodChange methodsFor:'accessing'!
470788421600 Initial revision
claus
parents:
diff changeset
    67
1073
627aafb2cfec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 963
diff changeset
    68
category
627aafb2cfec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 963
diff changeset
    69
    ^ methodCategory 
627aafb2cfec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 963
diff changeset
    70
!
627aafb2cfec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 963
diff changeset
    71
911
cecf421ee767 VW5i compatibility
Claus Gittinger <cg@exept.de>
parents: 896
diff changeset
    72
category: aCategory
cecf421ee767 VW5i compatibility
Claus Gittinger <cg@exept.de>
parents: 896
diff changeset
    73
    methodCategory := aCategory
cecf421ee767 VW5i compatibility
Claus Gittinger <cg@exept.de>
parents: 896
diff changeset
    74
cecf421ee767 VW5i compatibility
Claus Gittinger <cg@exept.de>
parents: 896
diff changeset
    75
    "Created: / 7.2.1998 / 19:47:53 / cg"
cecf421ee767 VW5i compatibility
Claus Gittinger <cg@exept.de>
parents: 896
diff changeset
    76
!
cecf421ee767 VW5i compatibility
Claus Gittinger <cg@exept.de>
parents: 896
diff changeset
    77
852
1acd7d3ed3fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 850
diff changeset
    78
changeMethod
1acd7d3ed3fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 850
diff changeset
    79
    |cls|
1acd7d3ed3fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 850
diff changeset
    80
1acd7d3ed3fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 850
diff changeset
    81
    cls := self changeClass.
3902
afa169d26bf8 class: MethodChange
Stefan Vogel <sv@exept.de>
parents: 3835
diff changeset
    82
    (cls isNil or:[selector isNil]) ifTrue:[^ nil].
3560
c180c3cfe905 class: MethodChange
Claus Gittinger <cg@exept.de>
parents: 3533
diff changeset
    83
    ^ cls compiledMethodAt:selector asSymbol 
852
1acd7d3ed3fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 850
diff changeset
    84
1acd7d3ed3fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 850
diff changeset
    85
    "Created: / 7.2.1998 / 19:47:53 / cg"
1acd7d3ed3fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 850
diff changeset
    86
!
1acd7d3ed3fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 850
diff changeset
    87
850
5efe4b98c509 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 849
diff changeset
    88
changeSelector
5efe4b98c509 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 849
diff changeset
    89
    ^ selector
5efe4b98c509 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 849
diff changeset
    90
5efe4b98c509 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 849
diff changeset
    91
    "Created: / 6.2.1998 / 13:29:25 / cg"
5efe4b98c509 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 849
diff changeset
    92
!
5efe4b98c509 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 849
diff changeset
    93
3989
0a0b87758e01 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3988
diff changeset
    94
class:cls selector:sel source:src category:cat
0a0b87758e01 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3988
diff changeset
    95
    self className:(cls name) selector:sel source:src category:cat
648
b7e0ef4b3781 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
    96
!
b7e0ef4b3781 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
    97
3443
b10ec0baed8e merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
    98
classIsJava
b10ec0baed8e merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
    99
    "Returns true, if this change is for Java class (i.e., if it is for
b10ec0baed8e merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   100
     Smalltalk method that extends Java class)"
b10ec0baed8e merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   101
b10ec0baed8e merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   102
    ^ classIsJava
b10ec0baed8e merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   103
b10ec0baed8e merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   104
    "Modified (comment): / 29-01-2013 / 14:11:35 / Jan Vrany <jan.vrany@fit.cvut.cz>"
b10ec0baed8e merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   105
!
b10ec0baed8e merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   106
b10ec0baed8e merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   107
classIsJava:aBoolean
b10ec0baed8e merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   108
    "Sets whether this change is for Java class (i.e., if it is for
b10ec0baed8e merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   109
     Smalltalk method that extends Java class)"
b10ec0baed8e merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   110
b10ec0baed8e merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   111
    classIsJava := aBoolean.
b10ec0baed8e merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   112
b10ec0baed8e merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   113
    "Modified (comment): / 29-01-2013 / 14:11:30 / Jan Vrany <jan.vrany@fit.cvut.cz>"
b10ec0baed8e merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   114
!
b10ec0baed8e merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   115
b10ec0baed8e merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   116
className
3995
46563fbc6a28 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
   117
    classIsJava == true ifTrue:[ ^ className].
46563fbc6a28 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3989
diff changeset
   118
    ^ super className
3443
b10ec0baed8e merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   119
b10ec0baed8e merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   120
    "Created: / 29-01-2013 / 14:21:10 / Jan Vrany <jan.vrany@fit.cvut.cz>"
b10ec0baed8e merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   121
    "Modified: / 30-01-2013 / 10:00:40 / Jan Vrany <jan.vrany@fit.cvut.cz>"
b10ec0baed8e merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   122
!
b10ec0baed8e merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   123
654
edeb63d98088 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 652
diff changeset
   124
className:clsName selector:sel source:src category:cat
1288
a18544df474d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1234
diff changeset
   125
    self className:clsName selector:sel source:src category:cat privacy:nil
654
edeb63d98088 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 652
diff changeset
   126
!
edeb63d98088 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 652
diff changeset
   127
edeb63d98088 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 652
diff changeset
   128
className:clsName selector:sel source:src category:cat privacy:priv
2258
b976e8e2874e comment/format in: #selector:
Claus Gittinger <cg@exept.de>
parents: 2257
diff changeset
   129
    self assert:(src isString).
b976e8e2874e comment/format in: #selector:
Claus Gittinger <cg@exept.de>
parents: 2257
diff changeset
   130
    self assert:(sel isString or:[sel isSymbol]).
1288
a18544df474d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1234
diff changeset
   131
654
edeb63d98088 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 652
diff changeset
   132
    className := clsName.
edeb63d98088 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 652
diff changeset
   133
    selector := sel.
edeb63d98088 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 652
diff changeset
   134
    source := src.
edeb63d98088 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 652
diff changeset
   135
    methodCategory := cat.
edeb63d98088 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 652
diff changeset
   136
    privacy := priv.
edeb63d98088 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 652
diff changeset
   137
edeb63d98088 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 652
diff changeset
   138
    "Created: / 16.2.1998 / 12:29:49 / cg"
edeb63d98088 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 652
diff changeset
   139
    "Modified: / 16.2.1998 / 14:28:12 / cg"
edeb63d98088 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 652
diff changeset
   140
!
edeb63d98088 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 652
diff changeset
   141
2369
ffbd3aa42d28 Jan's changes
vrany
parents: 2260
diff changeset
   142
delta
2503
bbdc31516652 added: #deltaDetail
Claus Gittinger <cg@exept.de>
parents: 2470
diff changeset
   143
    "/ obsolete: please use deltaDetail
2369
ffbd3aa42d28 Jan's changes
vrany
parents: 2260
diff changeset
   144
ffbd3aa42d28 Jan's changes
vrany
parents: 2260
diff changeset
   145
    | mth |
ffbd3aa42d28 Jan's changes
vrany
parents: 2260
diff changeset
   146
ffbd3aa42d28 Jan's changes
vrany
parents: 2260
diff changeset
   147
    self isMethodCodeChange ifFalse:[^super delta].
ffbd3aa42d28 Jan's changes
vrany
parents: 2260
diff changeset
   148
    mth := self changeMethod.
2625
5dc802065e4b changed: #delta
Claus Gittinger <cg@exept.de>
parents: 2616
diff changeset
   149
    mth isNil ifTrue:[^#+].
2369
ffbd3aa42d28 Jan's changes
vrany
parents: 2260
diff changeset
   150
    ^(self class isSource: self source sameSourceAs: mth source)
ffbd3aa42d28 Jan's changes
vrany
parents: 2260
diff changeset
   151
        ifTrue:[#=]
ffbd3aa42d28 Jan's changes
vrany
parents: 2260
diff changeset
   152
        ifFalse:[#~]
2503
bbdc31516652 added: #deltaDetail
Claus Gittinger <cg@exept.de>
parents: 2470
diff changeset
   153
2625
5dc802065e4b changed: #delta
Claus Gittinger <cg@exept.de>
parents: 2616
diff changeset
   154
    "Modified: / 18-11-2011 / 14:48:50 / cg"
2503
bbdc31516652 added: #deltaDetail
Claus Gittinger <cg@exept.de>
parents: 2470
diff changeset
   155
!
bbdc31516652 added: #deltaDetail
Claus Gittinger <cg@exept.de>
parents: 2470
diff changeset
   156
bbdc31516652 added: #deltaDetail
Claus Gittinger <cg@exept.de>
parents: 2470
diff changeset
   157
deltaDetail
bbdc31516652 added: #deltaDetail
Claus Gittinger <cg@exept.de>
parents: 2470
diff changeset
   158
    "Returns a delta to the current state as a ChangeDelta object"
bbdc31516652 added: #deltaDetail
Claus Gittinger <cg@exept.de>
parents: 2470
diff changeset
   159
bbdc31516652 added: #deltaDetail
Claus Gittinger <cg@exept.de>
parents: 2470
diff changeset
   160
    | mth mySource imageSource|
bbdc31516652 added: #deltaDetail
Claus Gittinger <cg@exept.de>
parents: 2470
diff changeset
   161
bbdc31516652 added: #deltaDetail
Claus Gittinger <cg@exept.de>
parents: 2470
diff changeset
   162
    self isMethodCodeChange ifFalse:[^super deltaDetail].
bbdc31516652 added: #deltaDetail
Claus Gittinger <cg@exept.de>
parents: 2470
diff changeset
   163
    mth := self changeMethod.
bbdc31516652 added: #deltaDetail
Claus Gittinger <cg@exept.de>
parents: 2470
diff changeset
   164
    mth isNil ifTrue:[^ ChangeDeltaInformation added ].
bbdc31516652 added: #deltaDetail
Claus Gittinger <cg@exept.de>
parents: 2470
diff changeset
   165
    mySource := self source.
bbdc31516652 added: #deltaDetail
Claus Gittinger <cg@exept.de>
parents: 2470
diff changeset
   166
    imageSource := mth source.
3138
0442e4f23d39 class: MethodChange
Claus Gittinger <cg@exept.de>
parents: 2944
diff changeset
   167
0442e4f23d39 class: MethodChange
Claus Gittinger <cg@exept.de>
parents: 2944
diff changeset
   168
    (self class isSource: mySource sameSourceAs: imageSource) ifTrue:[ 
0442e4f23d39 class: MethodChange
Claus Gittinger <cg@exept.de>
parents: 2944
diff changeset
   169
        ^ ChangeDeltaInformation identical 
0442e4f23d39 class: MethodChange
Claus Gittinger <cg@exept.de>
parents: 2944
diff changeset
   170
    ].
0442e4f23d39 class: MethodChange
Claus Gittinger <cg@exept.de>
parents: 2944
diff changeset
   171
    ^ ChangeDeltaInformation different
2503
bbdc31516652 added: #deltaDetail
Claus Gittinger <cg@exept.de>
parents: 2470
diff changeset
   172
bbdc31516652 added: #deltaDetail
Claus Gittinger <cg@exept.de>
parents: 2470
diff changeset
   173
    "Created: / 31-08-2011 / 10:27:58 / cg"
2369
ffbd3aa42d28 Jan's changes
vrany
parents: 2260
diff changeset
   174
!
ffbd3aa42d28 Jan's changes
vrany
parents: 2260
diff changeset
   175
2470
47bec7c32db6 Added #changeSource, #imageSource
vrany
parents: 2414
diff changeset
   176
imageSource
2846
221a345239fb comment/format in: #imageSource
Claus Gittinger <cg@exept.de>
parents: 2625
diff changeset
   177
    "return the source for the in-image version of the method"
2470
47bec7c32db6 Added #changeSource, #imageSource
vrany
parents: 2414
diff changeset
   178
47bec7c32db6 Added #changeSource, #imageSource
vrany
parents: 2414
diff changeset
   179
    | mth |
47bec7c32db6 Added #changeSource, #imageSource
vrany
parents: 2414
diff changeset
   180
2846
221a345239fb comment/format in: #imageSource
Claus Gittinger <cg@exept.de>
parents: 2625
diff changeset
   181
    self isMethodCodeChange ifFalse:[^ super imageSource].
2470
47bec7c32db6 Added #changeSource, #imageSource
vrany
parents: 2414
diff changeset
   182
    mth := self changeMethod.
2846
221a345239fb comment/format in: #imageSource
Claus Gittinger <cg@exept.de>
parents: 2625
diff changeset
   183
    ^ mth isNil 
221a345239fb comment/format in: #imageSource
Claus Gittinger <cg@exept.de>
parents: 2625
diff changeset
   184
        ifTrue: [nil] 
221a345239fb comment/format in: #imageSource
Claus Gittinger <cg@exept.de>
parents: 2625
diff changeset
   185
        ifFalse:[mth source]
2470
47bec7c32db6 Added #changeSource, #imageSource
vrany
parents: 2414
diff changeset
   186
47bec7c32db6 Added #changeSource, #imageSource
vrany
parents: 2414
diff changeset
   187
    "Created: / 19-07-2011 / 12:02:05 / Jan Vrany <jan.vrany@fit.cvut.cz>"
2846
221a345239fb comment/format in: #imageSource
Claus Gittinger <cg@exept.de>
parents: 2625
diff changeset
   188
    "Modified (format): / 25-07-2012 / 17:37:52 / cg"
2470
47bec7c32db6 Added #changeSource, #imageSource
vrany
parents: 2414
diff changeset
   189
!
47bec7c32db6 Added #changeSource, #imageSource
vrany
parents: 2414
diff changeset
   190
652
b9e4b4465a2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 648
diff changeset
   191
methodCategory
1234
2edbb63a70b7 james' package changes
james
parents: 1199
diff changeset
   192
652
b9e4b4465a2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 648
diff changeset
   193
    ^ methodCategory
b9e4b4465a2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 648
diff changeset
   194
b9e4b4465a2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 648
diff changeset
   195
    "Created: / 7.2.1998 / 19:47:53 / cg"
b9e4b4465a2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 648
diff changeset
   196
!
b9e4b4465a2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 648
diff changeset
   197
1234
2edbb63a70b7 james' package changes
james
parents: 1199
diff changeset
   198
previousPackage
2edbb63a70b7 james' package changes
james
parents: 1199
diff changeset
   199
    | isNewMethod |
2edbb63a70b7 james' package changes
james
parents: 1199
diff changeset
   200
    isNewMethod := self previousVersion isNil.
2edbb63a70b7 james' package changes
james
parents: 1199
diff changeset
   201
    isNewMethod ifFalse:[
2edbb63a70b7 james' package changes
james
parents: 1199
diff changeset
   202
        ^ self previousVersion package.
2edbb63a70b7 james' package changes
james
parents: 1199
diff changeset
   203
    ].
2edbb63a70b7 james' package changes
james
parents: 1199
diff changeset
   204
2edbb63a70b7 james' package changes
james
parents: 1199
diff changeset
   205
    ^ nil
2edbb63a70b7 james' package changes
james
parents: 1199
diff changeset
   206
!
2edbb63a70b7 james' package changes
james
parents: 1199
diff changeset
   207
956
0c6c209df4e9 keep previousVersion of method in changeSet
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
   208
previousVersion
0c6c209df4e9 keep previousVersion of method in changeSet
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
   209
    "return the value of the instance variable 'previousVersion' (automatically generated)"
0c6c209df4e9 keep previousVersion of method in changeSet
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
   210
1073
627aafb2cfec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 963
diff changeset
   211
    ^ previousVersion
627aafb2cfec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 963
diff changeset
   212
!
956
0c6c209df4e9 keep previousVersion of method in changeSet
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
   213
0c6c209df4e9 keep previousVersion of method in changeSet
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
   214
previousVersion:something
0c6c209df4e9 keep previousVersion of method in changeSet
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
   215
    "set the value of the instance variable 'previousVersion' (automatically generated)"
0c6c209df4e9 keep previousVersion of method in changeSet
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
   216
1073
627aafb2cfec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 963
diff changeset
   217
    previousVersion := something.
627aafb2cfec checkin from browser
Claus Gittinger <cg@exept.de>
parents: 963
diff changeset
   218
!
956
0c6c209df4e9 keep previousVersion of method in changeSet
Claus Gittinger <cg@exept.de>
parents: 911
diff changeset
   219
1234
2edbb63a70b7 james' package changes
james
parents: 1199
diff changeset
   220
previousVersionSource
2edbb63a70b7 james' package changes
james
parents: 1199
diff changeset
   221
    "return the value of the instance variable 'previousVersion' (automatically generated)"
2edbb63a70b7 james' package changes
james
parents: 1199
diff changeset
   222
2edbb63a70b7 james' package changes
james
parents: 1199
diff changeset
   223
    previousVersion isNil ifTrue:[^ nil].
2edbb63a70b7 james' package changes
james
parents: 1199
diff changeset
   224
    ^ previousVersion source
2edbb63a70b7 james' package changes
james
parents: 1199
diff changeset
   225
!
2edbb63a70b7 james' package changes
james
parents: 1199
diff changeset
   226
2872
0d5507d570cd Merged from SVN
vrany
parents: 2846
diff changeset
   227
privacy
0d5507d570cd Merged from SVN
vrany
parents: 2846
diff changeset
   228
0d5507d570cd Merged from SVN
vrany
parents: 2846
diff changeset
   229
    ^privacy ? #public
0d5507d570cd Merged from SVN
vrany
parents: 2846
diff changeset
   230
0d5507d570cd Merged from SVN
vrany
parents: 2846
diff changeset
   231
    "Created: / 19-03-2012 / 18:16:20 / Jan Vrany <jan.vrany@fit.cvut.cz>"
0d5507d570cd Merged from SVN
vrany
parents: 2846
diff changeset
   232
!
0d5507d570cd Merged from SVN
vrany
parents: 2846
diff changeset
   233
648
b7e0ef4b3781 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
   234
selector
b7e0ef4b3781 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
   235
    ^ selector
b7e0ef4b3781 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
   236
b7e0ef4b3781 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 235
diff changeset
   237
    "Created: / 6.2.1998 / 13:29:25 / cg"
911
cecf421ee767 VW5i compatibility
Claus Gittinger <cg@exept.de>
parents: 896
diff changeset
   238
!
cecf421ee767 VW5i compatibility
Claus Gittinger <cg@exept.de>
parents: 896
diff changeset
   239
cecf421ee767 VW5i compatibility
Claus Gittinger <cg@exept.de>
parents: 896
diff changeset
   240
selector:aSymbol
2257
808be4648d12 changed:
Claus Gittinger <cg@exept.de>
parents: 2187
diff changeset
   241
    self assert:(aSymbol isSymbol).
808be4648d12 changed:
Claus Gittinger <cg@exept.de>
parents: 2187
diff changeset
   242
911
cecf421ee767 VW5i compatibility
Claus Gittinger <cg@exept.de>
parents: 896
diff changeset
   243
    selector := aSymbol
cecf421ee767 VW5i compatibility
Claus Gittinger <cg@exept.de>
parents: 896
diff changeset
   244
cecf421ee767 VW5i compatibility
Claus Gittinger <cg@exept.de>
parents: 896
diff changeset
   245
    "Created: / 6.2.1998 / 13:29:25 / cg"
0
470788421600 Initial revision
claus
parents:
diff changeset
   246
! !
470788421600 Initial revision
claus
parents:
diff changeset
   247
849
d31825895bb2 preps to allow applying
Claus Gittinger <cg@exept.de>
parents: 800
diff changeset
   248
!MethodChange methodsFor:'applying'!
d31825895bb2 preps to allow applying
Claus Gittinger <cg@exept.de>
parents: 800
diff changeset
   249
d31825895bb2 preps to allow applying
Claus Gittinger <cg@exept.de>
parents: 800
diff changeset
   250
apply
d31825895bb2 preps to allow applying
Claus Gittinger <cg@exept.de>
parents: 800
diff changeset
   251
    "apply the change"
d31825895bb2 preps to allow applying
Claus Gittinger <cg@exept.de>
parents: 800
diff changeset
   252
3774
927ab9fa567e class: MethodChange
Claus Gittinger <cg@exept.de>
parents: 3560
diff changeset
   253
    |class replacementClassName suggestion oldMethodOrNil oldPackage 
927ab9fa567e class: MethodChange
Claus Gittinger <cg@exept.de>
parents: 3560
diff changeset
   254
     newPackage newMethod defClass|
1322
8ff0023c7694 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
   255
2020
5b3af99a4829 changed #apply: use #applyChange
Stefan Vogel <sv@exept.de>
parents: 1845
diff changeset
   256
    class := self changeClass.
1196
928f537ddeac more for vw-XML fileIn
Claus Gittinger <cg@exept.de>
parents: 1073
diff changeset
   257
    class isNil ifTrue:[
2512
9caca2c0b8ed changed: #apply
Claus Gittinger <cg@exept.de>
parents: 2509
diff changeset
   258
        "/ try the same replacement class again
9caca2c0b8ed changed: #apply
Claus Gittinger <cg@exept.de>
parents: 2509
diff changeset
   259
        (LastReplacementClass notEmptyOrNil 
9caca2c0b8ed changed: #apply
Claus Gittinger <cg@exept.de>
parents: 2509
diff changeset
   260
            and:[ (class := Smalltalk classNamed:LastReplacementClass) notNil
9caca2c0b8ed changed: #apply
Claus Gittinger <cg@exept.de>
parents: 2509
diff changeset
   261
            and:[ 
9caca2c0b8ed changed: #apply
Claus Gittinger <cg@exept.de>
parents: 2509
diff changeset
   262
                (className endsWith:' class') ifTrue:[
9caca2c0b8ed changed: #apply
Claus Gittinger <cg@exept.de>
parents: 2509
diff changeset
   263
                    class := class theMetaclass
9caca2c0b8ed changed: #apply
Claus Gittinger <cg@exept.de>
parents: 2509
diff changeset
   264
                ] ifFalse:[
9caca2c0b8ed changed: #apply
Claus Gittinger <cg@exept.de>
parents: 2509
diff changeset
   265
                    class := class theNonMetaclass
9caca2c0b8ed changed: #apply
Claus Gittinger <cg@exept.de>
parents: 2509
diff changeset
   266
                ].
9caca2c0b8ed changed: #apply
Claus Gittinger <cg@exept.de>
parents: 2509
diff changeset
   267
                class nameWithoutPrefix = className    
9caca2c0b8ed changed: #apply
Claus Gittinger <cg@exept.de>
parents: 2509
diff changeset
   268
            ]])
9caca2c0b8ed changed: #apply
Claus Gittinger <cg@exept.de>
parents: 2509
diff changeset
   269
        ifFalse:[
9caca2c0b8ed changed: #apply
Claus Gittinger <cg@exept.de>
parents: 2509
diff changeset
   270
            "/ try a replacement class in the same namespace again
3835
2abde322db34 class: MethodChange
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
   271
            (className includesString:'::') ifTrue:[
2abde322db34 class: MethodChange
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
   272
                suggestion := className copyFrom:(className lastIndexOf:$:)+1.
2abde322db34 class: MethodChange
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
   273
                (Smalltalk classNamed:suggestion) isBehavior ifFalse:[
2abde322db34 class: MethodChange
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
   274
                    suggestion := nil.
2abde322db34 class: MethodChange
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
   275
                ].
2abde322db34 class: MethodChange
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
   276
            ].
2abde322db34 class: MethodChange
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
   277
            suggestion := suggestion ? LastReplacementClass.
2abde322db34 class: MethodChange
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
   278
            
2512
9caca2c0b8ed changed: #apply
Claus Gittinger <cg@exept.de>
parents: 2509
diff changeset
   279
            (class notNil
9caca2c0b8ed changed: #apply
Claus Gittinger <cg@exept.de>
parents: 2509
diff changeset
   280
            and:[ (class := class nameSpace classNamed:className) notNil
9caca2c0b8ed changed: #apply
Claus Gittinger <cg@exept.de>
parents: 2509
diff changeset
   281
            and:[ 
9caca2c0b8ed changed: #apply
Claus Gittinger <cg@exept.de>
parents: 2509
diff changeset
   282
                (className endsWith:' class') ifTrue:[
9caca2c0b8ed changed: #apply
Claus Gittinger <cg@exept.de>
parents: 2509
diff changeset
   283
                    class := class theMetaclass
9caca2c0b8ed changed: #apply
Claus Gittinger <cg@exept.de>
parents: 2509
diff changeset
   284
                ] ifFalse:[
9caca2c0b8ed changed: #apply
Claus Gittinger <cg@exept.de>
parents: 2509
diff changeset
   285
                    class := class theNonMetaclass
9caca2c0b8ed changed: #apply
Claus Gittinger <cg@exept.de>
parents: 2509
diff changeset
   286
                ].
9caca2c0b8ed changed: #apply
Claus Gittinger <cg@exept.de>
parents: 2509
diff changeset
   287
                class nameWithoutPrefix = className    
9caca2c0b8ed changed: #apply
Claus Gittinger <cg@exept.de>
parents: 2509
diff changeset
   288
            ]])
9caca2c0b8ed changed: #apply
Claus Gittinger <cg@exept.de>
parents: 2509
diff changeset
   289
            ifFalse:[
4121
1a5374a80c54 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3995
diff changeset
   290
                |action resources|
2516
a1fdfc5e22cd handle namespace overrides (for mc browser)
Claus Gittinger <cg@exept.de>
parents: 2512
diff changeset
   291
4121
1a5374a80c54 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3995
diff changeset
   292
                resources := self class projectDefinitionClass classResources.
1a5374a80c54 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3995
diff changeset
   293
                
1a5374a80c54 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3995
diff changeset
   294
                "/ ask for a repair action
1a5374a80c54 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3995
diff changeset
   295
                action := OptionBox
1a5374a80c54 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3995
diff changeset
   296
                            request:(resources stringWithCRs:'Cannot apply change for missing class: %1\\Please choose a repair action:\- choose a replacement class\- define a dummy class\- skip this change\- cancel the load operation' 
1a5374a80c54 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3995
diff changeset
   297
                                     with:className) 
1a5374a80c54 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3995
diff changeset
   298
                            buttonLabels:(resources array:#('Replace...' 'Create New...' 'Skip' 'Cancel'))
1a5374a80c54 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3995
diff changeset
   299
                            values:#(replace create skip cancel).
1a5374a80c54 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3995
diff changeset
   300
                action == #skip ifTrue:[^ self].
1a5374a80c54 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3995
diff changeset
   301
                action == #cancel ifTrue:[ AbortOperationRequest raise].
1a5374a80c54 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3995
diff changeset
   302
                action == #replace ifTrue:[
1a5374a80c54 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3995
diff changeset
   303
                    replacementClassName := Dialog 
1a5374a80c54 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3995
diff changeset
   304
                                    requestClassName:(resources 
1a5374a80c54 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3995
diff changeset
   305
                                                            string:'Replacement class for "%1"?' 
1a5374a80c54 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3995
diff changeset
   306
                                                            with:className)
1a5374a80c54 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3995
diff changeset
   307
                                    initialAnswer:suggestion.
1a5374a80c54 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3995
diff changeset
   308
                ] ifFalse:[
1a5374a80c54 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3995
diff changeset
   309
                    replacementClassName := Dialog 
1a5374a80c54 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3995
diff changeset
   310
                                    requestClassName:(resources 
1a5374a80c54 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3995
diff changeset
   311
                                                            stringWithCRs:'Create dummy class for "%1"?\(will be created in Namespace "%2")' 
1a5374a80c54 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3995
diff changeset
   312
                                                            with:className with:(Class nameSpaceQuerySignal query ? Smalltalk) name)
4242
915a6770025f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 4121
diff changeset
   313
                                    initialAnswer:(suggestion ? className).
4121
1a5374a80c54 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3995
diff changeset
   314
                ].    
1a5374a80c54 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3995
diff changeset
   315
                replacementClassName isEmptyOrNil ifTrue:[ AbortOperationRequest raise ].
1a5374a80c54 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3995
diff changeset
   316
1a5374a80c54 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3995
diff changeset
   317
                action == #create ifTrue:[
1a5374a80c54 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3995
diff changeset
   318
                    Object 
1a5374a80c54 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3995
diff changeset
   319
                        subclass:(replacementClassName asSymbol)
1a5374a80c54 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3995
diff changeset
   320
                        instanceVariableNames:''
1a5374a80c54 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3995
diff changeset
   321
                        classVariableNames:''
1a5374a80c54 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3995
diff changeset
   322
                        poolDictionaries:''
1a5374a80c54 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3995
diff changeset
   323
                        category:'* dummy for porting *'
1a5374a80c54 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3995
diff changeset
   324
                ].    
1a5374a80c54 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3995
diff changeset
   325
                class := Smalltalk classNamed:replacementClassName.
1a5374a80c54 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3995
diff changeset
   326
                class isNil ifTrue:[
1a5374a80c54 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3995
diff changeset
   327
                    class := (Class nameSpaceQuerySignal query ? Smalltalk) classNamed:replacementClassName.
1a5374a80c54 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3995
diff changeset
   328
                    class isNil ifTrue:[
1a5374a80c54 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3995
diff changeset
   329
                        self error:(resources string:'Cannot apply change for missing class: %1' with:replacementClassName) mayProceed:true.
1a5374a80c54 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3995
diff changeset
   330
                        ^ self
1a5374a80c54 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3995
diff changeset
   331
                    ].
2512
9caca2c0b8ed changed: #apply
Claus Gittinger <cg@exept.de>
parents: 2509
diff changeset
   332
                ].
3835
2abde322db34 class: MethodChange
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
   333
"/                (className endsWith:' class') ifTrue:[
2abde322db34 class: MethodChange
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
   334
"/                    class := class theMetaclass
2abde322db34 class: MethodChange
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
   335
"/                ] ifFalse:[
2abde322db34 class: MethodChange
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
   336
"/                    class := class theNonMetaclass
2abde322db34 class: MethodChange
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
   337
"/                ].
4121
1a5374a80c54 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3995
diff changeset
   338
1a5374a80c54 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 3995
diff changeset
   339
                LastReplacementClass := replacementClassName.
2512
9caca2c0b8ed changed: #apply
Claus Gittinger <cg@exept.de>
parents: 2509
diff changeset
   340
            ]
9caca2c0b8ed changed: #apply
Claus Gittinger <cg@exept.de>
parents: 2509
diff changeset
   341
        ]
1196
928f537ddeac more for vw-XML fileIn
Claus Gittinger <cg@exept.de>
parents: 1073
diff changeset
   342
    ].
3214
905a4976fac8 class: MethodChange
Claus Gittinger <cg@exept.de>
parents: 3213
diff changeset
   343
3533
cccb70e595fb Fixes setting package when applying MethodChange.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3519
diff changeset
   344
    newPackage := package notNil ifTrue:[package] ifFalse:[Class packageQuerySignal query].
cccb70e595fb Fixes setting package when applying MethodChange.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3519
diff changeset
   345
3214
905a4976fac8 class: MethodChange
Claus Gittinger <cg@exept.de>
parents: 3213
diff changeset
   346
    "/ if overwriting an existing method from another package,
905a4976fac8 class: MethodChange
Claus Gittinger <cg@exept.de>
parents: 3213
diff changeset
   347
    "/ put the existing method into the packagessafe
905a4976fac8 class: MethodChange
Claus Gittinger <cg@exept.de>
parents: 3213
diff changeset
   348
    oldMethodOrNil := class compiledMethodAt:selector.
905a4976fac8 class: MethodChange
Claus Gittinger <cg@exept.de>
parents: 3213
diff changeset
   349
    oldMethodOrNil notNil ifTrue:[
905a4976fac8 class: MethodChange
Claus Gittinger <cg@exept.de>
parents: 3213
diff changeset
   350
        oldPackage := oldMethodOrNil package.
905a4976fac8 class: MethodChange
Claus Gittinger <cg@exept.de>
parents: 3213
diff changeset
   351
        (newPackage notNil and:[newPackage ~= oldPackage]) ifTrue:[
905a4976fac8 class: MethodChange
Claus Gittinger <cg@exept.de>
parents: 3213
diff changeset
   352
            defClass := oldPackage asPackageId projectDefinitionClass.
905a4976fac8 class: MethodChange
Claus Gittinger <cg@exept.de>
parents: 3213
diff changeset
   353
            defClass notNil ifTrue:[
905a4976fac8 class: MethodChange
Claus Gittinger <cg@exept.de>
parents: 3213
diff changeset
   354
                defClass rememberOverwrittenMethod:oldMethodOrNil inClass:class.
905a4976fac8 class: MethodChange
Claus Gittinger <cg@exept.de>
parents: 3213
diff changeset
   355
            ]
905a4976fac8 class: MethodChange
Claus Gittinger <cg@exept.de>
parents: 3213
diff changeset
   356
        ].
905a4976fac8 class: MethodChange
Claus Gittinger <cg@exept.de>
parents: 3213
diff changeset
   357
    ].
905a4976fac8 class: MethodChange
Claus Gittinger <cg@exept.de>
parents: 3213
diff changeset
   358
3774
927ab9fa567e class: MethodChange
Claus Gittinger <cg@exept.de>
parents: 3560
diff changeset
   359
    newMethod := class compile:source classified:methodCategory logged:true.
927ab9fa567e class: MethodChange
Claus Gittinger <cg@exept.de>
parents: 3560
diff changeset
   360
    newMethod notNil ifTrue:[
927ab9fa567e class: MethodChange
Claus Gittinger <cg@exept.de>
parents: 3560
diff changeset
   361
        newMethod package: newPackage.
927ab9fa567e class: MethodChange
Claus Gittinger <cg@exept.de>
parents: 3560
diff changeset
   362
    ].
2509
173f64701e6a class definition
Claus Gittinger <cg@exept.de>
parents: 2503
diff changeset
   363
3533
cccb70e595fb Fixes setting package when applying MethodChange.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3519
diff changeset
   364
    "Modified: / 29-03-2014 / 23:29:18 / Jan Vrany <jan.vrany@fit.cvut.cz>"
4242
915a6770025f #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 4121
diff changeset
   365
    "Modified: / 18-06-2017 / 14:15:29 / cg"
849
d31825895bb2 preps to allow applying
Claus Gittinger <cg@exept.de>
parents: 800
diff changeset
   366
! !
d31825895bb2 preps to allow applying
Claus Gittinger <cg@exept.de>
parents: 800
diff changeset
   367
784
1e50cc7fd07d added compare methods #sameAs: and #isForSameAs:
Claus Gittinger <cg@exept.de>
parents: 779
diff changeset
   368
!MethodChange methodsFor:'comparing'!
1e50cc7fd07d added compare methods #sameAs: and #isForSameAs:
Claus Gittinger <cg@exept.de>
parents: 779
diff changeset
   369
3213
56e4caab0075 class: MethodChange
Claus Gittinger <cg@exept.de>
parents: 3179
diff changeset
   370
isConflict
56e4caab0075 class: MethodChange
Claus Gittinger <cg@exept.de>
parents: 3179
diff changeset
   371
    "true if this change is different than what is already in the image
56e4caab0075 class: MethodChange
Claus Gittinger <cg@exept.de>
parents: 3179
diff changeset
   372
     (i.e. it overwrites some existing code)"
56e4caab0075 class: MethodChange
Claus Gittinger <cg@exept.de>
parents: 3179
diff changeset
   373
56e4caab0075 class: MethodChange
Claus Gittinger <cg@exept.de>
parents: 3179
diff changeset
   374
    |cls mthd|
56e4caab0075 class: MethodChange
Claus Gittinger <cg@exept.de>
parents: 3179
diff changeset
   375
56e4caab0075 class: MethodChange
Claus Gittinger <cg@exept.de>
parents: 3179
diff changeset
   376
    (cls := self changeClass) isNil ifTrue:[^ false].
56e4caab0075 class: MethodChange
Claus Gittinger <cg@exept.de>
parents: 3179
diff changeset
   377
    (mthd := cls compiledMethodAt:selector) isNil ifTrue:[^ false].
56e4caab0075 class: MethodChange
Claus Gittinger <cg@exept.de>
parents: 3179
diff changeset
   378
    ^ mthd category ~= methodCategory
56e4caab0075 class: MethodChange
Claus Gittinger <cg@exept.de>
parents: 3179
diff changeset
   379
    or:[ mthd source ~= self source ]
56e4caab0075 class: MethodChange
Claus Gittinger <cg@exept.de>
parents: 3179
diff changeset
   380
!
56e4caab0075 class: MethodChange
Claus Gittinger <cg@exept.de>
parents: 3179
diff changeset
   381
784
1e50cc7fd07d added compare methods #sameAs: and #isForSameAs:
Claus Gittinger <cg@exept.de>
parents: 779
diff changeset
   382
isForSameAs:changeB
1e50cc7fd07d added compare methods #sameAs: and #isForSameAs:
Claus Gittinger <cg@exept.de>
parents: 779
diff changeset
   383
    "return true, if the given change represents a change for the same
1e50cc7fd07d added compare methods #sameAs: and #isForSameAs:
Claus Gittinger <cg@exept.de>
parents: 779
diff changeset
   384
     thingy as the receiver (i.e. same method, same definition etc.)."
1e50cc7fd07d added compare methods #sameAs: and #isForSameAs:
Claus Gittinger <cg@exept.de>
parents: 779
diff changeset
   385
1e50cc7fd07d added compare methods #sameAs: and #isForSameAs:
Claus Gittinger <cg@exept.de>
parents: 779
diff changeset
   386
    "/ I am a methodChange - B must be as well.
1e50cc7fd07d added compare methods #sameAs: and #isForSameAs:
Claus Gittinger <cg@exept.de>
parents: 779
diff changeset
   387
    changeB isMethodChange ifFalse:[^ false].   
1e50cc7fd07d added compare methods #sameAs: and #isForSameAs:
Claus Gittinger <cg@exept.de>
parents: 779
diff changeset
   388
1199
53f7de3f5c9b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1196
diff changeset
   389
    selector ~= changeB selector ifTrue:[^ false].
784
1e50cc7fd07d added compare methods #sameAs: and #isForSameAs:
Claus Gittinger <cg@exept.de>
parents: 779
diff changeset
   390
    className ~= changeB className ifTrue:[^ false].
1e50cc7fd07d added compare methods #sameAs: and #isForSameAs:
Claus Gittinger <cg@exept.de>
parents: 779
diff changeset
   391
1e50cc7fd07d added compare methods #sameAs: and #isForSameAs:
Claus Gittinger <cg@exept.de>
parents: 779
diff changeset
   392
    ^ true
1e50cc7fd07d added compare methods #sameAs: and #isForSameAs:
Claus Gittinger <cg@exept.de>
parents: 779
diff changeset
   393
!
1e50cc7fd07d added compare methods #sameAs: and #isForSameAs:
Claus Gittinger <cg@exept.de>
parents: 779
diff changeset
   394
1e50cc7fd07d added compare methods #sameAs: and #isForSameAs:
Claus Gittinger <cg@exept.de>
parents: 779
diff changeset
   395
sameAs:changeB
1e50cc7fd07d added compare methods #sameAs: and #isForSameAs:
Claus Gittinger <cg@exept.de>
parents: 779
diff changeset
   396
    "return true, if the given change represents the same change as the receiver."
1e50cc7fd07d added compare methods #sameAs: and #isForSameAs:
Claus Gittinger <cg@exept.de>
parents: 779
diff changeset
   397
798
999fff0aa0d0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 784
diff changeset
   398
    (self isForSameAs:changeB) ifFalse:[^ false].   
1509
e3f924fdfb6c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1487
diff changeset
   399
    (self sameSourceAs:changeB) ifTrue:[^ true].
784
1e50cc7fd07d added compare methods #sameAs: and #isForSameAs:
Claus Gittinger <cg@exept.de>
parents: 779
diff changeset
   400
1509
e3f924fdfb6c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1487
diff changeset
   401
    ^ false.
784
1e50cc7fd07d added compare methods #sameAs: and #isForSameAs:
Claus Gittinger <cg@exept.de>
parents: 779
diff changeset
   402
1509
e3f924fdfb6c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1487
diff changeset
   403
    "Modified: / 25-07-2006 / 11:23:27 / cg"
784
1e50cc7fd07d added compare methods #sameAs: and #isForSameAs:
Claus Gittinger <cg@exept.de>
parents: 779
diff changeset
   404
! !
1e50cc7fd07d added compare methods #sameAs: and #isForSameAs:
Claus Gittinger <cg@exept.de>
parents: 779
diff changeset
   405
1325
b874a070362e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1322
diff changeset
   406
!MethodChange methodsFor:'converting'!
b874a070362e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1322
diff changeset
   407
b874a070362e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1322
diff changeset
   408
asNamedMethodChange
b874a070362e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1322
diff changeset
   409
    ^ NamedMethodChange fromMethodChange:self
b874a070362e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1322
diff changeset
   410
! !
b874a070362e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1322
diff changeset
   411
2369
ffbd3aa42d28 Jan's changes
vrany
parents: 2260
diff changeset
   412
!MethodChange methodsFor:'fileout'!
ffbd3aa42d28 Jan's changes
vrany
parents: 2260
diff changeset
   413
ffbd3aa42d28 Jan's changes
vrany
parents: 2260
diff changeset
   414
basicFileOutOn: aStream
ffbd3aa42d28 Jan's changes
vrany
parents: 2260
diff changeset
   415
ffbd3aa42d28 Jan's changes
vrany
parents: 2260
diff changeset
   416
    |cat |
ffbd3aa42d28 Jan's changes
vrany
parents: 2260
diff changeset
   417
ffbd3aa42d28 Jan's changes
vrany
parents: 2260
diff changeset
   418
    self isMethodCodeChange ifFalse:[^super basicFileOutOn: aStream].
ffbd3aa42d28 Jan's changes
vrany
parents: 2260
diff changeset
   419
ffbd3aa42d28 Jan's changes
vrany
parents: 2260
diff changeset
   420
    aStream nextPutChunkSeparator.
3519
007417da21ef class: MethodChange
Stefan Vogel <sv@exept.de>
parents: 3443
diff changeset
   421
    nameSpaceName notEmptyOrNil ifTrue:[
007417da21ef class: MethodChange
Stefan Vogel <sv@exept.de>
parents: 3443
diff changeset
   422
        nameSpaceName printOn:aStream.
007417da21ef class: MethodChange
Stefan Vogel <sv@exept.de>
parents: 3443
diff changeset
   423
        aStream nextPutAll:'::'.
007417da21ef class: MethodChange
Stefan Vogel <sv@exept.de>
parents: 3443
diff changeset
   424
    ].
2369
ffbd3aa42d28 Jan's changes
vrany
parents: 2260
diff changeset
   425
    self className printOn:aStream.
ffbd3aa42d28 Jan's changes
vrany
parents: 2260
diff changeset
   426
"/        self printClassNameOn:aStream.
ffbd3aa42d28 Jan's changes
vrany
parents: 2260
diff changeset
   427
ffbd3aa42d28 Jan's changes
vrany
parents: 2260
diff changeset
   428
    (privacy ? #public) ~~ #public ifTrue:[
ffbd3aa42d28 Jan's changes
vrany
parents: 2260
diff changeset
   429
        aStream space; nextPutAll:privacy; nextPutAll:'MethodsFor:'.
ffbd3aa42d28 Jan's changes
vrany
parents: 2260
diff changeset
   430
    ] ifFalse:[
ffbd3aa42d28 Jan's changes
vrany
parents: 2260
diff changeset
   431
        aStream nextPutAll:' methodsFor:'.
ffbd3aa42d28 Jan's changes
vrany
parents: 2260
diff changeset
   432
    ].
ffbd3aa42d28 Jan's changes
vrany
parents: 2260
diff changeset
   433
ffbd3aa42d28 Jan's changes
vrany
parents: 2260
diff changeset
   434
    cat := methodCategory ? ''.
ffbd3aa42d28 Jan's changes
vrany
parents: 2260
diff changeset
   435
    aStream nextPutAll:cat asString storeString.
ffbd3aa42d28 Jan's changes
vrany
parents: 2260
diff changeset
   436
    aStream nextPutChunkSeparator; cr; cr.
ffbd3aa42d28 Jan's changes
vrany
parents: 2260
diff changeset
   437
ffbd3aa42d28 Jan's changes
vrany
parents: 2260
diff changeset
   438
    source := self source.
ffbd3aa42d28 Jan's changes
vrany
parents: 2260
diff changeset
   439
    source isNil ifTrue:[
ffbd3aa42d28 Jan's changes
vrany
parents: 2260
diff changeset
   440
        ClassDescription fileOutErrorSignal
ffbd3aa42d28 Jan's changes
vrany
parents: 2260
diff changeset
   441
            raiseRequestWith:self
ffbd3aa42d28 Jan's changes
vrany
parents: 2260
diff changeset
   442
            errorString:(' - no source for method: ' ,
ffbd3aa42d28 Jan's changes
vrany
parents: 2260
diff changeset
   443
                         self className , '>>' , selector).
ffbd3aa42d28 Jan's changes
vrany
parents: 2260
diff changeset
   444
ffbd3aa42d28 Jan's changes
vrany
parents: 2260
diff changeset
   445
    ] ifFalse:[
ffbd3aa42d28 Jan's changes
vrany
parents: 2260
diff changeset
   446
        aStream nextChunkPut:source.
ffbd3aa42d28 Jan's changes
vrany
parents: 2260
diff changeset
   447
    ].
ffbd3aa42d28 Jan's changes
vrany
parents: 2260
diff changeset
   448
    aStream space.
ffbd3aa42d28 Jan's changes
vrany
parents: 2260
diff changeset
   449
    aStream nextPutChunkSeparator.
ffbd3aa42d28 Jan's changes
vrany
parents: 2260
diff changeset
   450
    aStream cr; cr
ffbd3aa42d28 Jan's changes
vrany
parents: 2260
diff changeset
   451
ffbd3aa42d28 Jan's changes
vrany
parents: 2260
diff changeset
   452
    "Modified: / 05-12-2009 / 12:38:30 / Jan Vrany <jan.vrany@fit.cvut.cz>"
ffbd3aa42d28 Jan's changes
vrany
parents: 2260
diff changeset
   453
! !
ffbd3aa42d28 Jan's changes
vrany
parents: 2260
diff changeset
   454
963
a4fb4b9f7e72 category change
Claus Gittinger <cg@exept.de>
parents: 956
diff changeset
   455
!MethodChange methodsFor:'printing & storing'!
0
470788421600 Initial revision
claus
parents:
diff changeset
   456
7
1ec2a2047025 *** empty log message ***
claus
parents: 4
diff changeset
   457
printOn:aStream
800
3c41a8705c48 comment
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
   458
    "append a user printed representation of the receiver to aStream.
3c41a8705c48 comment
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
   459
     The format is suitable for a human - not meant to be read back."
3c41a8705c48 comment
Claus Gittinger <cg@exept.de>
parents: 798
diff changeset
   460
2170
3357cc27387c changed: #printOn:
Claus Gittinger <cg@exept.de>
parents: 2157
diff changeset
   461
    aStream
3835
2abde322db34 class: MethodChange
Claus Gittinger <cg@exept.de>
parents: 3774
diff changeset
   462
        nextPutAll:(self fullClassName ? 'unnamed');
3179
f66dd0b4043c class: MethodChange
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
   463
        nextPutAll:' >> ';
f66dd0b4043c class: MethodChange
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
   464
        nextPutAll:(selector ? '?');
f66dd0b4043c class: MethodChange
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
   465
        nextPutAll:' {';
f66dd0b4043c class: MethodChange
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
   466
        nextPutAll:(methodCategory ? '?');
f66dd0b4043c class: MethodChange
Claus Gittinger <cg@exept.de>
parents: 3156
diff changeset
   467
        nextPutAll:'}'
1512
2a7a41afb1e2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1509
diff changeset
   468
1833
cf60e3c0087e care for bad (nil) methodCategory
Claus Gittinger <cg@exept.de>
parents: 1512
diff changeset
   469
    "Modified: / 04-10-2006 / 16:46:01 / cg"
2170
3357cc27387c changed: #printOn:
Claus Gittinger <cg@exept.de>
parents: 2157
diff changeset
   470
    "Modified: / 07-11-2008 / 08:29:03 / Jan Vrany <vranyj1@fel.cvut.cz>"
779
d2c59a219cbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
   471
!
d2c59a219cbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
   472
896
035d5613a20c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 852
diff changeset
   473
printWithoutClassNameOn:aStream
035d5613a20c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 852
diff changeset
   474
    (className endsWith:' class') ifTrue:[
035d5613a20c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 852
diff changeset
   475
        aStream nextPutAll:'class '
035d5613a20c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 852
diff changeset
   476
    ].
035d5613a20c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 852
diff changeset
   477
    aStream nextPutAll:selector 
035d5613a20c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 852
diff changeset
   478
!
035d5613a20c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 852
diff changeset
   479
035d5613a20c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 852
diff changeset
   480
printWithoutOwningClassOn:aStream
2022
a498c70c0aac changed #printWithoutOwningClassOn:
Claus Gittinger <cg@exept.de>
parents: 2020
diff changeset
   481
    self breakPoint:#cg.
779
d2c59a219cbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
   482
    (className endsWith:' class') ifTrue:[
d2c59a219cbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
   483
        aStream nextPutAll:'class '
d2c59a219cbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
   484
    ].
d2c59a219cbc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 654
diff changeset
   485
    aStream nextPutAll:selector 
1845
6fdd21eba549 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1833
diff changeset
   486
!
6fdd21eba549 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1833
diff changeset
   487
6fdd21eba549 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1833
diff changeset
   488
sourceForMethod
2157
281a40f3dfc9 changed: #sourceForMethod
Claus Gittinger <cg@exept.de>
parents: 2130
diff changeset
   489
    ^ '(' , className , ' compiledMethodAt:' , selector asSymbol storeString, ')'
1845
6fdd21eba549 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1833
diff changeset
   490
6fdd21eba549 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1833
diff changeset
   491
    "Created: / 09-10-2006 / 13:58:09 / cg"
0
470788421600 Initial revision
claus
parents:
diff changeset
   492
! !
235
3ebfdc6edab9 documentation
Claus Gittinger <cg@exept.de>
parents: 102
diff changeset
   493
2130
1f2df83288c7 added: #isMethodCodeChange
Claus Gittinger <cg@exept.de>
parents: 2119
diff changeset
   494
!MethodChange methodsFor:'testing'!
652
b9e4b4465a2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 648
diff changeset
   495
b9e4b4465a2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 648
diff changeset
   496
isMethodChange
2130
1f2df83288c7 added: #isMethodCodeChange
Claus Gittinger <cg@exept.de>
parents: 2119
diff changeset
   497
    "true if this is a method related change"
1f2df83288c7 added: #isMethodCodeChange
Claus Gittinger <cg@exept.de>
parents: 2119
diff changeset
   498
652
b9e4b4465a2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 648
diff changeset
   499
    ^ true
b9e4b4465a2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 648
diff changeset
   500
b9e4b4465a2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 648
diff changeset
   501
    "Created: / 7.2.1998 / 19:26:59 / cg"
2130
1f2df83288c7 added: #isMethodCodeChange
Claus Gittinger <cg@exept.de>
parents: 2119
diff changeset
   502
!
1f2df83288c7 added: #isMethodCodeChange
Claus Gittinger <cg@exept.de>
parents: 2119
diff changeset
   503
3443
b10ec0baed8e merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   504
isMethodChangeForCopyrightMethod
b10ec0baed8e merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   505
    ^self isMethodCodeChange and: [ self isForMeta and: [ self selector == #copyright ] ]
b10ec0baed8e merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   506
b10ec0baed8e merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   507
    "Created: / 01-08-2012 / 16:33:04 / Jan Vrany <jan.vrany@fit.cvut.cz>"
b10ec0baed8e merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   508
!
b10ec0baed8e merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   509
2942
635660203429 added: #isMethodChangeForExtensionsVersionMethod
Claus Gittinger <cg@exept.de>
parents: 2872
diff changeset
   510
isMethodChangeForExtensionsVersionMethod
2944
c00806fd6113 queries
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
   511
    "true if this is a change for an extensionsVersion method"
c00806fd6113 queries
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
   512
2942
635660203429 added: #isMethodChangeForExtensionsVersionMethod
Claus Gittinger <cg@exept.de>
parents: 2872
diff changeset
   513
    ^  self isMethodCodeChange
635660203429 added: #isMethodChangeForExtensionsVersionMethod
Claus Gittinger <cg@exept.de>
parents: 2872
diff changeset
   514
    and:[ AbstractSourceCodeManager isExtensionsVersionMethodSelector:self selector ]
635660203429 added: #isMethodChangeForExtensionsVersionMethod
Claus Gittinger <cg@exept.de>
parents: 2872
diff changeset
   515
!
635660203429 added: #isMethodChangeForExtensionsVersionMethod
Claus Gittinger <cg@exept.de>
parents: 2872
diff changeset
   516
2187
b36325e3df21 added: #isMethodChangeForVersionMethod
fm
parents: 2170
diff changeset
   517
isMethodChangeForVersionMethod
2944
c00806fd6113 queries
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
   518
    "true if this is a change for a version method"
c00806fd6113 queries
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
   519
2187
b36325e3df21 added: #isMethodChangeForVersionMethod
fm
parents: 2170
diff changeset
   520
    ^  self isMethodCodeChange
b36325e3df21 added: #isMethodChangeForVersionMethod
fm
parents: 2170
diff changeset
   521
    and:[ AbstractSourceCodeManager isVersionMethodSelector:self selector ]
b36325e3df21 added: #isMethodChangeForVersionMethod
fm
parents: 2170
diff changeset
   522
!
b36325e3df21 added: #isMethodChangeForVersionMethod
fm
parents: 2170
diff changeset
   523
2130
1f2df83288c7 added: #isMethodCodeChange
Claus Gittinger <cg@exept.de>
parents: 2119
diff changeset
   524
isMethodCodeChange
1f2df83288c7 added: #isMethodCodeChange
Claus Gittinger <cg@exept.de>
parents: 2119
diff changeset
   525
    "true if this is a method's code change (not package, category etc.)"
1f2df83288c7 added: #isMethodCodeChange
Claus Gittinger <cg@exept.de>
parents: 2119
diff changeset
   526
2260
fc4873beed5b fixed: #isMethodCodeChange
Claus Gittinger <cg@exept.de>
parents: 2258
diff changeset
   527
    ^ true
652
b9e4b4465a2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 648
diff changeset
   528
! !
b9e4b4465a2c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 648
diff changeset
   529
2616
0eba26a9f6af visitor support (for monticello);
Claus Gittinger <cg@exept.de>
parents: 2516
diff changeset
   530
!MethodChange methodsFor:'visiting'!
0eba26a9f6af visitor support (for monticello);
Claus Gittinger <cg@exept.de>
parents: 2516
diff changeset
   531
0eba26a9f6af visitor support (for monticello);
Claus Gittinger <cg@exept.de>
parents: 2516
diff changeset
   532
acceptChangeVisitor:aVisitor
0eba26a9f6af visitor support (for monticello);
Claus Gittinger <cg@exept.de>
parents: 2516
diff changeset
   533
    ^ aVisitor visitMethodChange:self.
0eba26a9f6af visitor support (for monticello);
Claus Gittinger <cg@exept.de>
parents: 2516
diff changeset
   534
0eba26a9f6af visitor support (for monticello);
Claus Gittinger <cg@exept.de>
parents: 2516
diff changeset
   535
    "Created: / 25-11-2011 / 17:13:50 / cg"
0eba26a9f6af visitor support (for monticello);
Claus Gittinger <cg@exept.de>
parents: 2516
diff changeset
   536
! !
0eba26a9f6af visitor support (for monticello);
Claus Gittinger <cg@exept.de>
parents: 2516
diff changeset
   537
1325
b874a070362e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1322
diff changeset
   538
!MethodChange::NamedMethodChange class methodsFor:'instance creation'!
b874a070362e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1322
diff changeset
   539
b874a070362e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1322
diff changeset
   540
fromMethodChange:aMethodChange
b874a070362e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1322
diff changeset
   541
    ^ self new cloneInstanceVariablesFrom:aMethodChange
b874a070362e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1322
diff changeset
   542
! !
b874a070362e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1322
diff changeset
   543
b874a070362e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1322
diff changeset
   544
!MethodChange::NamedMethodChange methodsFor:'accessing'!
b874a070362e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1322
diff changeset
   545
b874a070362e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1322
diff changeset
   546
changeName:something
b874a070362e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1322
diff changeset
   547
    changeName := something.
b874a070362e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1322
diff changeset
   548
! !
b874a070362e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1322
diff changeset
   549
b874a070362e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1322
diff changeset
   550
!MethodChange::NamedMethodChange methodsFor:'printing & storing'!
b874a070362e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1322
diff changeset
   551
b874a070362e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1322
diff changeset
   552
printOn:aStream
b874a070362e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1322
diff changeset
   553
    changeName notNil ifTrue:[
b874a070362e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1322
diff changeset
   554
        changeName printOn:aStream.
b874a070362e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1322
diff changeset
   555
        ^ self.
b874a070362e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1322
diff changeset
   556
    ].
b874a070362e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1322
diff changeset
   557
    super printOn:aStream
b874a070362e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1322
diff changeset
   558
! !
b874a070362e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1322
diff changeset
   559
235
3ebfdc6edab9 documentation
Claus Gittinger <cg@exept.de>
parents: 102
diff changeset
   560
!MethodChange class methodsFor:'documentation'!
3ebfdc6edab9 documentation
Claus Gittinger <cg@exept.de>
parents: 102
diff changeset
   561
2944
c00806fd6113 queries
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
   562
version
3902
afa169d26bf8 class: MethodChange
Stefan Vogel <sv@exept.de>
parents: 3835
diff changeset
   563
    ^ '$Header$'
2944
c00806fd6113 queries
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
   564
!
c00806fd6113 queries
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
   565
c00806fd6113 queries
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
   566
version_CVS
3902
afa169d26bf8 class: MethodChange
Stefan Vogel <sv@exept.de>
parents: 3835
diff changeset
   567
    ^ '$Header$'
2944
c00806fd6113 queries
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
   568
!
c00806fd6113 queries
Claus Gittinger <cg@exept.de>
parents: 2942
diff changeset
   569
2369
ffbd3aa42d28 Jan's changes
vrany
parents: 2260
diff changeset
   570
version_SVN
3902
afa169d26bf8 class: MethodChange
Stefan Vogel <sv@exept.de>
parents: 3835
diff changeset
   571
    ^ '$Id$'
235
3ebfdc6edab9 documentation
Claus Gittinger <cg@exept.de>
parents: 102
diff changeset
   572
! !
3138
0442e4f23d39 class: MethodChange
Claus Gittinger <cg@exept.de>
parents: 2944
diff changeset
   573