MCPcopy Create free account
hub / github.com/SourceCode-AI/aura / __init__

Method __init__

aura/analyzers/data_finder.py:101–105  ·  view source on GitHub ↗
(self, *args, **kwargs)

Source from the content-addressed store, hash-verified

99class StringFinder(NodeAnalyzerV2):
100 """Find string patterns as defined in the signatures file"""
101 def __init__(self, *args, **kwargs):
102 super().__init__(*args, **kwargs)
103
104 signatures = config.SEMANTIC_RULES.get("strings", [])
105 self.__compiled_signatures = PatternMatcher.compile_patterns(signatures=signatures)
106
107 def node_String(self, context: Context):
108 value = str(context.node)

Callers

nothing calls this directly

Calls 3

getMethod · 0.80
compile_patternsMethod · 0.80
__init__Method · 0.45

Tested by

no test coverage detected