(result: dict, file: str, sym: str)
| 18 | |
| 19 | |
| 20 | def _has_node(result: dict, file: str, sym: str) -> bool: |
| 21 | nid = _make_id(_file_stem(Path(file)), sym) |
| 22 | return any(n["id"] == nid for n in result["nodes"]) |
| 23 | |
| 24 | |
| 25 | def _contains(result: dict, file: str, sym: str) -> bool: |
no test coverage detected