One source signature that still needs an FL_NOEXCEPT decision.
| 77 | |
| 78 | @dataclass(frozen=True) |
| 79 | class NoexceptHit: |
| 80 | """One source signature that still needs an FL_NOEXCEPT decision.""" |
| 81 | |
| 82 | path: str |
| 83 | line: int |
| 84 | line_text: str |
| 85 | signature: str |
| 86 | |
| 87 | @property |
| 88 | def baseline_key(self) -> str: |
| 89 | return f"{self.path}|{normalize_signature(self.signature)}" |
| 90 | |
| 91 | |
| 92 | def build_query(file_regex: str) -> str: |