Dim owners that have been filtered from the tree in rendered-by list

This commit is contained in:
Brian Vaughn
2019-05-08 18:23:54 -07:00
parent 0722a5a024
commit 17516b76ae
3 changed files with 15 additions and 2 deletions

View File

@@ -377,6 +377,10 @@ export default class Store extends EventEmitter {
this.emit('isProfiling');
}
containsElement(id: number): boolean {
return this._idToElement.get(id) != null;
}
getElementAtIndex(index: number): Element | null {
if (index < 0 || index >= this.numElements) {
console.warn(