11 references to Uncomment
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (1)
CommentSelection\CSharpCommentSelectionTests.cs (1)
128
commandHandler.ExecuteCommand(textView, textBuffer, Operation.
Uncomment
, TestCommandExecutionContext.Create());
Microsoft.CodeAnalysis.EditorFeatures (6)
CommentSelection\AbstractCommentSelectionBase.cs (1)
146
if (edits.ResultOperation == Operation.
Uncomment
&& document.SupportsSyntaxTree)
CommentSelection\AbstractToggleBlockCommentBase.cs (2)
35
new(new List<TextChange>(), new List<CommentTrackingSpan>(), Operation.
Uncomment
);
107
var returnOperation = Operation.
Uncomment
;
CommentSelection\CommentUncommentSelectionCommandHandler.cs (1)
63
=> this.ExecuteCommand(args.TextView, args.SubjectBuffer, Operation.
Uncomment
, context);
CommentSelection\ToggleLineCommentCommandHandler.cs (2)
41
new(new List<TextChange>(), new List<CommentTrackingSpan>(), Operation.
Uncomment
);
114
operation = 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)
53
InvokeCommentOperationOnSelectionAfterReplacingLfToCrLf(code.Value, expected.Value, Operation.
Uncomment
)
70
InvokeCommentOperationOnSelectionAfterReplacingLfToCrLf(code.Value, expected.Value, Operation.
Uncomment
)