Sign in
webkit
/
WebKit
/
14cb98a360e661c1b39a648e8ccc3be2e2757789
/
.
/
JSTests
/
stress
/
class-fields-private-cached-bytecode.js
blob: 68928df31076bef840ecfb8f981e3e2a17790e30 [
file
] [
log
] [
blame
]
function
assert
(
a
,
e
)
{
if
(
a
!==
e
)
throw
new
Error
(
"Expected: "
+
e
+
" but got: "
+
a
);
}
class
C
{
#
f
=
3
;
method
()
{
return
this
.#
f
;
}
}
let c
=
new
C
();
assert
(
c
.
method
(),
3
);