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

Method node_String

aura/analyzers/data_finder.py:107–111  ·  view source on GitHub ↗
(self, context: Context)

Source from the content-addressed store, hash-verified

105 self.__compiled_signatures = PatternMatcher.compile_patterns(signatures=signatures)
106
107 def node_String(self, context: Context):
108 value = str(context.node)
109
110 for hit in PatternMatcher.find_matches(value, self.__compiled_signatures):
111 yield self.__generate_hit(context, hit, value)
112
113 def node_Bytes(self, context: Context):
114 try:

Callers

nothing calls this directly

Calls 2

__generate_hitMethod · 0.95
find_matchesMethod · 0.80

Tested by

no test coverage detected