Searched refs:nodeIdToHtmlElementsMap (Results 1 – 1 of 1) sorted by relevance
21 nodeIdToHtmlElementsMap: Map<string, Array<HTMLElement>>; property in TextView35 view.nodeIdToHtmlElementsMap = new Map();134 if (!this.nodeIdToHtmlElementsMap.has(nodeId)) {135 this.nodeIdToHtmlElementsMap.set(nodeId, []);137 this.nodeIdToHtmlElementsMap.get(nodeId).push(htmlElement);197 for (const key of this.nodeIdToHtmlElementsMap.keys()) {198 for (const element of this.nodeIdToHtmlElementsMap.get(key)) {203 const elements = this.nodeIdToHtmlElementsMap.get(nodeId);