Double checks our hints, and keeps only those who match our possible file candidates.
(self)
| 831 | |
| 832 | # Overridden base function |
| 833 | def selfCheck(self): |
| 834 | """Double checks our hints, and keeps only those who match our possible file candidates.""" |
| 835 | for hint in set(self.xref_hints) | (self.call_hints if self.call_hints is not None else set()): |
| 836 | # bye bye, hint |
| 837 | if not hint.isValidCandidate(self): |
| 838 | self.removeHint(hint) |
| 839 | |
| 840 | # Overridden base function |
| 841 | def isLinkerOptimizationCandidate(self, src_ctx): |
nothing calls this directly
no test coverage detected