[squeak-dev] The Trunk: Kernel-ar.294.mcz

commits at source.squeak.org commits at source.squeak.org
Fri Nov 13 04:26:21 UTC 2009


Andreas Raab uploaded a new version of Kernel to project The Trunk:
http://source.squeak.org/trunk/Kernel-ar.294.mcz

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

Name: Kernel-ar.294
Author: ar
Time: 12 November 2009, 8:25:50 am
UUID: 5023d4fb-a9d6-9c49-9e35-1b4cd724d298
Ancestors: Kernel-ul.293

Merging Kernel-ul.293:

- moved #hasContentsInExplorer and #explorerContents to Morphic-Explorer

=============== Diff against Kernel-nice.291 ===============

Item was removed:
- ----- Method: Float>>hasContentsInExplorer (in category 'testing') -----
- hasContentsInExplorer
- 
- 	^false!

Item was removed:
- ----- Method: CompiledMethod>>who (in category 'printing') -----
- who
- 	"Answer an Array of the class in which the receiver is defined and the 
- 	selector to which it corresponds."
- 
- 	self hasNewPropertyFormat ifTrue:[^{self methodClass. self selector}].
- 	self systemNavigation allBehaviorsDo: 
- 		[:class | 
- 		(class methodDict keyAtIdentityValue: self ifAbsent: [nil]) ifNotNil:
- 			[:sel| ^Array with: class with: sel]].
- 	^Array with: #unknown with: #unknown!

Item was removed:
- ----- Method: Integer>>hasContentsInExplorer (in category 'explorer') -----
- hasContentsInExplorer
- 	^true!

Item was removed:
- ----- Method: Object>>hasContentsInExplorer (in category 'user interface') -----
- hasContentsInExplorer
- 
- 	^self basicSize > 0 or: [self class allInstVarNames isEmpty not]
- !

Item was removed:
- ----- Method: Integer>>explorerContents (in category 'explorer') -----
- explorerContents
- 	^{
- 		'hexadecimal' -> 16.
- 		'octal' -> 8.
- 		'binary' -> 2
- 	} collect: [:each |
- 		ObjectExplorerWrapper with: each key translated name: (self printStringBase: each value) model: self]!




More information about the Squeak-dev mailing list