Searched refs:nodeIdToHtmlElementsMap (Results 1 – 1 of 1) sorted by relevance
16 nodeIdToHtmlElementsMap: Map<string, Array<HTMLElement>>; property in TextView27 view.nodeIdToHtmlElementsMap = new Map();88 if (!this.nodeIdToHtmlElementsMap.has(nodeId)) {89 this.nodeIdToHtmlElementsMap.set(nodeId, []);91 this.nodeIdToHtmlElementsMap.get(nodeId).push(htmlElement);132 for (const key of this.nodeIdToHtmlElementsMap.keys()) {133 for (const element of this.nodeIdToHtmlElementsMap.get(key)) {138 const elements = this.nodeIdToHtmlElementsMap.get(nodeId);