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