1 write to IsComplexTextEdit
Microsoft.CodeAnalysis.Features (1)
Completion\CompletionItem.cs (1)
198
IsComplexTextEdit
= isComplexTextEdit;
14 references to IsComplexTextEdit
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (1)
Completion\AbstractCompletionProviderTests.cs (1)
264
if (result.IsComplexTextEdit is bool textEdit && textEdit != c.
IsComplexTextEdit
)
Microsoft.CodeAnalysis.Features (7)
Completion\CompletionItem.cs (4)
88
/// If this is the case, the provider should set <see cref="
IsComplexTextEdit
"/> to true.
367
var newIsComplexTextEdit = isComplexTextEdit.HasValue ? isComplexTextEdit.Value :
IsComplexTextEdit
;
380
newIsComplexTextEdit ==
IsComplexTextEdit
&&
498
/// Creates a copy of this <see cref="CompletionItem"/> with the <see cref="
IsComplexTextEdit
"/> property changed.
Completion\CompletionList.cs (1)
50
/// to the document. If this is the case, <see cref="CompletionItem.
IsComplexTextEdit
"/> must be
Completion\CompletionService.cs (1)
262
Debug.Assert(item.Span == change.TextChange.Span || item.
IsComplexTextEdit
);
Completion\Providers\AbstractAwaitCompletionProvider.cs (1)
169
if (!item.
IsComplexTextEdit
)
Microsoft.CodeAnalysis.LanguageServer.Protocol (6)
Handler\Completion\CompletionResultFactory.cs (6)
336
if (item.
IsComplexTextEdit
)
377
if (item.
IsComplexTextEdit
)
508
Contract.ThrowIfTrue(item.
IsComplexTextEdit
);
595
if (roslynItem.
IsComplexTextEdit
)
650
if (roslynItem.
IsComplexTextEdit
)
673
Debug.Assert(selectedItem.
IsComplexTextEdit
);