(node: html.Node, msg: string)
| 659 | } |
| 660 | |
| 661 | private _reportError(node: html.Node, msg: string): void { |
| 662 | this._errors.push(new ParseError(node.sourceSpan, msg)); |
| 663 | } |
| 664 | } |
| 665 | |
| 666 | function _isOpeningComment(n: html.Node): boolean { |
no test coverage detected