(self)
| 273 | idx += 1 |
| 274 | |
| 275 | def _WriteModuleCleanUps(self): |
| 276 | for idx in range(self.module_idx): |
| 277 | self.out_file.write("wasm2c_%s_free(&%s);\n" % (self.GetModulePrefix(idx), self.GetModuleInstanceName(idx))) |
| 278 | |
| 279 | def _WriteAssertUninstantiableCommand(self, command): |
| 280 | self.module_idx += 1 |
no test coverage detected