[squeak-dev] The Trunk: System-ul.937.mcz

commits at source.squeak.org commits at source.squeak.org
Sun Mar 19 23:35:48 UTC 2017


Levente Uzonyi uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-ul.937.mcz

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

Name: System-ul.937
Author: ul
Time: 20 March 2017, 12:35:03.813931 am
UUID: 01691bb8-181f-4795-83ce-20130031a81d
Ancestors: System-ul.936

Fixed SmalltalkImage >> #specialSelectors. SystemTracer doesn't use it any more, but it's being used by tests, which expect it to return only the selectors without their argument count.

=============== Diff against System-ul.936 ===============

Item was changed:
  ----- Method: SmalltalkImage>>specialSelectors (in category 'special objects') -----
  specialSelectors
+ 	
+ 	| arrayOfPairs |
+ 	arrayOfPairs := self specialObjectsArray at: 24.
+ 	^Array new: arrayOfPairs size // 2 streamContents: [ :stream |
+ 		arrayOfPairs pairsDo: [ :selector :numArgs |
+ 			stream nextPut: selector ] ]
+ !
- 	"Used by SystemTracer only."
- 
- 	^SpecialSelectors!



More information about the Squeak-dev mailing list