Fix linting error

This commit is contained in:
Kanchalai Tanglertsampan 2016-11-08 11:07:45 -08:00
parent 3d19782b1c
commit a44c3f2642

View File

@ -11881,7 +11881,7 @@ namespace ts {
function getJsxAttributesSymbolArrayFromAttributesProperty(openingLikeElement: JsxOpeningLikeElement): Symbol[] | undefined {
const attributes = openingLikeElement.attributes;
let attributesTable = createMap<Symbol>();
let spread: Type = emptyObjectType
let spread: Type = emptyObjectType;
let attributesArray: Symbol[] = [];
for (const attributeDecl of attributes.properties) {
const member = attributeDecl.symbol;