The Trunk: System-eem.944.mcz

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

The Trunk: System-eem.944.mcz

commits-2
Eliot Miranda uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-eem.944.mcz

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

Name: System-eem.944
Author: eem
Time: 30 March 2017, 3:20:14.605252 pm
UUID: 2723331f-0c11-4484-a28e-7b9c5f6a9b3a
Ancestors: System-eem.943

Commit the essential cange of reference from MethodContext to Context before commiting the Kernel that does away with MethodContext.

=============== Diff against System-eem.943 ===============

Item was changed:
  ----- Method: WrappedBreakpoint>>run:with:in: (in category 'evaluation') -----
  run: aSelector with: anArray in: aReceiver
  | process |
  process := Process
+ forContext: (Context
- forContext: (MethodContext
  sender: thisContext sender
  receiver: aReceiver
  method: method
  arguments: anArray)
  priority: Processor activeProcess priority.
  ToolSet
+ debug: process
+ context: process suspendedContext
- debug: process context: process suspendedContext
  label:  'Breakpoint in ' , method methodClass name , '>>#' , method selector
+ contents: nil
+ fullView: true.
- contents: nil fullView: true.
  Project current spawnNewProcessIfThisIsUI: Processor activeProcess.
  thisContext swapSender: nil.
+ Processor activeProcess terminate!
- Processor activeProcess terminate.!