VM Maker: VMMaker.oscog-eem.377.mcz

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

VM Maker: VMMaker.oscog-eem.377.mcz

commits-2
 
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]]!