9 references to Uncomment
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (1)
CommentSelection\CSharpCommentSelectionTests.cs (1)
123commandHandler.ExecuteCommand(textView, textBuffer, Operation.Uncomment, TestCommandExecutionContext.Create());
Microsoft.CodeAnalysis.EditorFeatures (6)
CommentSelection\AbstractCommentSelectionBase.cs (1)
143if (edits.ResultOperation == Operation.Uncomment && document.SupportsSyntaxTree)
CommentSelection\AbstractToggleBlockCommentBase.cs (2)
30new([], [], Operation.Uncomment); 102var returnOperation = Operation.Uncomment;
CommentSelection\CommentUncommentSelectionCommandHandler.cs (1)
55=> this.ExecuteCommand(args.TextView, args.SubjectBuffer, Operation.Uncomment, context);
CommentSelection\ToggleLineCommentCommandHandler.cs (2)
44new([], [], Operation.Uncomment); 108operation = Operation.Uncomment;
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (2)
CommentSelection\CommentUncommentSelectionCommandHandlerTests.cs (2)
668=> CommentOrUncommentSelection(code, expectedChanges, new[] { expectedSelectedSpan }, supportBlockComments, Operation.Uncomment); 671=> CommentOrUncommentSelection(code, expectedChanges, expectedSelectedSpans, supportBlockComments, Operation.Uncomment);