We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c12af1d commit 5e33760Copy full SHA for 5e33760
src/main/java/com/github/_1c_syntax/bsl/languageserver/references/OscriptReferenceFinder.java
@@ -48,7 +48,9 @@ public class OscriptReferenceFinder implements ReferenceFinder {
48
public Optional<Reference> findReference(URI uri, Position position) {
49
50
DocumentContext document = serverContext.getDocument(uri);
51
- if (document == null || document.isComputedDataFrozen()) {
+ if (document == null
52
+// || document.isComputedDataFrozen()
53
+ ) {
54
return Optional.empty();
55
}
56
0 commit comments