* Splits the range specified by start and end into numberOfSplits equal parts. * @param {Token} start Starting token * @param {Token} end End token * @param {Number} numberOfSplits Number of splits to make.
(start, end, numberOfSplits)
| 75 | * @param {Number} numberOfSplits Number of splits to make. |
| 76 | */ |
| 77 | split(start, end, numberOfSplits) { |
| 78 | throw new Error('You must implement a split function for the tokenizer'); |
| 79 | } |
| 80 | |
| 81 | /** |
| 82 | * Common implementation for splitting token ranges when start is in |
no outgoing calls
no test coverage detected