blob: 416a1aff36faed2091b2ea6cfc641bd786009b8b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
// |reftest|
// AllPrivateIdentifiersValid uses only lexical string names, not
// the dynamic private names; which means the below is not a syntax
// error but is instead a TypeError on access.
class A {
#x = 10;
f() {
class B {
g() {
return this.#x; // note: #x isn't declared in this class, but
// the enclosing.
}
};
this.y = new B;
}
constructor() {
this.f();
}
g() {
return this.y.g();
}
};
a = new A;
try {
a.g();
} catch (e) {
assertEq(e instanceof TypeError, true);
}
if (typeof reportCompare === 'function') reportCompare(0, 0);
|