[Pkg] The Trunk: Kernel-cmm.937.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Aug 6 15:14:16 UTC 2015


Chris Muller uploaded a new version of Kernel to project The Trunk:
http://source.squeak.org/trunk/Kernel-cmm.937.mcz

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

Name: Kernel-cmm.937
Author: cmm
Time: 5 August 2015, 8:06:28.072 pm
UUID: 191e34d9-22d7-4e46-ac5d-cb3cd9baf203
Ancestors: Kernel-cmm.936

- #hasBreakpoint is now needed by Kernel, but must be able to operate independently of System's BreakpointManager.

=============== Diff against Kernel-cmm.936 ===============

Item was changed:
+ ----- Method: CompiledMethod>>hasBreakpoint (in category '*Kernel-tool support') -----
- ----- Method: CompiledMethod>>hasBreakpoint (in category 'testing') -----
  hasBreakpoint
+ 	^ self class environment
+ 		at: #BreakpointManager
+ 		ifPresent: [:bpm | bpm methodHasBreakpoint: self]
+ 		ifAbsent: [false]!
- 	^false!



More information about the Packages mailing list