MethodReference.st
changeset 944 7551910bc2e8
parent 393 d95cbbca60c0
child 1146 c2a6d052107c
equal deleted inserted replaced
943:020cfc28a757 944:7551910bc2e8
   106 compiledMethod
   106 compiledMethod
   107 	^ self actualClass compiledMethodAt: methodSymbol
   107 	^ self actualClass compiledMethodAt: methodSymbol
   108 !
   108 !
   109 
   109 
   110 isLocalSelector
   110 isLocalSelector
   111 	^self actualClass
   111         ^self actualClass
   112 		includesLocalSelector: self methodSymbol
   112                 "/ includesLocalSelector: self methodSymbol
       
   113                 implements: self methodSymbol
   113 !
   114 !
   114 
   115 
   115 source
   116 source
   116         ^ (self actualClass sourceCodeAt: methodSymbol) asString asStringWithSqueakLineEndings
   117         ^ (self actualClass sourceCodeAt: methodSymbol) asString asStringWithSqueakLineEndings
   117 
   118 
   252 ! !
   253 ! !
   253 
   254 
   254 !MethodReference class methodsFor:'documentation'!
   255 !MethodReference class methodsFor:'documentation'!
   255 
   256 
   256 version
   257 version
   257     ^ '$Header: /cvs/stx/stx/goodies/monticello/MethodReference.st,v 1.1 2011-08-20 13:17:11 cg Exp $'
   258     ^ '$Header: /cvs/stx/stx/goodies/monticello/MethodReference.st,v 1.2 2014-12-21 13:08:18 cg Exp $'
   258 !
   259 !
   259 
   260 
   260 version_CVS
   261 version_CVS
   261     ^ '$Header: /cvs/stx/stx/goodies/monticello/MethodReference.st,v 1.1 2011-08-20 13:17:11 cg Exp $'
   262     ^ '$Header: /cvs/stx/stx/goodies/monticello/MethodReference.st,v 1.2 2014-12-21 13:08:18 cg Exp $'
   262 !
   263 !
   263 
   264 
   264 version_SVN
   265 version_SVN
   265     ^ '§Id: MethodReference.st 8 2010-09-12 17:15:52Z vranyj1 §'
   266     ^ '$Id: MethodReference.st,v 1.2 2014-12-21 13:08:18 cg Exp $'
   266 ! !
   267 ! !
       
   268