(message: string)
| 347 | } |
| 348 | |
| 349 | #error(message: string): never { |
| 350 | throw new XmlSyntaxError( |
| 351 | message, |
| 352 | this.#trackPosition |
| 353 | ? { line: this.#line, column: this.#column, offset: this.#offset } |
| 354 | : NO_POSITION, |
| 355 | ); |
| 356 | } |
| 357 | |
| 358 | #isIllegalLiteralChar(code: number): boolean { |
| 359 | return isIllegalXmlLiteralChar(code, this.#xml11); |
no outgoing calls
no test coverage detected