Fix tslint errors.

This commit is contained in:
Hristo Deshev
2016-02-23 16:53:47 +02:00
parent c3331c0efd
commit de6a92f8c6
81 changed files with 266 additions and 448 deletions

View File

@ -1,4 +1,4 @@
import { knownFolders } from "file-system"
import {knownFolders} from "file-system"
export var debug = true;
@ -17,7 +17,6 @@ export class Source {
private _column: number;
private static _source: symbol = Symbol("source");
private static _appRoot: string;
constructor(uri: string, line: number, column: number) {
ensureAppRootPath();
@ -87,4 +86,4 @@ export class SourceError extends ScopeError {
}
get source() { return this._source; }
}
}