[squeak-dev] The Inbox: Kernel-kfr.1339.mcz

commits at source.squeak.org commits at source.squeak.org
Tue Sep 15 05:48:53 UTC 2020


A new version of Kernel was added to project The Inbox:
http://source.squeak.org/inbox/Kernel-kfr.1339.mcz

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

Name: Kernel-kfr.1339
Author: kfr
Time: 15 September 2020, 7:48:44.907977 am
UUID: 9e1761d0-c2a1-b74a-bfe7-90dd49e320f1
Ancestors: Kernel-ct.1338

Fix a deprecation warning

=============== Diff against Kernel-ct.1338 ===============

Item was changed:
  ----- Method: Class>>binding (in category 'compiling') -----
  binding
  	"Answer a binding for the receiver, sharing if possible"
  	| binding |
+ 	binding := Smalltalk globals associationAt: name ifAbsent: [nil -> self].
- 	binding := self environment associationAt: name ifAbsent: [nil -> self].
  	^binding value == self ifTrue:[binding] ifFalse:[nil -> self].!



More information about the Squeak-dev mailing list