11 references to Comment
Microsoft.CodeAnalysis.EditorFeatures (8)
CommentSelection\AbstractCommentSelectionBase.cs (1)
173
var spanTrackingMode = operation == Operation.
Comment
CommentSelection\AbstractToggleBlockCommentBase.cs (2)
112
returnOperation = Operation.
Comment
;
117
if (returnOperation == Operation.
Comment
)
CommentSelection\CommentUncommentSelectionCommandHandler.cs (4)
46
=> this.ExecuteCommand(args.TextView, args.SubjectBuffer, Operation.
Comment
, context);
60
=> operation == Operation.
Comment
65
=> operation == Operation.
Comment
82
if (operation == Operation.
Comment
)
CommentSelection\ToggleLineCommentCommandHandler.cs (1)
99
operation = Operation.
Comment
;
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (3)
CommentSelection\CommentUncommentSelectionCommandHandlerTests.cs (3)
674
=> CommentOrUncommentSelection(code, expectedChanges, null /*expectedSelectedSpans*/, supportBlockComments, Operation.
Comment
);
677
=> CommentOrUncommentSelection(code, expectedChanges, expectedSelectedSpans, supportBlockComments, Operation.
Comment
);
680
=> CommentOrUncommentSelection(exportProvider, textView, expectedChanges, expectedSelectedSpans, supportBlockComments, Operation.
Comment
);