def __repr__(self) -> str: from cmaj.utils.stringify import stringify hidden = set() if self._token is None: hidden.add('token') if not self._children: hidden.add('children') return stringify(self, hide=hidden)
def __repr__(self) -> str: from cmaj.utils.stringify import stringify return stringify(self, use={'rules': [*self._rules]})
def __repr__(self) -> str: from cmaj.utils.stringify import stringify return stringify(self)
def __repr__(self) -> str: from cmaj.utils.stringify import stringify return stringify(self, hide={'value_set'})