[Pkg] The Trunk: Tools-nice.139.mcz

commits at source.squeak.org commits at source.squeak.org
Tue Oct 27 11:33:31 UTC 2009


Nicolas Cellier uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-nice.139.mcz

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

Name: Tools-nice.139
Author: nice
Time: 27 October 2009, 12:33:28 pm
UUID: 469d55be-9009-4f49-879e-35cab285093c
Ancestors: Tools-nice.138

(Compiler evaluate: '#x:0') fails to open a SyntaxError.
I provide a quick fix hereafter.

=============== Diff against Tools-nice.138 ===============

Item was changed:
  ----- Method: SyntaxError>>list (in category 'message list') -----
  list
  	"Answer an array of one element made up of the class name, message category, and message selector in which the syntax error was found. This is the single item in the message list of a view/browser on the receiver."
  
+ 	^ Array with: (class name, '  ', (category ifNil: ['<none>']), '  ', (selector ifNil: ['<none>']))
- 	selector ifNil: [^ Array with: (class name, '  ', category, '  ', '<none>')].
- 	^ Array with: (class name, '  ', category, '  ', selector)
  !



More information about the Packages mailing list