(self)
| 116 | |
| 117 | @property |
| 118 | def first_frame(self) -> Optional[PyFrame]: |
| 119 | return next(iter(self.frames), None) |
| 120 | |
| 121 | @property |
| 122 | def all_frames(self) -> Iterable[PyFrame]: |
nothing calls this directly
no outgoing calls
no test coverage detected