()
| 36 | this.childNodes = []; |
| 37 | } |
| 38 | get nextSibling() { |
| 39 | let p = this.parentNode; |
| 40 | if (p) return p.childNodes[findWhere(p.childNodes, this, true) + 1]; |
| 41 | } |
| 42 | get previousSibling() { |
| 43 | let p = this.parentNode; |
| 44 | if (p) return p.childNodes[findWhere(p.childNodes, this, true) - 1]; |
nothing calls this directly
no test coverage detected