The Trunk: Collections-pre.856.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: Collections-pre.856.mcz

commits-2
Patrick Rein uploaded a new version of Collections to project The Trunk:
http://source.squeak.org/trunk/Collections-pre.856.mcz

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

Name: Collections-pre.856
Author: pre
Time: 2 October 2019, 3:33:03.570738 pm
UUID: b3006f02-cc87-2e4f-861b-a55e8478d1a7
Ancestors: Collections-jr.855

Removes asMutator and isMutator from Collections package

=============== Diff against Collections-jr.855 ===============

Item was removed:
- ----- Method: Symbol>>asMutator (in category 'converting') -----
- asMutator
- "Return a setter message from a getter message. For example, #name asMutator returns #name:"
- ^ self last = $:
- ifTrue: [ self ]
- ifFalse: [ (self copyWith: $:) asSymbol ]!

Item was removed:
- ----- Method: Symbol>>isMutator (in category 'testing') -----
- isMutator
-
- ^ self isKeyword and: [self numArgs = 1]!