Sign in
webkit
/
WebKit
/
14cb98a360e661c1b39a648e8ccc3be2e2757789
/
.
/
JSTests
/
stress
/
class-fields-stress-instance.js
blob: 75231ecae2ed8be9054fe9a5c9bba99615f0cf98 [
file
] [
log
] [
blame
]
class
A
{
a
=
0
;
b
=
1
;
#
c
=
0
;
#
d
=
1
;
e
=
function
()
{
return
0
;
};
#
f
=
function
()
{
return
1
;
};
[
"g"
]
=
0
;
h
=
eval
(
"true"
);
#
i
=
eval
(
"false"
);
}
for
(
var
i
=
0
;
i
<
10000
;
i
++)
new
A
();
fullGC
();
for
(
var
i
=
0
;
i
<
10000
;
i
++)
new
A
();