Return ``True`` if this :class:`_expression.FromClause` and the other represent the same lexical identity. This tests if either one is a copy of the other, or if they are the same via annotation identity.
(self, other: FromClause)
| 825 | return fromclause in self._cloned_set |
| 826 | |
| 827 | def _is_lexical_equivalent(self, other: FromClause) -> bool: |
| 828 | """Return ``True`` if this :class:`_expression.FromClause` and |
| 829 | the other represent the same lexical identity. |
| 830 | |
| 831 | This tests if either one is a copy of the other, or |
| 832 | if they are the same via annotation identity. |
| 833 | |
| 834 | """ |
| 835 | return bool(self._cloned_set.intersection(other._cloned_set)) |
| 836 | |
| 837 | @util.ro_non_memoized_property |
| 838 | def description(self) -> str: |
nothing calls this directly
no test coverage detected