mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
10 lines
118 B
JavaScript
10 lines
118 B
JavaScript
class C {
|
|
#x;
|
|
method() {
|
|
this.#x;
|
|
this?.#x;
|
|
this?.foo.#x;
|
|
#x in this;
|
|
}
|
|
}
|