Statement this frame is at.
(self)
| 153 | |
| 154 | @property |
| 155 | def statement(self) -> "Source": |
| 156 | """Statement this frame is at.""" |
| 157 | if self.code.fullsource is None: |
| 158 | return Source("") |
| 159 | return self.code.fullsource.getstatement(self.lineno) |
| 160 | |
| 161 | def eval(self, code, **vars): |
| 162 | """Evaluate 'code' in the frame. |
nothing calls this directly
no test coverage detected