Sign in
webkit
/
WebKit
/
7d815df5a5eb5a0a67d72260d5639681d50d7f66
/
.
/
JSTests
/
stress
/
big-int-to-object.js
blob: 2d7a039d550820ccf6202be2b29e0c694af385ab [
file
] [
log
] [
blame
]
//@ runBigIntEnabled
function
assert
(
a
)
{
if
(!
a
)
throw
new
Error
(
"Bad assertion"
);
}
function
foo
()
{
assert
(
typeof
this
===
"object"
)
}
foo
.
apply
(
BigInt
(
1
));