(index, row)
| 881 | } |
| 882 | |
| 883 | getWindow(index, row) { |
| 884 | if (row < 0 || index < 0 || index >= this.length) |
| 885 | return false; |
| 886 | |
| 887 | let column = this[index]; |
| 888 | if (row >= column.length) |
| 889 | return false; |
| 890 | return column[row]; |
| 891 | } |
| 892 | |
| 893 | isWindowAtPoint(metaWindow, x, y) { |
| 894 | let clone = metaWindow.clone; |
no outgoing calls
no test coverage detected