| 64 | } |
| 65 | |
| 66 | bool JobQueue::isDrainingStopped() const { |
| 67 | // TODO (Tom Tang): implement this by detecting if the Python event-loop is still running |
| 68 | return false; |
| 69 | } |
| 70 | |
| 71 | js::UniquePtr<JS::JobQueue::SavedJobQueue> JobQueue::saveJobQueue(JSContext *cx) { |
| 72 | auto saved = js::MakeUnique<JS::JobQueue::SavedJobQueue>(); |
nothing calls this directly
no outgoing calls
no test coverage detected