A new version of Kernel was added to project The Inbox:
http://source.squeak.org/inbox/Kernel-ct.1256.mcz==================== Summary ====================
Name: Kernel-ct.1256
Author: ct
Time: 9 August 2019, 10:13:59.051412 pm
UUID: 4b6baca9-0e16-ea4d-9913-b813ebf87863
Ancestors: Kernel-ct.1255
Deduplicate CompiledMethod>>#pragmasAt:
=============== Diff against Kernel-ct.1255 ===============
Item was changed:
----- Method: CompiledMethod>>pragmasAt: (in category 'accessing-pragmas & properties') -----
pragmasAt: aSelector
+ ^self pragmas select: [:p| p keyword = aSelector]!
- | selectorOrProperties |
- ^(selectorOrProperties := self penultimateLiteral) isMethodProperties
- ifTrue: [selectorOrProperties pragmas select: [:p| p keyword = aSelector]]
- ifFalse: [#()]!