Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/copilot/src/platform/commands/common/mockRunCommandExecutionService.ts
13401 views
1
/*---------------------------------------------------------------------------------------------
2
* Copyright (c) Microsoft Corporation. All rights reserved.
3
* Licensed under the MIT License. See License.txt in the project root for license information.
4
*--------------------------------------------------------------------------------------------*/
5
6
import { IRunCommandExecutionService } from '../common/runCommandExecutionService';
7
8
export class MockRunCommandExecutionService implements IRunCommandExecutionService {
9
declare readonly _serviceBrand: undefined;
10
async executeCommand(command: string, ...args: any[]): Promise<any> {
11
// ignore call
12
}
13
updateContextValues(): void {
14
}
15
}
16
17