Method
record_raw_issues
(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, |
Tested by
no test coverage detected