From a44c3f2642eda6f47488fade348caaa8a69a3c05 Mon Sep 17 00:00:00 2001 From: Kanchalai Tanglertsampan Date: Tue, 8 Nov 2016 11:07:45 -0800 Subject: [PATCH] Fix linting error --- src/compiler/checker.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/checker.ts b/src/compiler/checker.ts index ed6c1da2de6..42cb4a1be3f 100644 --- a/src/compiler/checker.ts +++ b/src/compiler/checker.ts @@ -11881,7 +11881,7 @@ namespace ts { function getJsxAttributesSymbolArrayFromAttributesProperty(openingLikeElement: JsxOpeningLikeElement): Symbol[] | undefined { const attributes = openingLikeElement.attributes; let attributesTable = createMap(); - let spread: Type = emptyObjectType + let spread: Type = emptyObjectType; let attributesArray: Symbol[] = []; for (const attributeDecl of attributes.properties) { const member = attributeDecl.symbol;