fix lint errors

This commit is contained in:
Vladimir Matveev 2015-11-23 13:24:46 -08:00
parent 2836c17791
commit 566c0db543

View file

@ -1028,7 +1028,7 @@ namespace ts {
// Module names are escaped in our symbol table. However, string literal values aren't.
// Escape the name in the "require(...)" clause to ensure we find the right symbol.
let moduleName = escapeIdentifier(moduleReferenceLiteral.text);
const moduleName = escapeIdentifier(moduleReferenceLiteral.text);
if (moduleName === undefined) {
return;