Merge pull request #10260 from zhengbli/fixSession

Avoid using the global name
This commit is contained in:
Zhengbo Li 2016-08-10 15:13:56 -07:00 коммит произвёл GitHub
Родитель 2f6f74d0c8 56cb07ae91
Коммит e16326de8b
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -106,7 +106,7 @@ namespace ts.server {
describe("onMessage", () => {
it("should not throw when commands are executed with invalid arguments", () => {
let i = 0;
for (name in CommandNames) {
for (const name in CommandNames) {
if (!Object.prototype.hasOwnProperty.call(CommandNames, name)) {
continue;
}