| 36 | # Represent a source location; used for better error reporting |
| 37 | @dataclass(frozen=True) |
| 38 | class Location: |
| 39 | file: str |
| 40 | line: int |
| 41 | |
| 42 | def __str__(self) -> str: |
| 43 | return f"{self.file}:{self.line}" |
| 44 | |
| 45 | |
| 46 | # Valid values of the 'variants' field in native_functions.yaml |
no outgoing calls
searching dependent graphs…