Fix indentation in typescript.js (#665) [skip ci]

This commit is contained in:
Andy 2017-08-08 19:44:20 -07:00 committed by Henry Zhu
parent d565eca976
commit a39ea5dc9d

View File

@ -1368,14 +1368,14 @@ export default (superClass: Class<Parser>): Class<Parser> =>
}
/*
Don't bother doing this check in TypeScript code because:
1. We may have a nested export statement with the same name:
export const x = 0;
export namespace N {
export const x = 1;
}
2. We have a type checker to warn us about this sort of thing.
*/
Don't bother doing this check in TypeScript code because:
1. We may have a nested export statement with the same name:
export const x = 0;
export namespace N {
export const x = 1;
}
2. We have a type checker to warn us about this sort of thing.
*/
checkDuplicateExports() {}
parseImport(