Revert "Revert "Fixup class names in class decorator private identifier tests.""

This reverts commit 31f703cbe69ec2e0fd4b94de2fdf505fb722b552.

The changes are needed to both the templates and the generated files.
This commit is contained in:
Daniel Minor 2023-09-05 07:27:33 -04:00 committed by Philip Chimento
parent ca9fa92dc3
commit 55e8cceb80
2 changed files with 3 additions and 3 deletions

View File

@ -32,7 +32,7 @@ info: |
---*/
var C = class {
class C {
static #$() {}
static #_() {}
static #\u{6F}() {}
@ -43,7 +43,7 @@ var C = class {
static #await() {}
static {
var C = @C.#$
var D = @C.#$
@C.#_
@C.#\u{6F}
@C.#\u2118

View File

@ -51,6 +51,6 @@ class C {
@C.#ZW_\u200C_NJ
@C.#ZW_\u200D_J
@C.#yield
@C.#await class C {}
@C.#await class D {}
}
}