[squeak-dev] The Inbox: Kernel-ct.1256.mcz

commits at source.squeak.org commits at source.squeak.org
Fri Aug 9 20:14:03 UTC 2019


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: [#()]!



More information about the Squeak-dev mailing list