[Pkg] The Trunk: Kernel-ul.657.mcz

commits at source.squeak.org commits at source.squeak.org
Fri Dec 9 11:24:40 UTC 2011


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

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

Name: Kernel-ul.657
Author: ul
Time: 9 December 2011, 11:25:31.967 am
UUID: 9474fac1-19c1-6d46-91d8-0842ee711d38
Ancestors: Kernel-dtl.656, Kernel-ul.656

Merged.

=============== Diff against Kernel-dtl.656 ===============

Item was changed:
  ----- Method: ContextPart>>runUntilErrorOrReturnFrom: (in category 'controlling') -----
  runUntilErrorOrReturnFrom: aSender 
  	"ASSUMES aSender is a sender of self.  Execute self's stack until aSender returns or an unhandled exception is raised.  Return a pair containing the new top context and a possibly nil exception.  The exception is not nil if it was raised before aSender returned and it was not handled.  The exception is returned rather than openning the debugger, giving the caller the choice of how to handle it."
  	"Self is run by jumping directly to it (the active process abandons thisContext and executes self).  However, before jumping to self we insert an ensure block under aSender that jumps back to thisContext when evaluated.  We also insert an exception handler under aSender that jumps back to thisContext when an unhandled exception is raised.  In either case, the inserted ensure and exception handler are removed once control jumps back to thisContext."
  
+ 	| error ctxt here topContext aSendersSender |
- 	| error ctxt here topContext |
  	here := thisContext.
+ 	aSendersSender := aSender sender.
  
  	"Insert ensure and exception handler contexts under aSender"
  	error := nil.
  	ctxt := aSender insertSender: (ContextPart
  		contextOn: UnhandledError do: [:ex |
  			error ifNil: [
  				error := ex exception.
  				topContext := thisContext.
  				ex resumeUnchecked: here jump]
  			ifNotNil: [ex pass]
  		]).
  	ctxt := ctxt insertSender: (ContextPart
  		contextEnsure: [error ifNil: [
  				topContext := thisContext.
  				here jump]
  		]).
  	self jump.  "Control jumps to self"
  
  	"Control resumes here once above ensure block or exception handler is executed"
  	^ error ifNil: [
  		"No error was raised, remove ensure context by stepping until popped"
+ 		[ctxt isDead or: [aSender isDead]] whileFalse: [topContext := topContext stepToCallee].
+ 		^{aSender isDead
+ 			ifTrue:
+ 				[| retValue |
+ 				retValue := (ctxt method == (BlockClosure >> #ensure:)
+ 							or: [ctxt method == (BlockClosure >> #ifCurtailed:)]) ifTrue:
+ 								[ctxt tempAt: 3]. "returnValue in ensure: and result in ifCurtailed:"
+ 				aSendersSender push: retValue.
+ 				aSendersSender]
+ 			ifFalse: [topContext].
+ 		     nil}
- 		[ctxt isDead] whileFalse: [topContext := topContext stepToCallee].
- 		{topContext. nil}
  
  	] ifNotNil: [
  		"Error was raised, remove inserted above contexts then return signaler context"
  		aSender terminateTo: ctxt sender.  "remove above ensure and handler contexts"
  		{topContext. error}
  	].
  !



More information about the Packages mailing list