(args []string, i int)
| 800 | } |
| 801 | |
| 802 | func takeString(args []string, i int) (string, int) { |
| 803 | if i+1 >= len(args) { |
| 804 | return "", i |
| 805 | } |
| 806 | return args[i+1], i + 1 |
| 807 | } |
| 808 | |
| 809 | // tokenizeSchedulerInput splits a /schedule, /wait, or /jobs argument |
| 810 | // string into tokens while respecting single- and double-quoted spans |
no outgoing calls
no test coverage detected