[squeak-dev] The Trunk: SystemReporter-dtl.5.mcz

commits at source.squeak.org commits at source.squeak.org
Fri Jan 28 02:23:26 UTC 2011


David T. Lewis uploaded a new version of SystemReporter to project The Trunk:
http://source.squeak.org/trunk/SystemReporter-dtl.5.mcz

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

Name: SystemReporter-dtl.5
Author: dtl
Time: 27 January 2011, 9:22:26.473 pm
UUID: 0f6c58a2-18e7-4809-92db-e5688406758c
Ancestors: SystemReporter-laza.4, SystemReporter-dtl.3

Merge SystemReporter-dtl.3

=============== Diff against SystemReporter-laza.4 ===============

Item was changed:
  ----- Method: SystemReporter>>reportVM: (in category 'reporting') -----
  reportVM: aStream
  	self header: 'Virtual Machine' on: aStream.
  	aStream
  		nextPutAll: (SmalltalkImage current getSystemAttribute: 1004); cr;
+ 		nextPutAll: (SmalltalkImage current getSystemAttribute: 0); 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"]!
- 		nextPutAll: (SmalltalkImage current getSystemAttribute: 0); cr!




More information about the Squeak-dev mailing list