diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-03-30 03:09:19 -0600 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-04-01 16:29:39 -0600 |
commit | 8e3d2a904fe046910ee831e6fd9d2316aafc260a (patch) | |
tree | b40e992f4b39669ebdc24fa53874dc2bda607312 /build-aux/measurestack/util.py | |
parent | 78b16edb747834f1a9a41931a1adb7d7fe0fcbb0 (diff) |
measurestack: Rework the skip-call API to speed things up
Diffstat (limited to 'build-aux/measurestack/util.py')
-rw-r--r-- | build-aux/measurestack/util.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/build-aux/measurestack/util.py b/build-aux/measurestack/util.py index 5367da9..47b2617 100644 --- a/build-aux/measurestack/util.py +++ b/build-aux/measurestack/util.py @@ -6,7 +6,7 @@ import re import typing -from . import vcg +from . import analyze, vcg from .analyze import BaseName, Node, QName # pylint: disable=unused-variable @@ -82,7 +82,7 @@ class Plugin(typing.Protocol): def indirect_callees( self, loc: str, line: str ) -> tuple[typing.Collection[QName], bool] | None: ... - def skip_call(self, chain: typing.Sequence[QName], call: QName) -> bool: ... + def skipmodels(self) -> dict[BaseName, analyze.SkipModel]: ... class PluginApplication: @@ -118,8 +118,8 @@ class PluginApplication: placeholder += " at " + self._location_xform(elem.attrs.get("label", "")) return [QName(placeholder)], False - def skip_call(self, chain: typing.Sequence[QName], funcname: QName) -> bool: + def skipmodels(self) -> dict[BaseName, analyze.SkipModel]: + ret: dict[BaseName, analyze.SkipModel] = {} for plugin in self._plugins: - if plugin.skip_call(chain, funcname): - return True - return False + ret.update(plugin.skipmodels()) + return ret |