The Trunk: Kernel-ar.294.mcz

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

The Trunk: Kernel-ar.294.mcz

commits-2
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]!