[squeak-dev] The Trunk: 60Deprecated-ct.104.mcz

commits at source.squeak.org commits at source.squeak.org
Mon Feb 7 20:18:38 UTC 2022


Christoph Thiede uploaded a new version of 60Deprecated to project The Trunk:
http://source.squeak.org/trunk/60Deprecated-ct.104.mcz

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

Name: 60Deprecated-ct.104
Author: ct
Time: 7 February 2022, 9:16:24.95229 pm
UUID: 47cc2997-9925-2c40-8c6d-076dd6d459ea
Ancestors: 60Deprecated-ct.103

Complements Compiler-ct.468 (UndeclaredVariableWarning -> UndeclaredVariableNotification).

=============== Diff against 60Deprecated-ct.103 ===============

Item was added:
+ UndeclaredVariableNotification subclass: #UndeclaredVariableWarning
+ 	instanceVariableNames: ''
+ 	classVariableNames: ''
+ 	poolDictionaries: ''
+ 	category: '60Deprecated-Compiler-Support'!

Item was added:
+ ----- Method: UndeclaredVariableWarning class>>handles: (in category 'exceptionSelector') -----
+ handles: exception
+ 
+ 	self deprecated: 'ct: Use UndeclaredVariableNotification instead'.
+ 	
+ 	^ super handles: exception!

Item was added:
+ ----- Method: UndeclaredVariableWarning>>initialize (in category 'initialize-release') -----
+ initialize
+ 
+ 	self deprecated: 'ct: Use UndeclaredVariableNotification instead'.
+ 	
+ 	^ super initialize!



More information about the Squeak-dev mailing list