Method
onDeclaration
(
version: string,
encoding: string | undefined,
standalone: "yes" | "no" | undefined,
line: number,
column: number,
offset: number,
)
Source from the content-addressed store, hash-verified
| 638 | } |
| 639 | |
| 640 | onDeclaration( |
| 641 | version: string, |
| 642 | encoding: string | undefined, |
| 643 | standalone: "yes" | "no" | undefined, |
| 644 | line: number, |
| 645 | column: number, |
| 646 | offset: number, |
| 647 | ): void { |
| 648 | this.#callbacks.onDeclaration?.( |
| 649 | version, |
| 650 | encoding, |
| 651 | standalone, |
| 652 | line, |
| 653 | column, |
| 654 | offset, |
| 655 | ); |
| 656 | } |
| 657 | |
| 658 | onDoctype( |
| 659 | name: string, |
Tested by
no test coverage detected