(text: string, startIndex: number, endIndex: number)
| 177 | * that location.) |
| 178 | */ |
| 179 | export function consumeWhitespace(text: string, startIndex: number, endIndex: number): number { |
| 180 | while (startIndex < endIndex && text.charCodeAt(startIndex) <= CharCode.SPACE) { |
| 181 | startIndex++; |
| 182 | } |
| 183 | return startIndex; |
| 184 | } |
| 185 | |
| 186 | /** |
| 187 | * Returns index of last char in class token. |
no outgoing calls
no test coverage detected
searching dependent graphs…