Sign in
webkit
/
WebKit
/
e83748a3d986d861713edbad6b20589c06c9b99f
/
.
/
JSTests
/
stress
/
fromCharCode-exception-check.js
blob: 328c06ed64f499d6b00f7480fd742a5168722c18 [
file
] [
log
] [
blame
]
// This shouldn't crash.
try
{
String
.
fromCharCode
(
Symbol
(),
new
Proxy
({},
{
get
()
{
}
}));
}
catch
(
e
)
{
if
(!(
e instanceof
TypeError
)
||
e
.
message
!==
"Cannot convert a symbol to a number"
)
throw
new
Error
(
"bad error type or message"
+
e
);
}