11 references to Uncomment
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (1)
CommentSelection\CSharpCommentSelectionTests.cs (1)
128commandHandler.ExecuteCommand(textView, textBuffer, Operation.Uncomment, TestCommandExecutionContext.Create());
Microsoft.CodeAnalysis.EditorFeatures (6)
CommentSelection\AbstractCommentSelectionBase.cs (1)
146if (edits.ResultOperation == Operation.Uncomment && document.SupportsSyntaxTree)
CommentSelection\AbstractToggleBlockCommentBase.cs (2)
35new(new List<TextChange>(), new List<CommentTrackingSpan>(), Operation.Uncomment); 107var returnOperation = Operation.Uncomment;
CommentSelection\CommentUncommentSelectionCommandHandler.cs (1)
63=> this.ExecuteCommand(args.TextView, args.SubjectBuffer, Operation.Uncomment, context);
CommentSelection\ToggleLineCommentCommandHandler.cs (2)
41new(new List<TextChange>(), new List<CommentTrackingSpan>(), Operation.Uncomment); 114operation = Operation.Uncomment;
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (2)
CommentSelection\CommentUncommentSelectionCommandHandlerTests.cs (2)
705=> CommentOrUncommentSelection(code, expectedChanges, new[] { expectedSelectedSpan }, supportBlockComments, Operation.Uncomment); 708=> CommentOrUncommentSelection(code, expectedChanges, expectedSelectedSpans, supportBlockComments, Operation.Uncomment);
Microsoft.CodeAnalysis.VisualBasic.EditorFeatures.UnitTests (2)
CommentSelection\VisualBasicCommentSelectionTests.vb (2)
53InvokeCommentOperationOnSelectionAfterReplacingLfToCrLf(code.Value, expected.Value, Operation.Uncomment) 70InvokeCommentOperationOnSelectionAfterReplacingLfToCrLf(code.Value, expected.Value, Operation.Uncomment)