From ca5f764c8dbea1627ac5e37767d284c8ed94b223 Mon Sep 17 00:00:00 2001 From: Wesley Wigham Date: Tue, 29 Oct 2019 15:51:43 -0700 Subject: [PATCH] Fix typo in comment --- 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 23b9c4e5de3..ca80c71f23e 100644 --- a/src/compiler/checker.ts +++ b/src/compiler/checker.ts @@ -5359,7 +5359,7 @@ namespace ts { const realMembers = locationMap.get("real") || emptyArray; const mergedMembers = locationMap.get("merged") || emptyArray; // TODO: `suppressNewPrivateContext` is questionable -we need to simply be emitting privates in whatever scope they were declared in, rather - // than whatever scope we traverse to them in. That's a bit ofgetUnusedName a complex rewrite, since we're not _actually_ tracking privates at all in advance, + // than whatever scope we traverse to them in. That's a bit of a complex rewrite, since we're not _actually_ tracking privates at all in advance, // so we don't even have placeholders to fill in. if (length(realMembers)) { const localName = getInternalSymbolName(symbol, symbolName);