(self, context: Context)
| 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: |
nothing calls this directly
no test coverage detected