xref: /aosp_15_r20/external/fonttools/Lib/fontTools/feaLib/location.py (revision e1fe3e4ad2793916b15cccdc4a7da52a7e1dd0e9)
1from typing import NamedTuple
2
3
4class FeatureLibLocation(NamedTuple):
5    """A location in a feature file"""
6
7    file: str
8    line: int
9    column: int
10
11    def __str__(self):
12        return f"{self.file}:{self.line}:{self.column}"
13