Use generated signatures for missing node matching

This commit is contained in:
2026-07-02 11:38:49 +02:00
parent 8c45016c00
commit 38c142d42e
3 changed files with 160 additions and 5 deletions
+3 -1
View File
@@ -39,7 +39,9 @@ _INDEX_CACHE = None
def _get_ctx(refresh=False):
global _CTX_CACHE
if refresh or _CTX_CACHE is None:
_CTX_CACHE = utfcn_core.build_context(utfcn_core.load_rules(_DIR))
rules = utfcn_core.load_rules(_DIR)
generated = utfcn_core.load_generated_signatures(_DIR)
_CTX_CACHE = utfcn_core.build_context(rules, generated)
return _CTX_CACHE