[squeak-dev] The Trunk: Tools-tfel.126.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Sep 17 03:10:41 UTC 2009


Andreas Raab uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-tfel.126.mcz

==================== Summary ====================

Name: Tools-tfel.126
Author: tfel
Time: 16 September 2009, 1:03:09 am
UUID: 13a2ff05-3b43-4af8-966a-6e4dade5e7e9
Ancestors: Tools-ar.125

ContextPart>>methodSelector is deprecated. Change to recommended method #selector

=============== Diff against Tools-ar.125 ===============

Item was changed:
  ----- Method: Debugger>>selectedMessageName (in category 'context stack (message list)') -----
  selectedMessageName
  	"Answer the message selector of the currently selected context.
  	 If the method is unbound we can still usefully answer its old selector."
  
  	| selector |
+ 	selector := self selectedContext selector.
- 	selector := self selectedContext methodSelector.
  	^(selector ~~ self selectedContext method selector
  	    and: [selector beginsWith: 'DoIt'])
  		ifTrue: [self selectedContext method selector]
  		ifFalse: [selector]!




More information about the Squeak-dev mailing list