Sign in
webkit
/
WebKit
/
e83748a3d986d861713edbad6b20589c06c9b99f
/
.
/
JSTests
/
stress
/
parse-regexp-as-token.js
blob: ebbfaeb88efddba130d8a8c6c21cb77d7425cd38 [
file
] [
log
] [
blame
]
function
shouldBe
(
actual
,
expected
)
{
if
(
actual
!==
expected
)
throw
new
Error
(`
bad value
:
$
{
String
(
actual
)}`);
}
var
arrow
=
()
=>
/Cocoa/
;
shouldBe
(
arrow
.
toString
(),
`()
=>
/Cocoa/
`);