Sign in
webkit
/
WebKit
/
2451ef9a6f07697711cff954a3812f59820a6e05
/
.
/
JSTests
/
stress
/
bytecode-cache-syntax-error.js
blob: d8fea838cbbd50fd4b335d7a6c729803adcf1c32 [
file
] [
log
] [
blame
]
//@ runBytecodeCacheNoAssertion
try
{
loadString
(
'function(){}'
);
throw
new
Error
(
'loadString should have thrown'
);
}
catch
(
err
)
{
if
(
err
.
message
!=
'Function statements must have a name.'
)
throw
new
Error
(
'Unexpected exception'
);
}