Represents an include directive that appears after a namespace declaration.
| 33 | |
| 34 | @dataclass |
| 35 | class IncludeViolation: |
| 36 | """Represents an include directive that appears after a namespace declaration.""" |
| 37 | |
| 38 | include_line: int |
| 39 | include_snippet: str |
| 40 | namespace_info: NamespaceInfo | None |
| 41 | |
| 42 | |
| 43 | def strip_comments(content: str) -> str: |
no outgoing calls
no test coverage detected