(self, other)
| 678 | return getattr(self._resolved, key) |
| 679 | |
| 680 | def __add__(self, other): |
| 681 | statement = other(self._resolved) |
| 682 | |
| 683 | return NullLambdaStatement(statement) |
| 684 | |
| 685 | def add_criteria(self, other, **kw): |
| 686 | statement = other(self._resolved) |
nothing calls this directly
no test coverage detected