The Trunk: CommandLine-fbs.2.mcz

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

The Trunk: CommandLine-fbs.2.mcz

commits-2
Frank Shearar uploaded a new version of CommandLine to project The Trunk:
http://source.squeak.org/trunk/CommandLine-fbs.2.mcz

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

Name: CommandLine-fbs.2
Author: fbs
Time: 2 November 2013, 9:47:04.27 pm
UUID: 414e59b8-4f4a-814d-9dac-b7b9886e92a0
Ancestors: CommandLine-fbs.1

SmalltalkImage current -> Smalltalk.

=============== Diff against CommandLine-fbs.1 ===============

Item was changed:
  ----- Method: CommandLineToolSet class>>debugError: (in category 'debugging') -----
  debugError: anError
  "Print out a sensible stack trace and bail"
  | problemPlace s |
  self saveSnapshotOnError
  ifTrue: [Smalltalk saveAs: 'Debug-' , (Smalltalk imageName subStrings: '/') last].
  problemPlace := anError signalerContext.
  s := FileStream stderr.
  (anError isKindOf: MessageNotUnderstood) ifTrue: [
  s
  nextPutAll: anError messageText; cr;
  nextPutAll: problemPlace sender methodNode printString; cr].
  (problemPlace stackOfSize: 20) do: [:ctx | s cr. ctx printOn: s].
  s flush.
 
+ Smalltalk snapshot: false andQuit: true!
- SmalltalkImage current snapshot: false andQuit: true!