[Vm-dev] VM Maker: VMMaker.oscog-eem.377.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Sep 12 21:24:02 UTC 2013


Eliot Miranda uploaded a new version of VMMaker to project VM Maker:
http://source.squeak.org/VMMaker/VMMaker.oscog-eem.377.mcz

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

Name: VMMaker.oscog-eem.377
Author: eem
Time: 12 September 2013, 2:21:21.458 pm
UUID: 4c84e32f-62e2-4712-b4bb-9212531ddbb6
Ancestors: VMMaker.oscog-eem.376

Fix VMPluginCodeGenerator>>emitCTypesOn:.  Thanks nice!

=============== Diff against VMMaker.oscog-eem.376 ===============

Item was changed:
  ----- Method: VMPluginCodeGenerator>>emitCTypesOn: (in category 'C code generator') -----
  emitCTypesOn: aStream
  	"Store local type declarations on the given stream."
  	(self structClassesForTranslationClasses: { pluginClass }) do:
  		[:structClass|
  		(structClass isAbstract not
+ 		 and: [pluginClass shouldGenerateTypedefFor: structClass]) ifTrue:
- 		 and: [vmClass shouldGenerateTypedefFor: structClass]) ifTrue:
  			[structClass printTypedefOn: aStream.
  			 aStream cr; cr]]!



More information about the Vm-dev mailing list