| 318 | } |
| 319 | |
| 320 | bool TaskCoroutineTeensy::isRunning() const FL_NOEXCEPT { |
| 321 | if (!mContext) return false; |
| 322 | return !mContext->is_completed(); |
| 323 | } |
| 324 | |
| 325 | //============================================================================= |
| 326 | // Factory function — wired into platforms/coroutine.impl.cpp.hpp dispatch |
nothing calls this directly
no test coverage detected