WrappedMethod.st
author Claus Gittinger <cg@exept.de>
Mon, 20 Aug 2018 10:11:25 +0200
changeset 4346 6604af2f1554
parent 4213 30d0d0045710
child 4392 40dcd434117c
permissions -rw-r--r--
#OTHER by cg class: FileBasedSourceCodeManager class removed: #version_FileRepository
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
9
f5b6ab00bdf6 *** empty log message ***
claus
parents: 8
diff changeset
     1
"
f5b6ab00bdf6 *** empty log message ***
claus
parents: 8
diff changeset
     2
 COPYRIGHT (c) 1994 by Claus Gittinger
14
530bf06f9c78 *** empty log message ***
claus
parents: 10
diff changeset
     3
	      All Rights Reserved
9
f5b6ab00bdf6 *** empty log message ***
claus
parents: 8
diff changeset
     4
f5b6ab00bdf6 *** empty log message ***
claus
parents: 8
diff changeset
     5
 This software is furnished under a license and may be used
f5b6ab00bdf6 *** empty log message ***
claus
parents: 8
diff changeset
     6
 only in accordance with the terms of that license and with the
f5b6ab00bdf6 *** empty log message ***
claus
parents: 8
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
f5b6ab00bdf6 *** empty log message ***
claus
parents: 8
diff changeset
     8
 be provided or otherwise made available to, or used by, any
f5b6ab00bdf6 *** empty log message ***
claus
parents: 8
diff changeset
     9
 other person.  No title to or ownership of the software is
f5b6ab00bdf6 *** empty log message ***
claus
parents: 8
diff changeset
    10
 hereby transferred.
f5b6ab00bdf6 *** empty log message ***
claus
parents: 8
diff changeset
    11
"
940
2ec011688c35 more queries (sentMessages ...)
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
    12
"{ Package: 'stx:libbasic3' }"
2ec011688c35 more queries (sentMessages ...)
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
    13
3878
e19107344368 class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3630
diff changeset
    14
"{ NameSpace: Smalltalk }"
e19107344368 class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3630
diff changeset
    15
729
65df4874f0a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 644
diff changeset
    16
Method variableSubclass:#WrappedMethod
210
3638d229ce41 subclasses of fixed classes are still possible
Claus Gittinger <cg@exept.de>
parents: 68
diff changeset
    17
	instanceVariableNames:''
2395
e9082ccc0d80 remember wrapped methods to speedup allInstances
Claus Gittinger <cg@exept.de>
parents: 2293
diff changeset
    18
	classVariableNames:'AllWrappedMethods'
210
3638d229ce41 subclasses of fixed classes are still possible
Claus Gittinger <cg@exept.de>
parents: 68
diff changeset
    19
	poolDictionaries:''
3638d229ce41 subclasses of fixed classes are still possible
Claus Gittinger <cg@exept.de>
parents: 68
diff changeset
    20
	category:'Kernel-Methods'
8
3fba2acf0eeb Initial revision
claus
parents:
diff changeset
    21
!
3fba2acf0eeb Initial revision
claus
parents:
diff changeset
    22
508
b9ac899e85c6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 352
diff changeset
    23
!WrappedMethod class methodsFor:'documentation'!
9
f5b6ab00bdf6 *** empty log message ***
claus
parents: 8
diff changeset
    24
f5b6ab00bdf6 *** empty log message ***
claus
parents: 8
diff changeset
    25
copyright
f5b6ab00bdf6 *** empty log message ***
claus
parents: 8
diff changeset
    26
"
f5b6ab00bdf6 *** empty log message ***
claus
parents: 8
diff changeset
    27
 COPYRIGHT (c) 1994 by Claus Gittinger
14
530bf06f9c78 *** empty log message ***
claus
parents: 10
diff changeset
    28
	      All Rights Reserved
9
f5b6ab00bdf6 *** empty log message ***
claus
parents: 8
diff changeset
    29
f5b6ab00bdf6 *** empty log message ***
claus
parents: 8
diff changeset
    30
 This software is furnished under a license and may be used
f5b6ab00bdf6 *** empty log message ***
claus
parents: 8
diff changeset
    31
 only in accordance with the terms of that license and with the
f5b6ab00bdf6 *** empty log message ***
claus
parents: 8
diff changeset
    32
 inclusion of the above copyright notice.   This software may not
f5b6ab00bdf6 *** empty log message ***
claus
parents: 8
diff changeset
    33
 be provided or otherwise made available to, or used by, any
f5b6ab00bdf6 *** empty log message ***
claus
parents: 8
diff changeset
    34
 other person.  No title to or ownership of the software is
f5b6ab00bdf6 *** empty log message ***
claus
parents: 8
diff changeset
    35
 hereby transferred.
f5b6ab00bdf6 *** empty log message ***
claus
parents: 8
diff changeset
    36
"
f5b6ab00bdf6 *** empty log message ***
claus
parents: 8
diff changeset
    37
!
f5b6ab00bdf6 *** empty log message ***
claus
parents: 8
diff changeset
    38
f5b6ab00bdf6 *** empty log message ***
claus
parents: 8
diff changeset
    39
documentation
f5b6ab00bdf6 *** empty log message ***
claus
parents: 8
diff changeset
    40
"
f5b6ab00bdf6 *** empty log message ***
claus
parents: 8
diff changeset
    41
    support for MessageTracer
234
6350e3b2223c documentation
Claus Gittinger <cg@exept.de>
parents: 210
diff changeset
    42
2395
e9082ccc0d80 remember wrapped methods to speedup allInstances
Claus Gittinger <cg@exept.de>
parents: 2293
diff changeset
    43
    notice: remembers wrappers in a weak classvar, because finding the wrapper for a
e9082ccc0d80 remember wrapped methods to speedup allInstances
Claus Gittinger <cg@exept.de>
parents: 2293
diff changeset
    44
    method is required for single stepping, and used to take a long time when using allInstances.
e9082ccc0d80 remember wrapped methods to speedup allInstances
Claus Gittinger <cg@exept.de>
parents: 2293
diff changeset
    45
    Therefore, wrappers are remembered.
e9082ccc0d80 remember wrapped methods to speedup allInstances
Claus Gittinger <cg@exept.de>
parents: 2293
diff changeset
    46
234
6350e3b2223c documentation
Claus Gittinger <cg@exept.de>
parents: 210
diff changeset
    47
    [author:]
6350e3b2223c documentation
Claus Gittinger <cg@exept.de>
parents: 210
diff changeset
    48
        Claus Gittinger
6350e3b2223c documentation
Claus Gittinger <cg@exept.de>
parents: 210
diff changeset
    49
6350e3b2223c documentation
Claus Gittinger <cg@exept.de>
parents: 210
diff changeset
    50
    [see also:]
6350e3b2223c documentation
Claus Gittinger <cg@exept.de>
parents: 210
diff changeset
    51
        MessageTracer
9
f5b6ab00bdf6 *** empty log message ***
claus
parents: 8
diff changeset
    52
"
f5b6ab00bdf6 *** empty log message ***
claus
parents: 8
diff changeset
    53
! !
f5b6ab00bdf6 *** empty log message ***
claus
parents: 8
diff changeset
    54
2395
e9082ccc0d80 remember wrapped methods to speedup allInstances
Claus Gittinger <cg@exept.de>
parents: 2293
diff changeset
    55
!WrappedMethod class methodsFor:'registration'!
e9082ccc0d80 remember wrapped methods to speedup allInstances
Claus Gittinger <cg@exept.de>
parents: 2293
diff changeset
    56
e9082ccc0d80 remember wrapped methods to speedup allInstances
Claus Gittinger <cg@exept.de>
parents: 2293
diff changeset
    57
allInstancesDo:aBlock
3585
7c205e1ff080 class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3516
diff changeset
    58
    self allWrappedMethodsDo:aBlock
7c205e1ff080 class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3516
diff changeset
    59
!
2395
e9082ccc0d80 remember wrapped methods to speedup allInstances
Claus Gittinger <cg@exept.de>
parents: 2293
diff changeset
    60
3585
7c205e1ff080 class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3516
diff changeset
    61
allWrappedMethods
7c205e1ff080 class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3516
diff changeset
    62
    AllWrappedMethods isNil ifTrue:[^ #() ].
7c205e1ff080 class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3516
diff changeset
    63
    ^ AllWrappedMethods 
7c205e1ff080 class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3516
diff changeset
    64
        select:[:m |
3586
79874305ab30 class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3585
diff changeset
    65
            "/ must double check - as this is a weak set, it gets cleaned up with a delay.
3585
7c205e1ff080 class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3516
diff changeset
    66
            m mclass notNil 
7c205e1ff080 class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3516
diff changeset
    67
        ]    
7c205e1ff080 class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3516
diff changeset
    68
        as:OrderedCollection
7c205e1ff080 class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3516
diff changeset
    69
7c205e1ff080 class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3516
diff changeset
    70
    "
7c205e1ff080 class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3516
diff changeset
    71
     self allWrappedMethods
7c205e1ff080 class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3516
diff changeset
    72
    "
7c205e1ff080 class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3516
diff changeset
    73
!
7c205e1ff080 class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3516
diff changeset
    74
7c205e1ff080 class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3516
diff changeset
    75
allWrappedMethodsDo:aBlock
7c205e1ff080 class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3516
diff changeset
    76
    AllWrappedMethods isNil ifTrue:[^ self ].
7c205e1ff080 class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3516
diff changeset
    77
    self allWrappedMethods do:aBlock
2395
e9082ccc0d80 remember wrapped methods to speedup allInstances
Claus Gittinger <cg@exept.de>
parents: 2293
diff changeset
    78
!
e9082ccc0d80 remember wrapped methods to speedup allInstances
Claus Gittinger <cg@exept.de>
parents: 2293
diff changeset
    79
e9082ccc0d80 remember wrapped methods to speedup allInstances
Claus Gittinger <cg@exept.de>
parents: 2293
diff changeset
    80
register:aWrappedMethod
e9082ccc0d80 remember wrapped methods to speedup allInstances
Claus Gittinger <cg@exept.de>
parents: 2293
diff changeset
    81
    AllWrappedMethods isNil ifTrue:[
e9082ccc0d80 remember wrapped methods to speedup allInstances
Claus Gittinger <cg@exept.de>
parents: 2293
diff changeset
    82
        AllWrappedMethods := WeakIdentitySet new.
e9082ccc0d80 remember wrapped methods to speedup allInstances
Claus Gittinger <cg@exept.de>
parents: 2293
diff changeset
    83
    ].
e9082ccc0d80 remember wrapped methods to speedup allInstances
Claus Gittinger <cg@exept.de>
parents: 2293
diff changeset
    84
    AllWrappedMethods add:aWrappedMethod
e9082ccc0d80 remember wrapped methods to speedup allInstances
Claus Gittinger <cg@exept.de>
parents: 2293
diff changeset
    85
e9082ccc0d80 remember wrapped methods to speedup allInstances
Claus Gittinger <cg@exept.de>
parents: 2293
diff changeset
    86
    "Created: / 01-07-2011 / 09:44:56 / cg"
e9082ccc0d80 remember wrapped methods to speedup allInstances
Claus Gittinger <cg@exept.de>
parents: 2293
diff changeset
    87
!
e9082ccc0d80 remember wrapped methods to speedup allInstances
Claus Gittinger <cg@exept.de>
parents: 2293
diff changeset
    88
e9082ccc0d80 remember wrapped methods to speedup allInstances
Claus Gittinger <cg@exept.de>
parents: 2293
diff changeset
    89
unregister:aWrappedMethod
e9082ccc0d80 remember wrapped methods to speedup allInstances
Claus Gittinger <cg@exept.de>
parents: 2293
diff changeset
    90
    AllWrappedMethods notNil ifTrue:[
e9082ccc0d80 remember wrapped methods to speedup allInstances
Claus Gittinger <cg@exept.de>
parents: 2293
diff changeset
    91
        AllWrappedMethods remove:aWrappedMethod ifAbsent:[]
e9082ccc0d80 remember wrapped methods to speedup allInstances
Claus Gittinger <cg@exept.de>
parents: 2293
diff changeset
    92
    ].
e9082ccc0d80 remember wrapped methods to speedup allInstances
Claus Gittinger <cg@exept.de>
parents: 2293
diff changeset
    93
e9082ccc0d80 remember wrapped methods to speedup allInstances
Claus Gittinger <cg@exept.de>
parents: 2293
diff changeset
    94
    "Created: / 01-07-2011 / 10:03:55 / cg"
e9082ccc0d80 remember wrapped methods to speedup allInstances
Claus Gittinger <cg@exept.de>
parents: 2293
diff changeset
    95
! !
e9082ccc0d80 remember wrapped methods to speedup allInstances
Claus Gittinger <cg@exept.de>
parents: 2293
diff changeset
    96
210
3638d229ce41 subclasses of fixed classes are still possible
Claus Gittinger <cg@exept.de>
parents: 68
diff changeset
    97
!WrappedMethod methodsFor:'accessing'!
3638d229ce41 subclasses of fixed classes are still possible
Claus Gittinger <cg@exept.de>
parents: 68
diff changeset
    98
3638d229ce41 subclasses of fixed classes are still possible
Claus Gittinger <cg@exept.de>
parents: 68
diff changeset
    99
basicLiterals
3638d229ce41 subclasses of fixed classes are still possible
Claus Gittinger <cg@exept.de>
parents: 68
diff changeset
   100
    "return my literals"
3638d229ce41 subclasses of fixed classes are still possible
Claus Gittinger <cg@exept.de>
parents: 68
diff changeset
   101
352
ac12b5bc2754 Move method's literals form literalArray to indexed instvars.
Stefan Vogel <sv@exept.de>
parents: 234
diff changeset
   102
    ^ super literals
ac12b5bc2754 Move method's literals form literalArray to indexed instvars.
Stefan Vogel <sv@exept.de>
parents: 234
diff changeset
   103
ac12b5bc2754 Move method's literals form literalArray to indexed instvars.
Stefan Vogel <sv@exept.de>
parents: 234
diff changeset
   104
    "Modified: 24.6.1996 / 14:10:34 / stefan"
210
3638d229ce41 subclasses of fixed classes are still possible
Claus Gittinger <cg@exept.de>
parents: 68
diff changeset
   105
!
3638d229ce41 subclasses of fixed classes are still possible
Claus Gittinger <cg@exept.de>
parents: 68
diff changeset
   106
1367
00692bfc2516 care for category and package changes
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
   107
category:newCategory
00692bfc2516 care for category and package changes
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
   108
    super category:newCategory.
00692bfc2516 care for category and package changes
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
   109
    self originalMethod category:newCategory
00692bfc2516 care for category and package changes
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
   110
!
00692bfc2516 care for category and package changes
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
   111
210
3638d229ce41 subclasses of fixed classes are still possible
Claus Gittinger <cg@exept.de>
parents: 68
diff changeset
   112
literals
2931
8aa6fb3f210b comment/format in:7 methods
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
   113
    "return the wrapped method's literals"
210
3638d229ce41 subclasses of fixed classes are still possible
Claus Gittinger <cg@exept.de>
parents: 68
diff changeset
   114
3638d229ce41 subclasses of fixed classes are still possible
Claus Gittinger <cg@exept.de>
parents: 68
diff changeset
   115
    ^ self originalMethod literals
3638d229ce41 subclasses of fixed classes are still possible
Claus Gittinger <cg@exept.de>
parents: 68
diff changeset
   116
!
8
3fba2acf0eeb Initial revision
claus
parents:
diff changeset
   117
644
ffba6b23cc6d Redirect privacy and more literal sends to originalMethod
Stefan Vogel <sv@exept.de>
parents: 580
diff changeset
   118
literalsDetect:aBlock ifNone:exceptionBlock
2931
8aa6fb3f210b comment/format in:7 methods
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
   119
    "access the wrapped method's literals"
644
ffba6b23cc6d Redirect privacy and more literal sends to originalMethod
Stefan Vogel <sv@exept.de>
parents: 580
diff changeset
   120
ffba6b23cc6d Redirect privacy and more literal sends to originalMethod
Stefan Vogel <sv@exept.de>
parents: 580
diff changeset
   121
    ^ self originalMethod literalsDetect:aBlock ifNone:exceptionBlock
ffba6b23cc6d Redirect privacy and more literal sends to originalMethod
Stefan Vogel <sv@exept.de>
parents: 580
diff changeset
   122
ffba6b23cc6d Redirect privacy and more literal sends to originalMethod
Stefan Vogel <sv@exept.de>
parents: 580
diff changeset
   123
    "Created: / 23.1.1998 / 13:23:15 / stefan"
ffba6b23cc6d Redirect privacy and more literal sends to originalMethod
Stefan Vogel <sv@exept.de>
parents: 580
diff changeset
   124
!
ffba6b23cc6d Redirect privacy and more literal sends to originalMethod
Stefan Vogel <sv@exept.de>
parents: 580
diff changeset
   125
ffba6b23cc6d Redirect privacy and more literal sends to originalMethod
Stefan Vogel <sv@exept.de>
parents: 580
diff changeset
   126
literalsDo:aBlock
2931
8aa6fb3f210b comment/format in:7 methods
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
   127
    "access the wrapped method's literals"
644
ffba6b23cc6d Redirect privacy and more literal sends to originalMethod
Stefan Vogel <sv@exept.de>
parents: 580
diff changeset
   128
ffba6b23cc6d Redirect privacy and more literal sends to originalMethod
Stefan Vogel <sv@exept.de>
parents: 580
diff changeset
   129
    ^ self originalMethod literalsDo:aBlock
ffba6b23cc6d Redirect privacy and more literal sends to originalMethod
Stefan Vogel <sv@exept.de>
parents: 580
diff changeset
   130
ffba6b23cc6d Redirect privacy and more literal sends to originalMethod
Stefan Vogel <sv@exept.de>
parents: 580
diff changeset
   131
    "Created: / 23.1.1998 / 13:09:36 / stefan"
ffba6b23cc6d Redirect privacy and more literal sends to originalMethod
Stefan Vogel <sv@exept.de>
parents: 580
diff changeset
   132
    "Modified: / 23.1.1998 / 13:22:38 / stefan"
ffba6b23cc6d Redirect privacy and more literal sends to originalMethod
Stefan Vogel <sv@exept.de>
parents: 580
diff changeset
   133
!
ffba6b23cc6d Redirect privacy and more literal sends to originalMethod
Stefan Vogel <sv@exept.de>
parents: 580
diff changeset
   134
210
3638d229ce41 subclasses of fixed classes are still possible
Claus Gittinger <cg@exept.de>
parents: 68
diff changeset
   135
methodArgAndVarNames
3638d229ce41 subclasses of fixed classes are still possible
Claus Gittinger <cg@exept.de>
parents: 68
diff changeset
   136
    "return the names of the args and locals of the wrapped method."
3638d229ce41 subclasses of fixed classes are still possible
Claus Gittinger <cg@exept.de>
parents: 68
diff changeset
   137
3638d229ce41 subclasses of fixed classes are still possible
Claus Gittinger <cg@exept.de>
parents: 68
diff changeset
   138
    ^ self originalMethod methodArgAndVarNames
3638d229ce41 subclasses of fixed classes are still possible
Claus Gittinger <cg@exept.de>
parents: 68
diff changeset
   139
!
3638d229ce41 subclasses of fixed classes are still possible
Claus Gittinger <cg@exept.de>
parents: 68
diff changeset
   140
3456
fa2de838ee9b merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   141
methodArgAndVarNamesInContext: context
fa2de838ee9b merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   142
    "return the names of the args and locals of the wrapped method.
fa2de838ee9b merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   143
     in given context (for Java, as in java local names differ by 
fa2de838ee9b merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   144
     actual program counter)"
fa2de838ee9b merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   145
fa2de838ee9b merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   146
    ^ self originalMethod methodArgAndVarNamesInContext: context
fa2de838ee9b merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   147
fa2de838ee9b merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   148
    "Created: / 18-12-2012 / 18:16:44 / Jan Vrany <jan.vrany@fit.cvut.cz>"
fa2de838ee9b merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   149
!
fa2de838ee9b merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   150
210
3638d229ce41 subclasses of fixed classes are still possible
Claus Gittinger <cg@exept.de>
parents: 68
diff changeset
   151
methodVarNames
3638d229ce41 subclasses of fixed classes are still possible
Claus Gittinger <cg@exept.de>
parents: 68
diff changeset
   152
    "return the names of the locals of the wrapped method."
14
530bf06f9c78 *** empty log message ***
claus
parents: 10
diff changeset
   153
210
3638d229ce41 subclasses of fixed classes are still possible
Claus Gittinger <cg@exept.de>
parents: 68
diff changeset
   154
    ^ self originalMethod methodVarNames 
3638d229ce41 subclasses of fixed classes are still possible
Claus Gittinger <cg@exept.de>
parents: 68
diff changeset
   155
!
8
3fba2acf0eeb Initial revision
claus
parents:
diff changeset
   156
508
b9ac899e85c6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 352
diff changeset
   157
numVars
210
3638d229ce41 subclasses of fixed classes are still possible
Claus Gittinger <cg@exept.de>
parents: 68
diff changeset
   158
    "return the number of locals in the wrapped method."
3638d229ce41 subclasses of fixed classes are still possible
Claus Gittinger <cg@exept.de>
parents: 68
diff changeset
   159
508
b9ac899e85c6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 352
diff changeset
   160
    ^ self originalMethod numVars
b9ac899e85c6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 352
diff changeset
   161
b9ac899e85c6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 352
diff changeset
   162
    "Created: 4.11.1996 / 21:40:10 / cg"
210
3638d229ce41 subclasses of fixed classes are still possible
Claus Gittinger <cg@exept.de>
parents: 68
diff changeset
   163
!
8
3fba2acf0eeb Initial revision
claus
parents:
diff changeset
   164
3fba2acf0eeb Initial revision
claus
parents:
diff changeset
   165
originalMethod
14
530bf06f9c78 *** empty log message ***
claus
parents: 10
diff changeset
   166
    "return the method the receiver is wrapping"
8
3fba2acf0eeb Initial revision
claus
parents:
diff changeset
   167
644
ffba6b23cc6d Redirect privacy and more literal sends to originalMethod
Stefan Vogel <sv@exept.de>
parents: 580
diff changeset
   168
    "a kludge: it must be in my literal array somewhere"
ffba6b23cc6d Redirect privacy and more literal sends to originalMethod
Stefan Vogel <sv@exept.de>
parents: 580
diff changeset
   169
    super literalsDo:[:aLiteral |
352
ac12b5bc2754 Move method's literals form literalArray to indexed instvars.
Stefan Vogel <sv@exept.de>
parents: 234
diff changeset
   170
        aLiteral isMethod ifTrue:[
ac12b5bc2754 Move method's literals form literalArray to indexed instvars.
Stefan Vogel <sv@exept.de>
parents: 234
diff changeset
   171
            ^ aLiteral
ac12b5bc2754 Move method's literals form literalArray to indexed instvars.
Stefan Vogel <sv@exept.de>
parents: 234
diff changeset
   172
        ]
8
3fba2acf0eeb Initial revision
claus
parents:
diff changeset
   173
    ].
3fba2acf0eeb Initial revision
claus
parents:
diff changeset
   174
    ^ nil
352
ac12b5bc2754 Move method's literals form literalArray to indexed instvars.
Stefan Vogel <sv@exept.de>
parents: 234
diff changeset
   175
644
ffba6b23cc6d Redirect privacy and more literal sends to originalMethod
Stefan Vogel <sv@exept.de>
parents: 580
diff changeset
   176
    "Modified: / 23.1.1998 / 13:08:25 / stefan"
ffba6b23cc6d Redirect privacy and more literal sends to originalMethod
Stefan Vogel <sv@exept.de>
parents: 580
diff changeset
   177
!
ffba6b23cc6d Redirect privacy and more literal sends to originalMethod
Stefan Vogel <sv@exept.de>
parents: 580
diff changeset
   178
2293
010e135714ae +originalMethodIfWrapped
Claus Gittinger <cg@exept.de>
parents: 2182
diff changeset
   179
originalMethodIfWrapped
010e135714ae +originalMethodIfWrapped
Claus Gittinger <cg@exept.de>
parents: 2182
diff changeset
   180
    "return the method the receiver is wrapping"
010e135714ae +originalMethodIfWrapped
Claus Gittinger <cg@exept.de>
parents: 2182
diff changeset
   181
010e135714ae +originalMethodIfWrapped
Claus Gittinger <cg@exept.de>
parents: 2182
diff changeset
   182
    ^ self originalMethod
010e135714ae +originalMethodIfWrapped
Claus Gittinger <cg@exept.de>
parents: 2182
diff changeset
   183
010e135714ae +originalMethodIfWrapped
Claus Gittinger <cg@exept.de>
parents: 2182
diff changeset
   184
    "Created: / 22-10-2010 / 11:45:42 / cg"
010e135714ae +originalMethodIfWrapped
Claus Gittinger <cg@exept.de>
parents: 2182
diff changeset
   185
!
010e135714ae +originalMethodIfWrapped
Claus Gittinger <cg@exept.de>
parents: 2182
diff changeset
   186
1367
00692bfc2516 care for category and package changes
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
   187
package:aSymbol
00692bfc2516 care for category and package changes
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
   188
    super package:aSymbol.
00692bfc2516 care for category and package changes
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
   189
    self originalMethod package:aSymbol
00692bfc2516 care for category and package changes
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
   190
!
00692bfc2516 care for category and package changes
Claus Gittinger <cg@exept.de>
parents: 971
diff changeset
   191
644
ffba6b23cc6d Redirect privacy and more literal sends to originalMethod
Stefan Vogel <sv@exept.de>
parents: 580
diff changeset
   192
privacy
2931
8aa6fb3f210b comment/format in:7 methods
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
   193
    "return the wrapped method's privacy"
644
ffba6b23cc6d Redirect privacy and more literal sends to originalMethod
Stefan Vogel <sv@exept.de>
parents: 580
diff changeset
   194
ffba6b23cc6d Redirect privacy and more literal sends to originalMethod
Stefan Vogel <sv@exept.de>
parents: 580
diff changeset
   195
    ^ self originalMethod privacy
ffba6b23cc6d Redirect privacy and more literal sends to originalMethod
Stefan Vogel <sv@exept.de>
parents: 580
diff changeset
   196
ffba6b23cc6d Redirect privacy and more literal sends to originalMethod
Stefan Vogel <sv@exept.de>
parents: 580
diff changeset
   197
    "Created: / 23.1.1998 / 13:09:17 / stefan"
ffba6b23cc6d Redirect privacy and more literal sends to originalMethod
Stefan Vogel <sv@exept.de>
parents: 580
diff changeset
   198
    "Modified: / 23.1.1998 / 13:20:59 / stefan"
ffba6b23cc6d Redirect privacy and more literal sends to originalMethod
Stefan Vogel <sv@exept.de>
parents: 580
diff changeset
   199
!
ffba6b23cc6d Redirect privacy and more literal sends to originalMethod
Stefan Vogel <sv@exept.de>
parents: 580
diff changeset
   200
1396
8204bcfc697a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1367
diff changeset
   201
privacy:aSymbol
2931
8aa6fb3f210b comment/format in:7 methods
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
   202
    "set the wrapped method's privacy"
1396
8204bcfc697a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1367
diff changeset
   203
8204bcfc697a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1367
diff changeset
   204
    ^ self originalMethod privacy:aSymbol
8204bcfc697a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1367
diff changeset
   205
!
8204bcfc697a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1367
diff changeset
   206
2182
36769d2ca946 compiler interface
fm
parents: 2101
diff changeset
   207
programmingLanguage
3392
876dd4c1ab5a class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
   208
    ^ (self originalMethod ? self mclass ? Smalltalk) programmingLanguage
876dd4c1ab5a class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
   209
876dd4c1ab5a class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
   210
    "Modified: / 29-08-2013 / 10:59:20 / cg"
2182
36769d2ca946 compiler interface
fm
parents: 2101
diff changeset
   211
!
36769d2ca946 compiler interface
fm
parents: 2101
diff changeset
   212
3306
b4017262b2cd class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3296
diff changeset
   213
replaceOriginalMethodWith:aNewMethod
b4017262b2cd class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3296
diff changeset
   214
    "change the original method which is going to be invoked by this wrapper.
b4017262b2cd class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3296
diff changeset
   215
     The only place where this makes sense is when the original method has to be 
b4017262b2cd class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3296
diff changeset
   216
     replaced by a recompiled breakpointed method (in the debugger)."
b4017262b2cd class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3296
diff changeset
   217
b4017262b2cd class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3296
diff changeset
   218
    "a kludge: it is in my literal array somewhere"
b4017262b2cd class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3296
diff changeset
   219
    1 to:(super numLiterals) do:[:i |
b4017262b2cd class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3296
diff changeset
   220
        (super literalAt:i) isMethod ifTrue:[
b4017262b2cd class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3296
diff changeset
   221
            super literalAt:i put:aNewMethod.
b4017262b2cd class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3296
diff changeset
   222
            ^ self.
b4017262b2cd class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3296
diff changeset
   223
        ]
b4017262b2cd class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3296
diff changeset
   224
    ].
b4017262b2cd class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3296
diff changeset
   225
    ^ self
b4017262b2cd class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3296
diff changeset
   226
!
b4017262b2cd class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3296
diff changeset
   227
1396
8204bcfc697a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1367
diff changeset
   228
restricted:aBoolean
8204bcfc697a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1367
diff changeset
   229
    ^ self originalMethod restricted:aBoolean
8204bcfc697a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1367
diff changeset
   230
!
8204bcfc697a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1367
diff changeset
   231
644
ffba6b23cc6d Redirect privacy and more literal sends to originalMethod
Stefan Vogel <sv@exept.de>
parents: 580
diff changeset
   232
setPrivacy:aSymbol
2931
8aa6fb3f210b comment/format in:7 methods
Claus Gittinger <cg@exept.de>
parents: 2869
diff changeset
   233
    "set the wrapped method's privacy"
644
ffba6b23cc6d Redirect privacy and more literal sends to originalMethod
Stefan Vogel <sv@exept.de>
parents: 580
diff changeset
   234
ffba6b23cc6d Redirect privacy and more literal sends to originalMethod
Stefan Vogel <sv@exept.de>
parents: 580
diff changeset
   235
    ^ self originalMethod setPrivacy:aSymbol
ffba6b23cc6d Redirect privacy and more literal sends to originalMethod
Stefan Vogel <sv@exept.de>
parents: 580
diff changeset
   236
ffba6b23cc6d Redirect privacy and more literal sends to originalMethod
Stefan Vogel <sv@exept.de>
parents: 580
diff changeset
   237
    "Modified: / 23.1.1998 / 13:21:26 / stefan"
ffba6b23cc6d Redirect privacy and more literal sends to originalMethod
Stefan Vogel <sv@exept.de>
parents: 580
diff changeset
   238
    "Created: / 23.1.1998 / 15:26:26 / stefan"
2101
a9c9794266b8 Redirect #source to the original method
Stefan Vogel <sv@exept.de>
parents: 2012
diff changeset
   239
!
a9c9794266b8 Redirect #source to the original method
Stefan Vogel <sv@exept.de>
parents: 2012
diff changeset
   240
3630
ed4a3c50bf11 class: WrappedMethod
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3610
diff changeset
   241
shadowedMethod
ed4a3c50bf11 class: WrappedMethod
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3610
diff changeset
   242
    ^ self originalMethod shadowedMethod
ed4a3c50bf11 class: WrappedMethod
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3610
diff changeset
   243
ed4a3c50bf11 class: WrappedMethod
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3610
diff changeset
   244
    "Created: / 03-10-2014 / 15:23:15 / Jan Vrany <jan.vrany@fit.cvut.cz>"
ed4a3c50bf11 class: WrappedMethod
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3610
diff changeset
   245
!
ed4a3c50bf11 class: WrappedMethod
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3610
diff changeset
   246
2101
a9c9794266b8 Redirect #source to the original method
Stefan Vogel <sv@exept.de>
parents: 2012
diff changeset
   247
source
a9c9794266b8 Redirect #source to the original method
Stefan Vogel <sv@exept.de>
parents: 2012
diff changeset
   248
    "return the source of the method"
a9c9794266b8 Redirect #source to the original method
Stefan Vogel <sv@exept.de>
parents: 2012
diff changeset
   249
a9c9794266b8 Redirect #source to the original method
Stefan Vogel <sv@exept.de>
parents: 2012
diff changeset
   250
    ^ self originalMethod source
3456
fa2de838ee9b merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   251
!
fa2de838ee9b merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   252
fa2de838ee9b merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   253
sourceFilename
fa2de838ee9b merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   254
    "return the sourcefilename if source is extern; nil otherwise"
fa2de838ee9b merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   255
fa2de838ee9b merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   256
    ^ self originalMethod sourceFilename
fa2de838ee9b merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   257
fa2de838ee9b merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   258
    "Created: / 16-10-2013 / 00:05:11 / Jan Vrany <jan.vrany@fit.cvut.cz>"
fa2de838ee9b merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   259
!
fa2de838ee9b merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   260
fa2de838ee9b merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   261
sourcePosition
fa2de838ee9b merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   262
    "return the sourceposition if source is extern; nil otherwise"
fa2de838ee9b merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   263
fa2de838ee9b merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   264
    ^ self originalMethod sourcePosition
fa2de838ee9b merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   265
fa2de838ee9b merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   266
    "Created: / 16-10-2013 / 00:05:49 / Jan Vrany <jan.vrany@fit.cvut.cz>"
8
3fba2acf0eeb Initial revision
claus
parents:
diff changeset
   267
! !
3fba2acf0eeb Initial revision
claus
parents:
diff changeset
   268
3509
3ec710a1ba02 Delegate all annotation requests to original method.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3456
diff changeset
   269
!WrappedMethod methodsFor:'accessing-annotations'!
3ec710a1ba02 Delegate all annotation requests to original method.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3456
diff changeset
   270
3ec710a1ba02 Delegate all annotation requests to original method.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3456
diff changeset
   271
annotateWith: annotation
3516
f9a7b080ae60 class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3509
diff changeset
   272
    "add a (hidden) annotation"
f9a7b080ae60 class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3509
diff changeset
   273
3509
3ec710a1ba02 Delegate all annotation requests to original method.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3456
diff changeset
   274
    ^ self originalMethod annotateWith: annotation
3ec710a1ba02 Delegate all annotation requests to original method.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3456
diff changeset
   275
3ec710a1ba02 Delegate all annotation requests to original method.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3456
diff changeset
   276
    "Created: / 24-02-2014 / 22:47:59 / Jan Vrany <jan.vrany@fit.cvut.cz>"
3ec710a1ba02 Delegate all annotation requests to original method.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3456
diff changeset
   277
!
3ec710a1ba02 Delegate all annotation requests to original method.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3456
diff changeset
   278
3ec710a1ba02 Delegate all annotation requests to original method.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3456
diff changeset
   279
annotationAt: key
3ec710a1ba02 Delegate all annotation requests to original method.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3456
diff changeset
   280
    ^ self originalMethod annotationAt: key
3ec710a1ba02 Delegate all annotation requests to original method.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3456
diff changeset
   281
3ec710a1ba02 Delegate all annotation requests to original method.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3456
diff changeset
   282
    "Created: / 24-02-2014 / 22:49:11 / Jan Vrany <jan.vrany@fit.cvut.cz>"
3ec710a1ba02 Delegate all annotation requests to original method.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3456
diff changeset
   283
!
3ec710a1ba02 Delegate all annotation requests to original method.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3456
diff changeset
   284
3ec710a1ba02 Delegate all annotation requests to original method.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3456
diff changeset
   285
annotations
3ec710a1ba02 Delegate all annotation requests to original method.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3456
diff changeset
   286
    "return the wrapped method's annotations"
3ec710a1ba02 Delegate all annotation requests to original method.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3456
diff changeset
   287
3ec710a1ba02 Delegate all annotation requests to original method.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3456
diff changeset
   288
    ^ self originalMethod annotations
3ec710a1ba02 Delegate all annotation requests to original method.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3456
diff changeset
   289
3ec710a1ba02 Delegate all annotation requests to original method.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3456
diff changeset
   290
    "Created: / 04-12-2011 / 11:22:13 / Jan Vrany <jan.vrany@fit.cvut.cz>"
3ec710a1ba02 Delegate all annotation requests to original method.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3456
diff changeset
   291
!
3ec710a1ba02 Delegate all annotation requests to original method.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3456
diff changeset
   292
3ec710a1ba02 Delegate all annotation requests to original method.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3456
diff changeset
   293
annotations: anObject
3ec710a1ba02 Delegate all annotation requests to original method.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3456
diff changeset
   294
    self originalMethod annotations: anObject
3ec710a1ba02 Delegate all annotation requests to original method.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3456
diff changeset
   295
3ec710a1ba02 Delegate all annotation requests to original method.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3456
diff changeset
   296
    "Created: / 24-02-2014 / 22:49:39 / Jan Vrany <jan.vrany@fit.cvut.cz>"
3ec710a1ba02 Delegate all annotation requests to original method.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3456
diff changeset
   297
!
3ec710a1ba02 Delegate all annotation requests to original method.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3456
diff changeset
   298
3ec710a1ba02 Delegate all annotation requests to original method.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3456
diff changeset
   299
annotationsAt: key
3ec710a1ba02 Delegate all annotation requests to original method.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3456
diff changeset
   300
    ^ self originalMethod annotationAt: key
3ec710a1ba02 Delegate all annotation requests to original method.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3456
diff changeset
   301
3ec710a1ba02 Delegate all annotation requests to original method.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3456
diff changeset
   302
    "Created: / 24-02-2014 / 22:49:53 / Jan Vrany <jan.vrany@fit.cvut.cz>"
3ec710a1ba02 Delegate all annotation requests to original method.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3456
diff changeset
   303
!
3ec710a1ba02 Delegate all annotation requests to original method.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3456
diff changeset
   304
3ec710a1ba02 Delegate all annotation requests to original method.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3456
diff changeset
   305
annotationsAt: key1 orAt: key2
3ec710a1ba02 Delegate all annotation requests to original method.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3456
diff changeset
   306
    ^ self originalMethod annotationsAt: key1 orAt: key2
3ec710a1ba02 Delegate all annotation requests to original method.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3456
diff changeset
   307
3ec710a1ba02 Delegate all annotation requests to original method.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3456
diff changeset
   308
    "Created: / 24-02-2014 / 22:50:16 / Jan Vrany <jan.vrany@fit.cvut.cz>"
3ec710a1ba02 Delegate all annotation requests to original method.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3456
diff changeset
   309
!
3ec710a1ba02 Delegate all annotation requests to original method.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3456
diff changeset
   310
3ec710a1ba02 Delegate all annotation requests to original method.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3456
diff changeset
   311
annotationsAt: key1 orAt: key2 do: block
3ec710a1ba02 Delegate all annotation requests to original method.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3456
diff changeset
   312
    ^ self originalMethod annotationsAt: key1 orAt: key2 do: block
3ec710a1ba02 Delegate all annotation requests to original method.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3456
diff changeset
   313
3ec710a1ba02 Delegate all annotation requests to original method.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3456
diff changeset
   314
    "Created: / 24-02-2014 / 22:50:32 / Jan Vrany <jan.vrany@fit.cvut.cz>"
3ec710a1ba02 Delegate all annotation requests to original method.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3456
diff changeset
   315
!
3ec710a1ba02 Delegate all annotation requests to original method.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3456
diff changeset
   316
3ec710a1ba02 Delegate all annotation requests to original method.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3456
diff changeset
   317
annotationsDo: aBlock
3ec710a1ba02 Delegate all annotation requests to original method.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3456
diff changeset
   318
    ^ self originalMethod annotationsDo: aBlock
3ec710a1ba02 Delegate all annotation requests to original method.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3456
diff changeset
   319
3ec710a1ba02 Delegate all annotation requests to original method.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3456
diff changeset
   320
    "Created: / 24-02-2014 / 22:50:50 / Jan Vrany <jan.vrany@fit.cvut.cz>"
3ec710a1ba02 Delegate all annotation requests to original method.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3456
diff changeset
   321
! !
3ec710a1ba02 Delegate all annotation requests to original method.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3456
diff changeset
   322
2395
e9082ccc0d80 remember wrapped methods to speedup allInstances
Claus Gittinger <cg@exept.de>
parents: 2293
diff changeset
   323
!WrappedMethod methodsFor:'misc'!
e9082ccc0d80 remember wrapped methods to speedup allInstances
Claus Gittinger <cg@exept.de>
parents: 2293
diff changeset
   324
2869
be54d6d26dbf Merged from SVN
vrany
parents: 2644
diff changeset
   325
makeLocalStringSource
be54d6d26dbf Merged from SVN
vrany
parents: 2644
diff changeset
   326
be54d6d26dbf Merged from SVN
vrany
parents: 2644
diff changeset
   327
    self originalMethod makeLocalStringSource
be54d6d26dbf Merged from SVN
vrany
parents: 2644
diff changeset
   328
be54d6d26dbf Merged from SVN
vrany
parents: 2644
diff changeset
   329
    "Created: / 11-02-2012 / 19:09:56 / Jan Vrany <jan.vrany@fit.cvut.cz>"
be54d6d26dbf Merged from SVN
vrany
parents: 2644
diff changeset
   330
!
be54d6d26dbf Merged from SVN
vrany
parents: 2644
diff changeset
   331
2395
e9082ccc0d80 remember wrapped methods to speedup allInstances
Claus Gittinger <cg@exept.de>
parents: 2293
diff changeset
   332
register
e9082ccc0d80 remember wrapped methods to speedup allInstances
Claus Gittinger <cg@exept.de>
parents: 2293
diff changeset
   333
    self class register:self
e9082ccc0d80 remember wrapped methods to speedup allInstances
Claus Gittinger <cg@exept.de>
parents: 2293
diff changeset
   334
e9082ccc0d80 remember wrapped methods to speedup allInstances
Claus Gittinger <cg@exept.de>
parents: 2293
diff changeset
   335
    "Created: / 01-07-2011 / 10:03:26 / cg"
e9082ccc0d80 remember wrapped methods to speedup allInstances
Claus Gittinger <cg@exept.de>
parents: 2293
diff changeset
   336
!
e9082ccc0d80 remember wrapped methods to speedup allInstances
Claus Gittinger <cg@exept.de>
parents: 2293
diff changeset
   337
e9082ccc0d80 remember wrapped methods to speedup allInstances
Claus Gittinger <cg@exept.de>
parents: 2293
diff changeset
   338
unregister
e9082ccc0d80 remember wrapped methods to speedup allInstances
Claus Gittinger <cg@exept.de>
parents: 2293
diff changeset
   339
    self class unregister:self
e9082ccc0d80 remember wrapped methods to speedup allInstances
Claus Gittinger <cg@exept.de>
parents: 2293
diff changeset
   340
e9082ccc0d80 remember wrapped methods to speedup allInstances
Claus Gittinger <cg@exept.de>
parents: 2293
diff changeset
   341
    "Created: / 01-07-2011 / 10:03:32 / cg"
e9082ccc0d80 remember wrapped methods to speedup allInstances
Claus Gittinger <cg@exept.de>
parents: 2293
diff changeset
   342
! !
e9082ccc0d80 remember wrapped methods to speedup allInstances
Claus Gittinger <cg@exept.de>
parents: 2293
diff changeset
   343
3456
fa2de838ee9b merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   344
!WrappedMethod methodsFor:'printing & storing'!
fa2de838ee9b merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   345
fa2de838ee9b merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   346
selectorPrintStringInBrowserFor:selector
fa2de838ee9b merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   347
    ^ [
fa2de838ee9b merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   348
        self originalMethod perform:  #selectorPrintStringInBrowserFor: with: selector
fa2de838ee9b merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   349
    ] on: Object messageNotUnderstoodSignal do:[
fa2de838ee9b merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   350
        super selectorPrintStringInBrowserFor:selector
fa2de838ee9b merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   351
    ].
fa2de838ee9b merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   352
fa2de838ee9b merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   353
    "Created: / 16-10-2013 / 01:04:24 / Jan Vrany <jan.vrany@fit.cvut.cz>"
fa2de838ee9b merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   354
!
fa2de838ee9b merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   355
fa2de838ee9b merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   356
selectorPrintStringInBrowserFor:selector class: class
fa2de838ee9b merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   357
    ^ [
fa2de838ee9b merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   358
        self originalMethod perform:  #selectorPrintStringInBrowserFor:class: with: selector with: class
fa2de838ee9b merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   359
    ] on: Object messageNotUnderstoodSignal do:[
fa2de838ee9b merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   360
        super selectorPrintStringInBrowserFor:selector class: class
fa2de838ee9b merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   361
    ].
fa2de838ee9b merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   362
fa2de838ee9b merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   363
    "Created: / 16-10-2013 / 01:04:41 / Jan Vrany <jan.vrany@fit.cvut.cz>"
fa2de838ee9b merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   364
! !
fa2de838ee9b merged in jv's changes
Claus Gittinger <cg@exept.de>
parents: 3392
diff changeset
   365
3306
b4017262b2cd class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3296
diff changeset
   366
!WrappedMethod methodsFor:'printing and storing'!
b4017262b2cd class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3296
diff changeset
   367
b4017262b2cd class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3296
diff changeset
   368
printOn:aStream
b4017262b2cd class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3296
diff changeset
   369
    "put a printed representation of the receiver onto aStream.
b4017262b2cd class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3296
diff changeset
   370
     Since methods do not store their class/selector, we have to search
b4017262b2cd class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3296
diff changeset
   371
     for it here."
b4017262b2cd class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3296
diff changeset
   372
b4017262b2cd class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3296
diff changeset
   373
    self basicPrintOn:aStream."/ aStream nextPutAll:(self classNameWithArticle).
b4017262b2cd class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3296
diff changeset
   374
    aStream nextPutAll:'(for '.
b4017262b2cd class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3296
diff changeset
   375
    aStream nextPutAll:self originalMethod whoString.
b4017262b2cd class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3296
diff changeset
   376
    aStream nextPutAll:')'.
b4017262b2cd class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3296
diff changeset
   377
! !
b4017262b2cd class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3296
diff changeset
   378
2644
vrany
parents: 2635
diff changeset
   379
!WrappedMethod methodsFor:'private'!
vrany
parents: 2635
diff changeset
   380
vrany
parents: 2635
diff changeset
   381
annotationAtIndex: index
vrany
parents: 2635
diff changeset
   382
    "return annotation at given index.
3878
e19107344368 class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3630
diff changeset
   383
     any raw annotation array is lazily initialized"
2644
vrany
parents: 2635
diff changeset
   384
vrany
parents: 2635
diff changeset
   385
    ^self originalMethod annotationAtIndex: index
vrany
parents: 2635
diff changeset
   386
vrany
parents: 2635
diff changeset
   387
    "Created: / 16-12-2011 / 19:54:23 / Jan Vrany <jan.vrany@fit.cvut.cz>"
vrany
parents: 2635
diff changeset
   388
!
vrany
parents: 2635
diff changeset
   389
vrany
parents: 2635
diff changeset
   390
annotationIndexOf: key
vrany
parents: 2635
diff changeset
   391
vrany
parents: 2635
diff changeset
   392
    "Returns index of annotation with given key
vrany
parents: 2635
diff changeset
   393
     or nil if there is no such annotation"
vrany
parents: 2635
diff changeset
   394
vrany
parents: 2635
diff changeset
   395
    ^self originalMethod annotationIndexOf: key
vrany
parents: 2635
diff changeset
   396
vrany
parents: 2635
diff changeset
   397
    "Created: / 16-12-2011 / 19:53:09 / Jan Vrany <jan.vrany@fit.cvut.cz>"
vrany
parents: 2635
diff changeset
   398
! !
vrany
parents: 2635
diff changeset
   399
210
3638d229ce41 subclasses of fixed classes are still possible
Claus Gittinger <cg@exept.de>
parents: 68
diff changeset
   400
!WrappedMethod methodsFor:'queries'!
3638d229ce41 subclasses of fixed classes are still possible
Claus Gittinger <cg@exept.de>
parents: 68
diff changeset
   401
733
2afae9b25d47 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   402
argSignature
2afae9b25d47 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   403
    ^ self originalMethod argSignature
2afae9b25d47 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   404
2afae9b25d47 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   405
    "Created: / 27.1.1999 / 20:23:17 / cg"
2afae9b25d47 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   406
!
2afae9b25d47 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   407
3296
b35d12f98716 class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 2931
diff changeset
   408
hasAnnotation
b35d12f98716 class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 2931
diff changeset
   409
    "Return true iff the method has any annotation"
b35d12f98716 class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 2931
diff changeset
   410
b35d12f98716 class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 2931
diff changeset
   411
    ^ self originalMethod hasAnnotation
b35d12f98716 class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 2931
diff changeset
   412
!
b35d12f98716 class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 2931
diff changeset
   413
2012
cb8630ac1ed4 forward resource query
Michael Beyl <mb@exept.de>
parents: 1396
diff changeset
   414
hasResource
cb8630ac1ed4 forward resource query
Michael Beyl <mb@exept.de>
parents: 1396
diff changeset
   415
    "return the wrapped methods hasResource"
cb8630ac1ed4 forward resource query
Michael Beyl <mb@exept.de>
parents: 1396
diff changeset
   416
cb8630ac1ed4 forward resource query
Michael Beyl <mb@exept.de>
parents: 1396
diff changeset
   417
    ^ self originalMethod hasResource
cb8630ac1ed4 forward resource query
Michael Beyl <mb@exept.de>
parents: 1396
diff changeset
   418
!
cb8630ac1ed4 forward resource query
Michael Beyl <mb@exept.de>
parents: 1396
diff changeset
   419
576
9519831877b1 moved isBreakPointed / isTrapped queries into method
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
   420
isBreakpointed
9519831877b1 moved isBreakPointed / isTrapped queries into method
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
   421
    "return true, if the receiver is a wrapped method for a breakpoint.
4213
30d0d0045710 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
   422
     Ask the messageTracer, since I don't know if it's a break or trace"
576
9519831877b1 moved isBreakPointed / isTrapped queries into method
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
   423
9519831877b1 moved isBreakPointed / isTrapped queries into method
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
   424
    ^ (MessageTracer isTrapped:self)
9519831877b1 moved isBreakPointed / isTrapped queries into method
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
   425
4213
30d0d0045710 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
   426
    "Created: / 07-04-1997 / 17:25:40 / cg"
30d0d0045710 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
   427
    "Modified (comment): / 13-02-2017 / 20:35:11 / cg"
576
9519831877b1 moved isBreakPointed / isTrapped queries into method
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
   428
!
9519831877b1 moved isBreakPointed / isTrapped queries into method
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
   429
3610
3d4bb9c61850 Initial support for simple method mocking (for tests, mainly)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3586
diff changeset
   430
isMocked
3d4bb9c61850 Initial support for simple method mocking (for tests, mainly)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3586
diff changeset
   431
    "Return true, if the method has been mocked (by means of MessageTracer>>mockMethod:do:"
3d4bb9c61850 Initial support for simple method mocking (for tests, mainly)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3586
diff changeset
   432
3d4bb9c61850 Initial support for simple method mocking (for tests, mainly)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3586
diff changeset
   433
    ^ MessageTracer isMocking: self.
3d4bb9c61850 Initial support for simple method mocking (for tests, mainly)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3586
diff changeset
   434
3d4bb9c61850 Initial support for simple method mocking (for tests, mainly)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3586
diff changeset
   435
    "Created: / 29-07-2014 / 09:50:20 / Jan Vrany <jan.vrany@fit.cvut.cz>"
3d4bb9c61850 Initial support for simple method mocking (for tests, mainly)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3586
diff changeset
   436
!
3d4bb9c61850 Initial support for simple method mocking (for tests, mainly)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3586
diff changeset
   437
580
8810e941bcfb #isTimed query
Claus Gittinger <cg@exept.de>
parents: 576
diff changeset
   438
isTimed
8810e941bcfb #isTimed query
Claus Gittinger <cg@exept.de>
parents: 576
diff changeset
   439
    "return true, if the receiver is a wrapped method for a time measurement.
4213
30d0d0045710 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
   440
     Ask the messageTracer, since I don't know if it's a break or trace"
580
8810e941bcfb #isTimed query
Claus Gittinger <cg@exept.de>
parents: 576
diff changeset
   441
8810e941bcfb #isTimed query
Claus Gittinger <cg@exept.de>
parents: 576
diff changeset
   442
    ^ (MessageTracer isTiming:self)
8810e941bcfb #isTimed query
Claus Gittinger <cg@exept.de>
parents: 576
diff changeset
   443
4213
30d0d0045710 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
   444
    "Created: / 11-04-1997 / 17:06:14 / cg"
30d0d0045710 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
   445
    "Modified (comment): / 13-02-2017 / 20:35:15 / cg"
580
8810e941bcfb #isTimed query
Claus Gittinger <cg@exept.de>
parents: 576
diff changeset
   446
!
8810e941bcfb #isTimed query
Claus Gittinger <cg@exept.de>
parents: 576
diff changeset
   447
576
9519831877b1 moved isBreakPointed / isTrapped queries into method
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
   448
isTraced
9519831877b1 moved isBreakPointed / isTrapped queries into method
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
   449
    "return true, if the receiver is a wrapped method for a trace point.
4213
30d0d0045710 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
   450
     Ask the messageTracer, since I don't know if it's a break or trace"
576
9519831877b1 moved isBreakPointed / isTrapped queries into method
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
   451
9519831877b1 moved isBreakPointed / isTrapped queries into method
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
   452
    ^ (MessageTracer isTrapped:self) not
9519831877b1 moved isBreakPointed / isTrapped queries into method
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
   453
4213
30d0d0045710 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
   454
    "Created: / 07-04-1997 / 17:25:54 / cg"
30d0d0045710 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 4130
diff changeset
   455
    "Modified (comment): / 13-02-2017 / 20:35:20 / cg"
576
9519831877b1 moved isBreakPointed / isTrapped queries into method
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
   456
!
9519831877b1 moved isBreakPointed / isTrapped queries into method
Claus Gittinger <cg@exept.de>
parents: 551
diff changeset
   457
210
3638d229ce41 subclasses of fixed classes are still possible
Claus Gittinger <cg@exept.de>
parents: 68
diff changeset
   458
isWrapped
3638d229ce41 subclasses of fixed classes are still possible
Claus Gittinger <cg@exept.de>
parents: 68
diff changeset
   459
    "return true, if the receiver is a wrapped method.
3638d229ce41 subclasses of fixed classes are still possible
Claus Gittinger <cg@exept.de>
parents: 68
diff changeset
   460
     True is returned here, since the receiver is always a wrapped one"
3638d229ce41 subclasses of fixed classes are still possible
Claus Gittinger <cg@exept.de>
parents: 68
diff changeset
   461
3638d229ce41 subclasses of fixed classes are still possible
Claus Gittinger <cg@exept.de>
parents: 68
diff changeset
   462
    ^ true
729
65df4874f0a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 644
diff changeset
   463
!
65df4874f0a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 644
diff changeset
   464
971
685a322f25de checkin from browser
Claus Gittinger <cg@exept.de>
parents: 940
diff changeset
   465
messagesSent
940
2ec011688c35 more queries (sentMessages ...)
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   466
    "return a collection of message selectors sent by this method"
2ec011688c35 more queries (sentMessages ...)
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   467
971
685a322f25de checkin from browser
Claus Gittinger <cg@exept.de>
parents: 940
diff changeset
   468
    ^ self originalMethod messagesSent 
940
2ec011688c35 more queries (sentMessages ...)
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   469
!
2ec011688c35 more queries (sentMessages ...)
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   470
971
685a322f25de checkin from browser
Claus Gittinger <cg@exept.de>
parents: 940
diff changeset
   471
messagesSentToSelf
685a322f25de checkin from browser
Claus Gittinger <cg@exept.de>
parents: 940
diff changeset
   472
    "return a collection of message selectors sent to self by this method"
940
2ec011688c35 more queries (sentMessages ...)
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   473
971
685a322f25de checkin from browser
Claus Gittinger <cg@exept.de>
parents: 940
diff changeset
   474
    ^ self originalMethod messagesSentToSelf 
685a322f25de checkin from browser
Claus Gittinger <cg@exept.de>
parents: 940
diff changeset
   475
!
940
2ec011688c35 more queries (sentMessages ...)
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   476
971
685a322f25de checkin from browser
Claus Gittinger <cg@exept.de>
parents: 940
diff changeset
   477
messagesSentToSuper
685a322f25de checkin from browser
Claus Gittinger <cg@exept.de>
parents: 940
diff changeset
   478
    "return a collection of message selectors sent to super by this method"
940
2ec011688c35 more queries (sentMessages ...)
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   479
971
685a322f25de checkin from browser
Claus Gittinger <cg@exept.de>
parents: 940
diff changeset
   480
    ^ self originalMethod messagesSentToSuper 
940
2ec011688c35 more queries (sentMessages ...)
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   481
!
2ec011688c35 more queries (sentMessages ...)
Claus Gittinger <cg@exept.de>
parents: 839
diff changeset
   482
3366
ec8284efff96 class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3306
diff changeset
   483
parse:parseSelector with:arg2 return:accessSelector or:valueIfNoSource
3392
876dd4c1ab5a class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
   484
    |m|
876dd4c1ab5a class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
   485
876dd4c1ab5a class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
   486
    (m := self originalMethod) notNil ifTrue:[
876dd4c1ab5a class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
   487
        ^ m parse:parseSelector with:arg2 return:accessSelector or:valueIfNoSource
876dd4c1ab5a class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
   488
    ].
876dd4c1ab5a class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
   489
    ^ valueIfNoSource
3366
ec8284efff96 class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3306
diff changeset
   490
ec8284efff96 class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3306
diff changeset
   491
    "Created: / 02-08-2013 / 10:57:02 / cg"
ec8284efff96 class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3306
diff changeset
   492
!
ec8284efff96 class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3306
diff changeset
   493
3296
b35d12f98716 class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 2931
diff changeset
   494
refersToLiteral: anObject
b35d12f98716 class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 2931
diff changeset
   495
    ^ self originalMethod refersToLiteral: anObject
b35d12f98716 class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 2931
diff changeset
   496
!
b35d12f98716 class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 2931
diff changeset
   497
2012
cb8630ac1ed4 forward resource query
Michael Beyl <mb@exept.de>
parents: 1396
diff changeset
   498
resources
cb8630ac1ed4 forward resource query
Michael Beyl <mb@exept.de>
parents: 1396
diff changeset
   499
    "return the wrapped methods resources"
cb8630ac1ed4 forward resource query
Michael Beyl <mb@exept.de>
parents: 1396
diff changeset
   500
cb8630ac1ed4 forward resource query
Michael Beyl <mb@exept.de>
parents: 1396
diff changeset
   501
    ^ self originalMethod resources
cb8630ac1ed4 forward resource query
Michael Beyl <mb@exept.de>
parents: 1396
diff changeset
   502
!
cb8630ac1ed4 forward resource query
Michael Beyl <mb@exept.de>
parents: 1396
diff changeset
   503
729
65df4874f0a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 644
diff changeset
   504
signature
65df4874f0a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 644
diff changeset
   505
    ^ self originalMethod signature
65df4874f0a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 644
diff changeset
   506
65df4874f0a6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 644
diff changeset
   507
    "Created: / 14.11.1998 / 00:01:50 / cg"
733
2afae9b25d47 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   508
!
2afae9b25d47 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   509
2afae9b25d47 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   510
signatureNameWithoutReturnType
2afae9b25d47 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   511
    ^ self originalMethod signatureNameWithoutReturnType
2afae9b25d47 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   512
2afae9b25d47 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 729
diff changeset
   513
    "Created: / 27.1.1999 / 20:52:25 / cg"
210
3638d229ce41 subclasses of fixed classes are still possible
Claus Gittinger <cg@exept.de>
parents: 68
diff changeset
   514
! !
3638d229ce41 subclasses of fixed classes are still possible
Claus Gittinger <cg@exept.de>
parents: 68
diff changeset
   515
508
b9ac899e85c6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 352
diff changeset
   516
!WrappedMethod class methodsFor:'documentation'!
210
3638d229ce41 subclasses of fixed classes are still possible
Claus Gittinger <cg@exept.de>
parents: 68
diff changeset
   517
3586
79874305ab30 class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3585
diff changeset
   518
version
4130
59d2c86ac996 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3878
diff changeset
   519
    ^ '$Header$'
3586
79874305ab30 class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3585
diff changeset
   520
!
79874305ab30 class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3585
diff changeset
   521
79874305ab30 class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3585
diff changeset
   522
version_CVS
4130
59d2c86ac996 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3878
diff changeset
   523
    ^ '$Header$'
3586
79874305ab30 class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3585
diff changeset
   524
!
79874305ab30 class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 3585
diff changeset
   525
2869
be54d6d26dbf Merged from SVN
vrany
parents: 2644
diff changeset
   526
version_SVN
4130
59d2c86ac996 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 3878
diff changeset
   527
    ^ '$Id$'
210
3638d229ce41 subclasses of fixed classes are still possible
Claus Gittinger <cg@exept.de>
parents: 68
diff changeset
   528
! !
3296
b35d12f98716 class: WrappedMethod
Claus Gittinger <cg@exept.de>
parents: 2931
diff changeset
   529