(self)
| 266 | self._WriteModuleInitCall(command, False) |
| 267 | |
| 268 | def _WriteModuleInstances(self): |
| 269 | idx = 0 |
| 270 | for command in self.commands: |
| 271 | if IsModuleCommand(command): |
| 272 | self.out_file.write('w2c_%s %s;\n' % (self.GetModulePrefix(idx), self.GetModuleInstanceName(idx))) |
| 273 | idx += 1 |
| 274 | |
| 275 | def _WriteModuleCleanUps(self): |
| 276 | for idx in range(self.module_idx): |
no test coverage detected