(self, command)
| 403 | return '$%d' % self.module_idx |
| 404 | |
| 405 | def _WriteModuleCommand(self, command): |
| 406 | self.module_idx += 1 |
| 407 | idx_name = self._ModuleIdxName() |
| 408 | |
| 409 | self.out_file.write('let %s = instance("%s");\n' % |
| 410 | (idx_name, self._Module(command['filename']))) |
| 411 | if 'name' in command: |
| 412 | self.out_file.write('let %s = %s;\n' % (command['name'], idx_name)) |
| 413 | |
| 414 | def _WriteActionCommand(self, command): |
| 415 | self.out_file.write('%s;\n' % self._Action(command['action'])) |
nothing calls this directly
no test coverage detected