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