()
| 160 | } |
| 161 | |
| 162 | private getRows(): GridNode<T>[] { |
| 163 | let rows: GridNode<T>[] = []; |
| 164 | for (let child of this) { |
| 165 | if (child.type === 'tablebody' || child.type === 'tablefooter') { |
| 166 | rows.push(...this.getChildren(child.key)); |
| 167 | } |
| 168 | } |
| 169 | return rows; |
| 170 | } |
| 171 | |
| 172 | // backward compatibility |
| 173 | get body() { |
no test coverage detected