Levente Uzonyi uploaded a new version of Kernel to project The Trunk:
http://source.squeak.org/trunk/Kernel-ul.1175.mcz==================== Summary ====================
Name: Kernel-ul.1175
Author: ul
Time: 1 June 2018, 8:01:13.047217 pm
UUID: 5b70dacb-2f1e-40df-85db-f457ee728ed4
Ancestors: Kernel-eem.1174
Added ClassDescription >> #compileSilently:, the missing method of the #compileSilently:* family.
=============== Diff against Kernel-eem.1174 ===============
Item was added:
+ ----- Method: ClassDescription>>compileSilently: (in category 'compiling') -----
+ compileSilently: code
+ "Compile the code, leaving no trail in the system log, nor in any change set, nor in the 'recent submissions' list. This should only be used when you know for sure that the compilation will succeed."
+
+ ^ self compileSilently: code classified: ClassOrganizer default.!