MCPcopy Index your code
hub / github.com/nodejs/node / RunOnPath

Method RunOnPath

deps/v8/tools/v8_presubmit.py:251–257  ·  view source on GitHub ↗

Runs processor on all files under the given path.

(self, path)

Source from the content-addressed store, hash-verified

249 """
250
251 def RunOnPath(self, path):
252 """Runs processor on all files under the given path."""
253
254 all_files = []
255 for file in self.GetPathsToSearch():
256 all_files += self.FindFilesIn(join(path, file))
257 return self.ProcessFiles(all_files)
258
259 def RunOnFiles(self, files):
260 """Runs processor only on affected files."""

Callers

nothing calls this directly

Calls 4

FindFilesInMethod · 0.95
joinFunction · 0.90
GetPathsToSearchMethod · 0.45
ProcessFilesMethod · 0.45

Tested by

no test coverage detected