Sign in
chromium
/
external
/
github.com
/
WebKit
/
webkit
/
refs/heads/main
/
.
/
JSTests
/
stress
/
private-name-assignment-in-constructor.js
blob: 6bf1280b39dcbc90f97840dec9c671f229182c97 [
file
] [
edit
]
//@ $skipModes << :lockdown if $buildType == "debug"
class
Foo
{
#
foo
;
constructor
()
{
this
.#
foo
/=
1
;
}
}
for
(
let i
=
0
;
i
<
10000000
;
++
i
)
new
Foo
();