File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -118,7 +118,7 @@ class CodeCompletionCallbacksImpl : public CodeCompletionCallbacks {
118
118
// / In situations when \c SyntaxKind hints or determines
119
119
// / completions, i.e. a precedence group attribute, this
120
120
// / can be set and used to control the code completion scenario.
121
- SyntaxKind SyntxKind ;
121
+ SyntaxKind SyntaxKind_ ;
122
122
123
123
int AttrParamIndex;
124
124
bool IsInSil = false ;
@@ -452,7 +452,7 @@ void CodeCompletionCallbacksImpl::completeDeclAttrBeginning(
452
452
void CodeCompletionCallbacksImpl::completeInPrecedenceGroup (SyntaxKind SK) {
453
453
assert (P.Tok .is (tok::code_complete));
454
454
455
- SyntxKind = SK;
455
+ SyntaxKind_ = SK;
456
456
Kind = CompletionKind::PrecedenceGroup;
457
457
CurDeclContext = P.CurDeclContext ;
458
458
}
@@ -1873,7 +1873,7 @@ void CodeCompletionCallbacksImpl::doneParsing() {
1873
1873
break ;
1874
1874
}
1875
1875
case CompletionKind::PrecedenceGroup:
1876
- Lookup.getPrecedenceGroupCompletions (SyntxKind );
1876
+ Lookup.getPrecedenceGroupCompletions (SyntaxKind_ );
1877
1877
break ;
1878
1878
case CompletionKind::StmtLabel: {
1879
1879
SourceLoc Loc = P.Context .SourceMgr .getCodeCompletionLoc ();
You can’t perform that action at this time.
0 commit comments