Sign in
webkit
/
WebKit
/
18eafb7225658eb078fb4b435c7e6f4bc55edf7a
/
.
/
JSTests
/
stress
/
private-name-assignment-in-constructor.js
blob: a1d120bf7e42d3896c65191f3013a4145851deb1 [
file
] [
log
] [
blame
]
class
Foo
{
#
foo
;
constructor
()
{
this
.#
foo
/=
1
;
}
}
for
(
let i
=
0
;
i
<
10000000
;
++
i
)
new
Foo
();