| 12 | pub(crate) mod text_executor; |
| 13 | |
| 14 | pub(crate) enum Status { |
| 15 | Auto, |
| 16 | Skip, |
| 17 | Normal, |
| 18 | } |
| 19 | |
| 20 | pub(crate) struct ExecutorCluster { |
| 21 | _text_executor: TextExecutor, |
| 22 | _auto_executor: AutoExecutor, |
| 23 | _skip_executor: SkipExecutor, |
| 24 | _delay_executor: DelayExecutor, |
| 25 | _delay_move_executor: DelayExecutor, |
| 26 | _loop_move_executor: DelayExecutor, |
nothing calls this directly
no outgoing calls
no test coverage detected