chore(lsp): revert respect shouldCreateNewSourceFile (#23535)

Reverts https://github.com/denoland/deno/pull/23515 but adds a comment
for why this is ignored
This commit is contained in:
David Sherret 2024-04-24 15:39:26 -04:00 committed by GitHub
parent ded6afccf2
commit c1bd9503dd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -609,7 +609,9 @@ delete Object.prototype.__proto__;
specifier,
languageVersion,
_onError,
shouldCreateNewSourceFile,
// this is not used by the lsp because source
// files are created in the document registry
_shouldCreateNewSourceFile,
) {
if (logDebug) {
debug(
@ -624,10 +626,6 @@ delete Object.prototype.__proto__;
// Needs the original specifier
specifier = normalizedToOriginalMap.get(specifier) ?? specifier;
if (shouldCreateNewSourceFile) {
sourceFileCache.delete(specifier);
}
let sourceFile = sourceFileCache.get(specifier);
if (sourceFile) {
return sourceFile;