UNPKG

@theia/workspace

Version:
40 lines 2.7 kB
"use strict"; // ***************************************************************************** // Copyright (C) 2017 TypeFox and others. // // This program and the accompanying materials are made available under the // terms of the Eclipse Public License v. 2.0 which is available at // http://www.eclipse.org/legal/epl-2.0. // // This Source Code may also be made available under the following Secondary // Licenses when the conditions for such availability set forth in the Eclipse // Public License v. 2.0 are satisfied: GNU General Public License, version 2 // with the GNU Classpath Exception which is available at // https://www.gnu.org/software/classpath/license.html. // // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0 // ***************************************************************************** Object.defineProperty(exports, "__esModule", { value: true }); const inversify_1 = require("@theia/core/shared/inversify"); const common_1 = require("@theia/core/lib/common"); const common_2 = require("../common"); const default_workspace_server_1 = require("./default-workspace-server"); const cli_1 = require("@theia/core/lib/node/cli"); const node_1 = require("@theia/core/lib/node"); const workspace_trust_preferences_1 = require("../common/workspace-trust-preferences"); exports.default = new inversify_1.ContainerModule(bind => { bind(default_workspace_server_1.WorkspaceCliContribution).toSelf().inSingletonScope(); bind(cli_1.CliContribution).toService(default_workspace_server_1.WorkspaceCliContribution); bind(default_workspace_server_1.DefaultWorkspaceServer).toSelf().inSingletonScope(); bind(common_2.WorkspaceServer).toService(default_workspace_server_1.DefaultWorkspaceServer); bind(node_1.BackendApplicationContribution).toService(common_2.WorkspaceServer); bind(common_2.UntitledWorkspaceService).toSelf().inSingletonScope(); bind(common_2.WorkspaceFileService).toSelf().inSingletonScope(); (0, common_1.bindRootContributionProvider)(bind, default_workspace_server_1.WorkspaceHandlerContribution); bind(default_workspace_server_1.FileWorkspaceHandlerContribution).toSelf().inSingletonScope(); bind(default_workspace_server_1.WorkspaceHandlerContribution).toService(default_workspace_server_1.FileWorkspaceHandlerContribution); bind(common_1.ConnectionHandler).toDynamicValue(ctx => new common_1.RpcConnectionHandler(common_2.workspacePath, () => ctx.container.get(common_2.WorkspaceServer))).inSingletonScope(); (0, common_2.bindWorkspacePreferences)(bind); (0, workspace_trust_preferences_1.bindWorkspaceTrustPreferences)(bind); }); //# sourceMappingURL=workspace-backend-module.js.map