(self)
| 1654 | |
| 1655 | @util.ro_non_memoized_property |
| 1656 | def _hide_froms(self) -> Iterable[FromClause]: |
| 1657 | return itertools.chain( |
| 1658 | *[_from_objects(x.left, x.right) for x in self._cloned_set] |
| 1659 | ) |
| 1660 | |
| 1661 | @util.ro_non_memoized_property |
| 1662 | def _from_objects(self) -> List[FromClause]: |
nothing calls this directly
no test coverage detected