(self)
| 1698 | |
| 1699 | @util.ro_non_memoized_property |
| 1700 | def _hide_froms(self) -> Iterable[FromClause]: |
| 1701 | return itertools.chain( |
| 1702 | *[_from_objects(x.left, x.right) for x in self._cloned_set] |
| 1703 | ) |
| 1704 | |
| 1705 | @util.ro_non_memoized_property |
| 1706 | def _from_objects(self) -> List[FromClause]: |
nothing calls this directly
no test coverage detected