From 682b7d37456fc1662af787125c7228f331b0b1d7 Mon Sep 17 00:00:00 2001 From: Wesley Wigham Date: Mon, 11 Dec 2023 13:02:47 -0800 Subject: [PATCH] Add missing semicolon --- 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 bc4f0a2ad99e7..bdc4cefd9a1dd 100644 --- a/src/compiler/checker.ts +++ b/src/compiler/checker.ts @@ -22518,7 +22518,7 @@ export function createTypeChecker(host: TypeCheckerHost): TypeChecker { } if (isDeferredMappedIndex) { const mappedType = (source as IndexType).type as MappedType; - const nameType = getNameTypeFromMappedType(mappedType) + const nameType = getNameTypeFromMappedType(mappedType); // Unlike on the target side, on the source side we do *not* include the generic part of the `nameType`, since that comes from a // (potentially anonymous) mapped type local type parameter, so that'd never assign outside the mapped type body, but we still want to // allow assignments of index types of identical (or similar enough) mapped types.