| 39 | } |
| 40 | |
| 41 | void SwitchTo(TExceptionSafeContext* ctx) noexcept { |
| 42 | Y_ABORT_UNLESS(Stack_.LowerCanaryOk(), "Stack overflow (%s)", ContName()); |
| 43 | Y_ABORT_UNLESS(Stack_.UpperCanaryOk(), "Stack override (%s)", ContName()); |
| 44 | Ctx_.SwitchTo(ctx); |
| 45 | } |
| 46 | |
| 47 | void DoRun() override; |
| 48 |
nothing calls this directly
no test coverage detected