()
| 1016 | } |
| 1017 | |
| 1018 | function reset() { |
| 1019 | tokenizer.reset() |
| 1020 | currentOpenTag = null |
| 1021 | currentProp = null |
| 1022 | currentAttrValue = '' |
| 1023 | currentAttrStartIndex = -1 |
| 1024 | currentAttrEndIndex = -1 |
| 1025 | stack.length = 0 |
| 1026 | } |
| 1027 | |
| 1028 | export function baseParse(input: string, options?: ParserOptions): RootNode { |
| 1029 | reset() |
no test coverage detected