Sign in
webkit
/
WebKit
/
72be8c726400c824b623e5fa1dac1b199ec829ae
/
.
/
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
);