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 aa9c00f commit 062eccbCopy full SHA for 062eccb
lib/IDE/ArgumentCompletion.cpp
@@ -115,6 +115,9 @@ void ArgumentTypeCheckCompletionCallback::sawSolutionImpl(const Solution &S) {
115
auto *CalleeLocator = S.getCalleeLocator(CallLocator);
116
117
auto Info = getSelectedOverloadInfo(S, CalleeLocator);
118
+ if (Info.Value && Info.Value->shouldHideFromEditor()) {
119
+ return;
120
+ }
121
122
// Find the parameter the completion was bound to (if any), as well as which
123
// parameters are already bound (so we don't suggest them even when the args
0 commit comments