summaryrefslogtreecommitdiffstats
path: root/src/extension.ts
blob: f545b2176523db649598500782ad3081daec6cf0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
"use strict";
// The module 'vscode' contains the VS Code extensibility API
// Import the module and reference it with the alias vscode in your code below
import * as vscode from "vscode";
import CodeParserController from "./CodeParser/CodeParserController";

// this method is called when your extension is activated
// your extension is activated the very first time the command is executed
export function activate(context: vscode.ExtensionContext) {
    const parser = new CodeParserController();

    context.subscriptions.push(parser);
}