[squeak-dev] The Trunk: Tools-eem.1104.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Jan 13 18:21:13 UTC 2022


Eliot Miranda uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-eem.1104.mcz

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

Name: Tools-eem.1104
Author: eem
Time: 13 January 2022, 10:21:10.513361 am
UUID: 1d051d8d-473d-43ee-9628-d33992a5849f
Ancestors: Tools-mt.1103

Fix MNU in menu building for MessageTrace with no method selected

=============== Diff against Tools-mt.1103 ===============

Item was changed:
  ----- Method: CodeHolder>>isBreakOnEntry (in category 'breakpoints') -----
  isBreakOnEntry
  
+ 	^self selectedClassOrMetaClass
+ 		ifNil: [false]
+ 		ifNotNil:
+ 			[:class|
+ 			 (class
+ 					compiledMethodAt: self selectedMessageName
+ 					ifAbsent: nil)
+ 				ifNil: [false]
+ 				ifNotNil: [:method| method hasBreakpoint]]!
- 	| selectedMethod |
- 	selectedMethod := self selectedClassOrMetaClass
- 		compiledMethodAt: self selectedMessageName
- 		ifAbsent: [^ false].
- 	^ selectedMethod hasBreakpoint!



More information about the Squeak-dev mailing list