MCPcopy Create free account
hub / github.com/URLab-Sim/UnrealRoboticsLab / scan_public_headers

Function scan_public_headers

Scripts/parse_headers.py:688–698  ·  view source on GitHub ↗
(public_root: str)

Source from the content-addressed store, hash-verified

686# ──────────────────────────────────────────────────────────────────────────────
687
688def scan_public_headers(public_root: str) -> list:
689 results = []
690 for dirpath, _, files in os.walk(public_root):
691 for fname in sorted(files):
692 if not fname.endswith('.h'):
693 continue
694 fpath = os.path.join(dirpath, fname)
695 parsed = parse_header(fpath, public_root)
696 if parsed:
697 results.append(parsed)
698 return results
699
700
701if __name__ == '__main__':

Callers 2

step_parseFunction · 0.90
parse_headers.pyFile · 0.85

Calls 1

parse_headerFunction · 0.85

Tested by

no test coverage detected