Skip to content

Commit

Permalink
Added initializer for array
Browse files Browse the repository at this point in the history
  • Loading branch information
lucsomers101 committed Feb 27, 2024
1 parent 395e06c commit 54d37db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ import { ampersandVersionChecker } from './ampersand';
import { constants } from './constants';
import { checkVersionCommand, generateAtlasCommand, generateFunctionalSpecCommand, generatePrototypeCommand } from './commands';

let commands: Array<ICommand>;

// 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) {


let commands: Array<ICommand> = new Array<ICommand>();
// Use the console to output diagnostic information (console.log) and errors (console.error).
// This line of code will only be executed once when your extension is activated.
console.info(
Expand Down

0 comments on commit 54d37db

Please sign in to comment.