| 23 | {} |
| 24 | |
| 25 | void TTrampoline::DoRun() { |
| 26 | if (Cont_->Executor()->FailOnError()) { |
| 27 | Func_(Cont_); |
| 28 | } else { |
| 29 | try { |
| 30 | Func_(Cont_); |
| 31 | } catch (...) {} |
| 32 | } |
| 33 | |
| 34 | Cont_->Terminate(); |
| 35 | } |
| 36 | |
| 37 | TArrayRef<char> TTrampoline::Stack() noexcept { |
| 38 | return Stack_.Get(); |
nothing calls this directly
no test coverage detected