[squeak-dev] The Trunk: Exceptions-eem.12.mcz

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

[squeak-dev] The Trunk: Exceptions-eem.12.mcz

commits-2
Andreas Raab uploaded a new version of Exceptions to project The Trunk:
http://source.squeak.org/trunk/Exceptions-eem.12.mcz

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

Name: Exceptions-eem.12
Author: eem
Time: 5 September 2009, 3:36:07 am
UUID: 222baa54-c057-4244-8484-c4d78fb1fca1
Ancestors: Exceptions-ar.11

First package of eight in closure compiler fixes 9/5/2009.

Add reachedDefaultHandler to MessageNotUnderstood so that doesNotUnderstand: can support resume:.


=============== Diff against Exceptions-ar.11 ===============

Item was added:
+ ----- Method: MessageNotUnderstood>>initialize (in category 'initialize-release') -----
+ initialize
+ super initialize.
+ reachedDefaultHandler := false!

Item was added:
+ ----- Method: MessageNotUnderstood>>defaultAction (in category 'exceptionDescription') -----
+ defaultAction
+ reachedDefaultHandler := true.
+ super defaultAction!

Item was added:
+ ----- Method: MessageNotUnderstood>>reachedDefaultHandler (in category 'accessing') -----
+ reachedDefaultHandler
+ ^reachedDefaultHandler!

Item was changed:
  Error subclass: #MessageNotUnderstood
+ instanceVariableNames: 'message receiver reachedDefaultHandler'
- instanceVariableNames: 'message receiver'
  classVariableNames: ''
  poolDictionaries: ''
  category: 'Exceptions-Kernel'!
 
  !MessageNotUnderstood commentStamp: '<historical>' prior: 0!
  This exception is provided to support Object>>doesNotUnderstand:.!