[Pkg] The Trunk: Kernel-eem.1186.mcz

commits at source.squeak.org commits at source.squeak.org
Sat Jul 28 16:17:50 UTC 2018


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

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

Name: Kernel-eem.1186
Author: eem
Time: 27 July 2018, 3:00:17.345945 pm
UUID: d3be6129-85ff-4018-913c-630454ce7f5c
Ancestors: Kernel-eem.1185

Fix Pragma printing so it is easier for the tests to filter out the added comment that identifies the method the pragma is in, added to Pragma>>printOn:.

=============== Diff against Kernel-eem.1185 ===============

Item was changed:
  ----- Method: Pragma>>printOn: (in category 'printing') -----
  printOn: aStream
  	aStream
  		nextPut: $<;
+ 		print: self message;
+ 		nextPut: $>.
- 		print: self message.
  	method ifNotNil:
  		[:m|
  		 aStream nextPutAll: ' "in '.
  		 m printReferenceOn: aStream.
+ 		 aStream nextPut: $"]!
- 		 aStream nextPut: $"].
- 	aStream nextPut: $>!



More information about the Packages mailing list