| 4 | import { ParserFeedbackSimulator } from './parser-feedback-simulator.js'; |
| 5 | |
| 6 | export interface SAXParserOptions { |
| 7 | /** |
| 8 | * Enables source code location information for tokens. |
| 9 | * |
| 10 | * When enabled, each token will have a `sourceCodeLocation` property. |
| 11 | */ |
| 12 | sourceCodeLocationInfo?: boolean; |
| 13 | } |
| 14 | |
| 15 | /** |
| 16 | * Streaming [SAX](https://en.wikipedia.org/wiki/Simple_API_for_XML)-style HTML parser. |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…