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