Home
last modified time | relevance | path

Searched refs:instructionIdToHtmlElementsMap (Results 1 – 1 of 1) sorted by relevance

/third_party/node/deps/v8/tools/turbolizer/src/
Dtext-view.ts20 instructionIdToHtmlElementsMap: Map<string, Array<HTMLElement>>; property in TextView
34 view.instructionIdToHtmlElementsMap = new Map();
126 if (!this.instructionIdToHtmlElementsMap.has(instructionId)) {
127 this.instructionIdToHtmlElementsMap.set(instructionId, []);
129 this.instructionIdToHtmlElementsMap.get(instructionId).push(htmlElement);
183 for (const key of this.instructionIdToHtmlElementsMap.keys()) {
184 for (const element of this.instructionIdToHtmlElementsMap.get(key)) {
189 const elements = this.instructionIdToHtmlElementsMap.get(instrId);