mirror of https://github.com/tc39/test262.git
Revert "Fixup class names in class decorator private identifier tests."
This changed the test files, not the templates used to generate the tests.
This commit is contained in:
parent
581de2d0f8
commit
3ef0777c04
|
@ -32,7 +32,7 @@ info: |
|
|||
---*/
|
||||
|
||||
|
||||
class C {
|
||||
var C = class {
|
||||
static #$() {}
|
||||
static #_() {}
|
||||
static #\u{6F}() {}
|
||||
|
@ -43,7 +43,7 @@ class C {
|
|||
static #await() {}
|
||||
|
||||
static {
|
||||
var D = @C.#$
|
||||
var C = @C.#$
|
||||
@C.#_
|
||||
@C.#\u{6F}
|
||||
@C.#\u2118
|
||||
|
|
|
@ -51,6 +51,6 @@ class C {
|
|||
@C.#ZW_\u200C_NJ
|
||||
@C.#ZW_\u200D_J
|
||||
@C.#yield
|
||||
@C.#await class D {}
|
||||
@C.#await class C {}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue