(text: string, startIndex: number, endIndex: number)
| 192 | * @returns Index after last char in class token. |
| 193 | */ |
| 194 | export function consumeClassToken(text: string, startIndex: number, endIndex: number): number { |
| 195 | while (startIndex < endIndex && text.charCodeAt(startIndex) > CharCode.SPACE) { |
| 196 | startIndex++; |
| 197 | } |
| 198 | return startIndex; |
| 199 | } |
| 200 | |
| 201 | /** |
| 202 | * Consumes all of the characters belonging to style key and token. |
no outgoing calls
no test coverage detected
searching dependent graphs…