(
content: string,
line: number,
column: number,
offset: number,
)
| 603 | } |
| 604 | |
| 605 | onComment( |
| 606 | content: string, |
| 607 | line: number, |
| 608 | column: number, |
| 609 | offset: number, |
| 610 | ): void { |
| 611 | if (this.#ignoreComments) return; |
| 612 | this.#callbacks.onComment?.(content, line, column, offset); |
| 613 | } |
| 614 | |
| 615 | onProcessingInstruction( |
| 616 | target: string, |
no outgoing calls
no test coverage detected