Sign in
webkit
/
WebKit
/
57b40c420b18a382c5831490354fc98d6882db7d
/
.
/
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/
`);