chrome-devtools-frontend 1.0.1017938 → 1.0.1018017
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -451,11 +451,10 @@ export class TextSourceMap implements SourceMap {
|
|
451
451
|
if (url === this.#compiledURLInternal && source) {
|
452
452
|
url = Common.ParsedURL.ParsedURL.concatenate(url, '? [sm]');
|
453
453
|
}
|
454
|
-
if (this.#sourceInfos.has(url)) {
|
455
|
-
continue;
|
456
|
-
}
|
457
|
-
this.#sourceInfos.set(url, new TextSourceMap.SourceInfo(source ?? null));
|
458
454
|
sourcesList.push(url);
|
455
|
+
if (!this.#sourceInfos.has(url)) {
|
456
|
+
this.#sourceInfos.set(url, new TextSourceMap.SourceInfo(source ?? null));
|
457
|
+
}
|
459
458
|
}
|
460
459
|
sourceMapToSourceList.set(sourceMap, sourcesList);
|
461
460
|
}
|
package/package.json
CHANGED