()
| 24 | } |
| 25 | |
| 26 | function* AnotherWeekdayParser() { |
| 27 | yield whitespaceOptional; |
| 28 | yield optional('and', 'or'); |
| 29 | yield whitespaceOptional; |
| 30 | return yield WeekdayParser; |
| 31 | } |
| 32 | |
| 33 | function* WeekdaysParser() { |
| 34 | let repeats = false; |
nothing calls this directly
no test coverage detected