MCPcopy Create free account
hub / github.com/SourceCode-AI/aura / _diff_dirs

Method _diff_dirs

aura/diff.py:235–238  ·  view source on GitHub ↗
(self, a_path: ScanLocation, b_path: ScanLocation)

Source from the content-addressed store, hash-verified

233 diff.add_detections(a_detections, b_detections)
234
235 def _diff_dirs(self, a_path: ScanLocation, b_path: ScanLocation):
236 a_files = list(a_path.list_recursive())
237 b_files = list(b_path.list_recursive())
238 self._diff_files(a_files=a_files, b_files=b_files)
239
240 def _diff_files(self, a_files: List[ScanLocation], b_files: List[ScanLocation]):
241 closure = FileMatcher(left_files=a_files, right_files=b_files).get_closure()

Callers 1

compareMethod · 0.95

Calls 2

_diff_filesMethod · 0.95
list_recursiveMethod · 0.80

Tested by

no test coverage detected