| 412 | |
| 413 | @dataclass(frozen=True) |
| 414 | class Location: |
| 415 | filename: str |
| 416 | lineno: int |
| 417 | |
| 418 | def __lt__(self, other): |
| 419 | return (self.filename, self.lineno) < (other.filename, other.lineno) |
| 420 | |
| 421 | |
| 422 | @dataclass |
no outgoing calls
no test coverage detected
searching dependent graphs…