diff options
| author | Yong He <yonghe@outlook.com> | 2025-07-01 14:02:35 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-01 21:02:35 +0000 |
| commit | eb7f3357a1c316bad51cf0bfaea27d81a93f96ad (patch) | |
| tree | 448a2a07d36ef11b66ef79522086765efc5e708b /source/slang/slang-check-decl.cpp | |
| parent | 5120c1cd072548654c9ce79fa85426a5e48736c4 (diff) | |
Misc language server improvements. (#7569)
* Misc language server improvements.
* Fix.
* Fix decl path printing for existential lookup.
* More existential decl path fix.
* Polish.
* Fix test.
Diffstat (limited to 'source/slang/slang-check-decl.cpp')
| -rw-r--r-- | source/slang/slang-check-decl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/slang/slang-check-decl.cpp b/source/slang/slang-check-decl.cpp index 9e4d5a6d3..6d8788b4f 100644 --- a/source/slang/slang-check-decl.cpp +++ b/source/slang/slang-check-decl.cpp @@ -7898,7 +7898,7 @@ void SemanticsVisitor::calcOverridableCompletionCandidates( contentAssistInfo.completionSuggestions.formatMode = varDeclBase ? CompletionSuggestions::FormatMode::FuncSignatureWithoutReturnType : CompletionSuggestions::FormatMode::FullSignature; - + contentAssistInfo.completionSuggestions.currentPartialDecl = memberDecl; List<LookupResultItem> candidateItems; for (auto facet : inheritanceInfo.facets) { |
