Skip to content
Snippets Groups Projects
Commit a7075cd8 authored by Andre Maroneze's avatar Andre Maroneze
Browse files

[analysis-scripts] cache calls to build.find_definitions

parent 6da1b894
No related branches found
No related tags found
No related merge requests found
......@@ -29,6 +29,7 @@ available."""
from __future__ import annotations
import argparse
import functools
import json
import logging
import os
......@@ -252,6 +253,7 @@ def copy_fc_stubs() -> Path:
# Returns pairs (line_number, has_args) for each likely definition of
# [funcname] in [filename].
# [has_args] is used to distinguish between main(void) and main(int, char**).
@functools.cache
def find_definitions(funcname: str, filename: Path) -> list[tuple[int, bool]]:
file_content = source_filter.open_and_filter(
Path(filename), not under_test and do_filter_source
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment