2020-09-09 19:56:05 +01:00
|
|
|
from typing import NamedTuple
|
2020-09-10 16:00:06 +01:00
|
|
|
|
|
|
|
LOOKUP_DEBUG_INFO_KEY = "com.github.fonttools.feaLib"
|
2020-11-19 11:48:54 +00:00
|
|
|
LOOKUP_DEBUG_ENV_VAR = "FONTTOOLS_LOOKUP_DEBUGGING"
|
2022-12-13 11:26:36 +00:00
|
|
|
|
2020-09-10 16:00:06 +01:00
|
|
|
|
2020-09-09 19:56:05 +01:00
|
|
|
class LookupDebugInfo(NamedTuple):
|
|
|
|
"""Information about where a lookup came from, to be embedded in a font"""
|
|
|
|
|
|
|
|
location: str
|
|
|
|
name: str
|
|
|
|
feature: list
|