7 references to ExecuteCommand
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (1)
CommentSelection\CSharpCommentSelectionTests.cs (1)
123commandHandler.ExecuteCommand(textView, textBuffer, Operation.Uncomment, TestCommandExecutionContext.Create());
Microsoft.CodeAnalysis.EditorFeatures (4)
CommentSelection\AbstractToggleBlockCommentBase.cs (1)
62=> ExecuteCommand(args.TextView, args.SubjectBuffer, ValueTuple.Create(), context);
CommentSelection\CommentUncommentSelectionCommandHandler.cs (2)
46=> this.ExecuteCommand(args.TextView, args.SubjectBuffer, Operation.Comment, context); 55=> this.ExecuteCommand(args.TextView, args.SubjectBuffer, Operation.Uncomment, context);
CommentSelection\ToggleLineCommentCommandHandler.cs (1)
50=> ExecuteCommand(args.TextView, args.SubjectBuffer, ValueTuple.Create(), context);
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (2)
CommentSelection\AbstractToggleCommentTestBase.cs (2)
46commandHandler.ExecuteCommand(textView, textBuffer, ValueTuple.Create(), TestCommandExecutionContext.Create()); 61commandHandler.ExecuteCommand(textView, originalSubjectBuffer, ValueTuple.Create(), TestCommandExecutionContext.Create());