Skip to content

Commit f8abc95

Browse files
authored
Merge branch 'develop' into fix/possible-race-on-did-close
2 parents 67104f4 + a11189a commit f8abc95

File tree

939 files changed

+1010
-939
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

939 files changed

+1010
-939
lines changed

.git-blame-ignore-revs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# happy new year 2026
2+
b286fdd9efe4754aebabc861310637d8ae7783c2
13
# happy new year 2025
24
e84a3f81035a6e76c042b406d5ad6e986a91d8e1
35
# happy new year 2024

src/jmh/java/com/github/_1c_syntax/bsl/languageserver/IncrementalTextChangeBenchmark.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* This file is a part of BSL Language Server.
33
*
4-
* Copyright (c) 2018-2025
4+
* Copyright (c) 2018-2026
55
* Alexey Sosnoviy <[email protected]>, Nikita Fedkin <[email protected]> and contributors
66
*
77
* SPDX-License-Identifier: LGPL-3.0-or-later

src/jmh/java/com/github/_1c_syntax/bsl/languageserver/context/symbol/VariableSymbolCreate.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* This file is a part of BSL Language Server.
33
*
4-
* Copyright (c) 2018-2025
4+
* Copyright (c) 2018-2026
55
* Alexey Sosnoviy <[email protected]>, Nikita Fedkin <[email protected]> and contributors
66
*
77
* SPDX-License-Identifier: LGPL-3.0-or-later

src/main/java/com/github/_1c_syntax/bsl/languageserver/AnalyzeProjectOnStart.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* This file is a part of BSL Language Server.
33
*
4-
* Copyright (c) 2018-2025
4+
* Copyright (c) 2018-2026
55
* Alexey Sosnoviy <[email protected]>, Nikita Fedkin <[email protected]> and contributors
66
*
77
* SPDX-License-Identifier: LGPL-3.0-or-later

src/main/java/com/github/_1c_syntax/bsl/languageserver/AutoServerInfo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* This file is a part of BSL Language Server.
33
*
4-
* Copyright (c) 2018-2025
4+
* Copyright (c) 2018-2026
55
* Alexey Sosnoviy <[email protected]>, Nikita Fedkin <[email protected]> and contributors
66
*
77
* SPDX-License-Identifier: LGPL-3.0-or-later

src/main/java/com/github/_1c_syntax/bsl/languageserver/BSLLSBinding.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* This file is a part of BSL Language Server.
33
*
4-
* Copyright (c) 2018-2025
4+
* Copyright (c) 2018-2026
55
* Alexey Sosnoviy <[email protected]>, Nikita Fedkin <[email protected]> and contributors
66
*
77
* SPDX-License-Identifier: LGPL-3.0-or-later

src/main/java/com/github/_1c_syntax/bsl/languageserver/BSLLSPLauncher.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* This file is a part of BSL Language Server.
33
*
4-
* Copyright (c) 2018-2025
4+
* Copyright (c) 2018-2026
55
* Alexey Sosnoviy <[email protected]>, Nikita Fedkin <[email protected]> and contributors
66
*
77
* SPDX-License-Identifier: LGPL-3.0-or-later

src/main/java/com/github/_1c_syntax/bsl/languageserver/BSLLanguageServer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* This file is a part of BSL Language Server.
33
*
4-
* Copyright (c) 2018-2025
4+
* Copyright (c) 2018-2026
55
* Alexey Sosnoviy <[email protected]>, Nikita Fedkin <[email protected]> and contributors
66
*
77
* SPDX-License-Identifier: LGPL-3.0-or-later

src/main/java/com/github/_1c_syntax/bsl/languageserver/BSLTextDocumentService.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* This file is a part of BSL Language Server.
33
*
4-
* Copyright (c) 2018-2025
4+
* Copyright (c) 2018-2026
55
* Alexey Sosnoviy <[email protected]>, Nikita Fedkin <[email protected]> and contributors
66
*
77
* SPDX-License-Identifier: LGPL-3.0-or-later
@@ -548,7 +548,9 @@ public void didClose(DidCloseTextDocumentParams params) {
548548

549549
context.closeDocument(documentContext);
550550

551-
diagnosticProvider.publishEmptyDiagnosticList(documentContext);
551+
if (!clientSupportsPullDiagnostics) {
552+
diagnosticProvider.publishEmptyDiagnosticList(documentContext);
553+
}
552554
}
553555

554556
@Override

src/main/java/com/github/_1c_syntax/bsl/languageserver/BSLWorkspaceService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* This file is a part of BSL Language Server.
33
*
4-
* Copyright (c) 2018-2025
4+
* Copyright (c) 2018-2026
55
* Alexey Sosnoviy <[email protected]>, Nikita Fedkin <[email protected]> and contributors
66
*
77
* SPDX-License-Identifier: LGPL-3.0-or-later

0 commit comments

Comments
 (0)