/*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ import * as vscode from 'vscode'; export interface Command { readonly id: string; execute(...args: any[]): void; } export class CommandManager { private readonly commands = new Map(); public dispose() { for (const registration of this.commands.values()) { registration.dispose(); } this.commands.clear(); } public register(command: T): T { if (!this.commands.has(command.id)) { this.commands.set(command.id, vscode.commands.registerCommand(command.id, command.execute, command)); } return command; } }