[squeak-dev] The Trunk: SystemReporter-laza.15.mcz

commits at source.squeak.org commits at source.squeak.org
Tue Feb 15 10:40:57 UTC 2011


Alexander Lazarević uploaded a new version of SystemReporter to project The Trunk:
http://source.squeak.org/trunk/SystemReporter-laza.15.mcz

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

Name: SystemReporter-laza.15
Author: laza
Time: 15 February 2011, 9:58:11.108 am
UUID: 9d8718ad-bba4-8642-b0dd-7432d80b67a6
Ancestors: SystemReporter-laza.14

catch the case where interpreterClass and cogitClass are not implemented

=============== Diff against SystemReporter-laza.14 ===============

Item was changed:
  ----- Method: SystemReporter>>reportVM: (in category 'reporting') -----
  reportVM: aStream
  	self header: 'Virtual Machine' on: aStream.
  	aStream
  		nextPutAll: (Smalltalk vm vmFileName); cr;
  		nextPutAll: (Smalltalk vm vmVersion); cr.
  	Smalltalk vm buildDate
  		ifNotNilDo: [:string | aStream nextPutAll: string; cr].
  	[Smalltalk vm platformSourceVersion
  		ifNotNilDo: [:v | aStream nextPutAll: 'platform sources revision ', v; cr]]
  			on: Warning do: ["unsupported primitive"].
  	[Smalltalk vm interpreterSourceVersion
  		ifNotNilDo: [:v | aStream nextPutAll: 'VMMaker versionString ', v; cr]]
  			on: Warning do: ["unsupported primitive"].
+ 	[Smalltalk vm interpreterClass
- 	Smalltalk vm interpreterClass
  		ifNotNilDo: [:string | aStream nextPutAll: string; cr].
  	Smalltalk vm cogitClass
  		ifNotNilDo: [:string | aStream nextPutAll: string; cr]
+ 	] on: Error do: ["unsupported primitives"]
  !




More information about the Squeak-dev mailing list