(message: string)
| 396 | } |
| 397 | |
| 398 | #error(message: string): never { |
| 399 | throw new XmlSyntaxError( |
| 400 | message, |
| 401 | this.#trackPosition |
| 402 | ? { line: this.#line, column: this.#column, offset: this.#offset } |
| 403 | : NO_POSITION, |
| 404 | ); |
| 405 | } |
| 406 | |
| 407 | #isIllegalLiteralChar(code: number): boolean { |
| 408 | return isIllegalXmlLiteralChar(code, this.#xml11); |
no outgoing calls
no test coverage detected