[squeak-dev] The Trunk: EToys-mt.454.mcz

commits at source.squeak.org commits at source.squeak.org
Sun Dec 26 07:23:00 UTC 2021


Marcel Taeumel uploaded a new version of EToys to project The Trunk:
http://source.squeak.org/trunk/EToys-mt.454.mcz

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

Name: EToys-mt.454
Author: mt
Time: 26 December 2021, 8:22:50.473619 am
UUID: 3840bab6-5a8b-844d-a540-5fb54d648350
Ancestors: EToys-mt.453

Complements Kernel-mt.1437

=============== Diff against EToys-mt.453 ===============

Item was changed:
  ----- Method: CardPlayer class>>acceptsLoggingOfCompilation (in category 'compiling') -----
  acceptsLoggingOfCompilation
  	"Answer whether methods of the receiver should be logged when submitted."
  
+ 	^super acceptsLoggingOfCompilation
+ 		and:
+ 			[ #(CardPlayer)
+ 				includes: self class theNonMetaClass name]!
- 	^ #(CardPlayer) includes: self class theNonMetaClass name!

Item was changed:
  ----- Method: Component class>>acceptsLoggingOfCompilation (in category 'compiling') -----
  acceptsLoggingOfCompilation
+ 	"Log everything for now."
+ 	"This is ancient code that appears likely to be redundant. Until that is properly established we'll handle it explicitly"
- 	"Log everything for now"
  
+ 	^super acceptsLoggingOfCompilation!
- 	^ true!

Item was changed:
  ----- Method: UnscriptedPlayer class>>acceptsLoggingOfCompilation (in category 'compiling') -----
  acceptsLoggingOfCompilation
+ 	"Log everything for now."
+ 	"This is ancient code that appears likely to be redundant. Until that is properly established we'll handle it explicitly"
+ 
+ 	^super acceptsLoggingOfCompilation!
- 	^ true!



More information about the Squeak-dev mailing list