Fixed a crash in getPropertyNameForPropertyNameNode on NoSubstitutionTemplateLiteral (#55930)

This commit is contained in:
Mateusz Burzyński
2023-10-02 22:31:38 +02:00
committed by GitHub
parent 13a2150e8e
commit d9cd2d0bd0
8 changed files with 58 additions and 3 deletions

View File

@@ -0,0 +1,7 @@
// @strict: true
function Foo() {}
Foo[`b`] = function () {};
type Test = keyof typeof Foo;