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