(node: html.Node)
| 930 | } |
| 931 | |
| 932 | private _addToParent(node: html.Node) { |
| 933 | const parent = this._getContainer(); |
| 934 | |
| 935 | if (parent === null) { |
| 936 | this.rootNodes.push(node); |
| 937 | } else { |
| 938 | parent.children.push(node); |
| 939 | } |
| 940 | } |
| 941 | |
| 942 | private _getElementFullName( |
| 943 | token: TagOpenStartToken | IncompleteTagOpenToken | TagCloseToken, |
no test coverage detected