Sign in
webkit
/
WebKit
/
ecbcd311b05ac239b92fcb2f58299787a062a338
/
.
/
JSTests
/
stress
/
class-syntax-no-loop-tdz.js
blob: 87a65cb73ed509199a42b1dc8ab6e974aa2cdcb9 [
file
] [
log
] [
blame
]
class
A
{
constructor
()
{
}
}
class
B extends A
{
constructor
()
{
for
(
var
j
=
0
;
j
<
10
;
j
++)
{
if
(!
j
)
super
();
else
this
;
}
}
}
noInline
(
B
);
for
(
var
i
=
0
;
i
<
10000
;
++
i
)
new
B
();