addressed CR feedback: use isDeclaration from parser, drop 'useTabs' check

This commit is contained in:
Vladimir Matveev
2014-09-15 12:18:09 -07:00
parent aa7ffdba4c
commit 685d131f4a
2 changed files with 26 additions and 29 deletions

View File

@@ -979,6 +979,15 @@ module ts {
AMD,
}
export interface LineAndCharacter {
line: number;
/*
* This value denotes the character position in line and is different from the 'column' because of tab characters.
*/
character: number;
}
export enum ScriptTarget {
ES3,
ES5,