-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathextension.ts
50 lines (46 loc) · 1.33 KB
/
extension.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/*
* Copyright (c) 2023 Broadcom.
* The term "Broadcom" refers to Broadcom Inc. and/or its subsidiaries.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Broadcom, Inc. - initial API and implementation
*/
import * as vscode from "vscode";
import { getV1Api } from "@code4z/cobol-dialect-api";
let unregisterDialect = () => {};
export async function activate(context: vscode.ExtensionContext) {
const extensionId = context.extension.id;
const extensionUri = context.extensionUri;
const snippets = vscode.Uri.joinPath(extensionUri, "snippets.json");
const jar = vscode.Uri.joinPath(
extensionUri,
"server",
"jar",
"dialect-idms.jar",
);
const v1Api = await getV1Api(extensionId);
if (v1Api instanceof Error) {
vscode.window.showErrorMessage(v1Api.toString());
return;
}
const unregister = await v1Api.registerDialect({
name: "IDMS",
description: "IDMS dialect support",
snippets,
jar,
});
if (unregister instanceof Error) {
vscode.window.showErrorMessage(unregister.toString());
return;
}
unregisterDialect = unregister;
}
export function deactivate() {
unregisterDialect();
}