The Trunk: Kernel-eem.1186.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: Kernel-eem.1186.mcz

commits-2
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: $>!