(self, function)
| 261 | self.cycles = [] |
| 262 | |
| 263 | def add_function(self, function): |
| 264 | if function.id in self.functions: |
| 265 | sys.stderr.write('warning: overwriting function %s (id %s)\n' % (function.name, str(function.id))) |
| 266 | self.functions[function.id] = function |
| 267 | |
| 268 | def add_cycle(self, cycle): |
| 269 | self.cycles.append(cycle) |
no test coverage detected