(line: int)
| 1479 | is_header = path.suffix in {".h", ".hpp", ".hxx"} |
| 1480 | |
| 1481 | def fenced(line: int) -> bool: |
| 1482 | idx = line - 1 |
| 1483 | return 0 <= idx < len(fence_mask) and fence_mask[idx] |
| 1484 | |
| 1485 | # ---- qt-bare-emit / qt-uppercase-signal-slot / cxx-goto / Q_INVOKABLE void |
| 1486 | # The fastest pass that catches text-level Qt mistakes is a token sweep |
no outgoing calls
no test coverage detected