[squeak-dev] The Trunk: System-tpr.1156.mcz

commits at source.squeak.org commits at source.squeak.org
Mon May 11 01:24:14 UTC 2020


tim Rowledge uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-tpr.1156.mcz

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

Name: System-tpr.1156
Author: tpr
Time: 10 May 2020, 6:24:07.222211 pm
UUID: c26f6e01-953b-49eb-ac2c-06ef1f1a1850
Ancestors: System-mt.1155

Correct a couple of underscore as assign issues

=============== Diff against System-mt.1155 ===============

Item was changed:
  ----- Method: RenamedClassSourceReader>>scanFromNoCompile:forSegment: (in category 'fileIn/Out') -----
  scanFromNoCompile: aStream forSegment: anImageSegment
  	"Just move the source code for the methods from aStream."
  	| methodText d |
  
  	[
+ 		(methodText := aStream nextChunkText) size > 0
- 		(methodText _ aStream nextChunkText) size > 0
  	] whileTrue: [
  		(SourceFiles at: 2) ifNotNil: [
+ 			d := Dictionary new.
- 			d _ Dictionary new.
  			d
  				at: #oldClassName put: class;		"may be 'Player1' or 'Player1 class'"
  				at: #methodText put: methodText;
  				at: #changeStamp put: changeStamp;
  				at: #category put: category.
  			anImageSegment acceptSingleMethodSource: d.
  		]
  	]!



More information about the Squeak-dev mailing list