Sign in
webkit
/
WebKit
/
89b14411576f8cca716927df4c20b98735355b4f
/
.
/
JSTests
/
stress
/
class-fields-bytecode-cache.js
blob: 89decd8377228315ecd99af102a9fc917733ffa8 [
file
] [
log
] [
blame
]
//@ runBytecodeCache("--usePublicClassFields=true")
function
assert
(
a
,
e
)
{
if
(
a
!==
e
)
throw
new
Erro
(
"Expected: "
+
e
+
" but got: "
+
a
);
}
class
C
{
foo
()
{
return
this
.
f
;
}
f
=
15
;
}
let c
=
new
C
();
let r
=
c
.
foo
();
assert
(
r
,
15
);