Skip to content

Commit

Permalink
Change var to let for file level variables
Browse files Browse the repository at this point in the history
  • Loading branch information
chuckries committed Feb 24, 2016
1 parent 9d7983e commit 81b9a43
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions src/coreclr-debug.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
'use strict';

import * as vscode from 'vscode';
import * as child_process from 'child_process';
import * as fs from 'fs';
import * as path from 'path';

var _coreClrDebugDir: string;
var _debugAdapterDir: string;
var _channel: vscode.OutputChannel;
let _coreClrDebugDir: string;
let _debugAdapterDir: string;
let _channel: vscode.OutputChannel;

export function installCoreClrDebug(context: vscode.ExtensionContext) {
_coreClrDebugDir = path.join(context.extensionPath, 'coreclr-debug');
Expand Down

0 comments on commit 81b9a43

Please sign in to comment.