MCPcopy Create free account
hub / github.com/ParzivalHack/PySpector / record_raw_issues

Method record_raw_issues

src/pyspector/stats.py:142–151  ·  view source on GitHub ↗
(self, raw_issues: List[Any])

Source from the content-addressed store, hash-verified

140 pass
141
142 def record_raw_issues(self, raw_issues: List[Any]) -> None:
143 self.pre_filter_count = len(raw_issues)
144 for issue in raw_issues:
145 method = self._rule_detection.get(issue.rule_id, "regex")
146 if method == "ast":
147 self.ast_findings += 1
148 elif method == "taint":
149 self.taint_findings += 1
150 else:
151 self.regex_findings += 1
152
153 def record_final_issues(
154 self,

Callers 1

_execute_scanFunction · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected