(state, executor)
| 25 | state.executors[executor.state.id] = executor; |
| 26 | }, |
| 27 | SELECT_EXECUTOR(state, executor) { |
| 28 | state.currentExecutor = executor; |
| 29 | }, |
| 30 | REMOVE_EXECUTOR(state, executor) { |
| 31 | delete state.executors[executor.state.id]; |
| 32 |
nothing calls this directly
no outgoing calls
no test coverage detected