(self, hexsha, author_name, author_email,
commit_message)
| 44 | self._pparser = PatchParser() |
| 45 | |
| 46 | def register_commit(self, hexsha, author_name, author_email, |
| 47 | commit_message): |
| 48 | self._ccgraph.add_commit(hexsha, author_name, author_email, |
| 49 | commit_message) |
| 50 | |
| 51 | def update_graph(self, old_filename, old_src, new_filename, new_src, patch): |
| 52 | ast_list = [] |
no test coverage detected