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

commits at source.squeak.org commits at source.squeak.org
Fri Oct 2 20:44:33 UTC 2020


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

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

Name: Tools-eem.994
Author: eem
Time: 2 October 2020, 1:44:29.015648 pm
UUID: 23145257-280d-4a4a-a4ba-3b5cc367f9a9
Ancestors: Tools-eem.993

Oops! Compiledmethod>>blockExtentsToTempsMap needs to observe that startKeysToBlockExtents has moved to DebuggerMethodMap.

=============== Diff against Tools-eem.993 ===============

Item was changed:
  ----- Method: CompiledMethod>>blockExtentsToTempsMap (in category '*Tools-Debugger-support') -----
  blockExtentsToTempsMap
  	"If the receiver has been copied with temp names answer a
  	 map from blockExtent to temps map in the same format as
  	 BytecodeEncoder>>blockExtentsToTempNamesMap.  if the
  	 receiver has not been copied with temps answer nil."
  	^self holdsTempNames ifTrue:
+ 		[self mapFromBlockKeys: (self debuggerMap startKeysToBlockExtents values sort: [:assocA :assocB| assocA first <= assocB first])
- 		[self mapFromBlockKeys: (self startKeysToBlockExtents values sort: [:assocA :assocB| assocA first <= assocB first])
  			toSchematicTemps: self tempNamesString]!



More information about the Squeak-dev mailing list