diff --git a/lib/internal/source_map/source_map.js b/lib/internal/source_map/source_map.js index d66230ec37f312..c440dffdf81913 100644 --- a/lib/internal/source_map/source_map.js +++ b/lib/internal/source_map/source_map.js @@ -121,7 +121,6 @@ class StringCharIterator { */ class SourceMap { #payload; - #reverseMappingsBySourceURL = []; #mappings = []; #sources = {}; #sourceContentByURL = {}; @@ -262,19 +261,6 @@ class SourceMap { this.#mappings.push([lineNumber, columnNumber, sourceURL, sourceLineNumber, sourceColumnNumber]); } - - for (let i = 0; i < this.#mappings.length; ++i) { - const mapping = this.#mappings[i]; - const url = mapping[2]; - if (!url) - continue; - if (!this.#reverseMappingsBySourceURL[url]) - this.#reverseMappingsBySourceURL[url] = []; - const reverseMappings = this.#reverseMappingsBySourceURL[url]; - const sourceLine = mapping[3]; - if (!reverseMappings[sourceLine]) - reverseMappings[sourceLine] = [mapping[0], mapping[1]]; - } }; }