summaryrefslogtreecommitdiffstats
path: root/src/extension.ts
diff options
context:
space:
mode:
authorChristoph Schlosser <christoph@linux.com>2017-10-06 17:34:19 +0200
committerChristoph Schlosser <christoph@linux.com>2017-10-06 17:35:18 +0200
commitcf5e94e992237bc2f32f0ec92c6babb4b93de612 (patch)
treeec5558e80268aaaee9acf92a877a06b562877f45 /src/extension.ts
downloaddoxdocgen-cf5e94e992237bc2f32f0ec92c6babb4b93de612.tar.gz
Initial files
Diffstat (limited to 'src/extension.ts')
-rw-r--r--src/extension.ts13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/extension.ts b/src/extension.ts
new file mode 100644
index 0000000..f545b21
--- /dev/null
+++ b/src/extension.ts
@@ -0,0 +1,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);
+}