Sign in
webkit
/
WebKit
/
fff5469af9e21121a01bc52b64d66a2e93b51665
/
.
/
JSTests
/
stress
/
eval-script-contains-null-character.js
blob: 419215da49c27dbb4cbe6d9f7da05efd5d4b3e6a [
file
] [
log
] [
blame
]
function
shouldBe
(
actual
,
expected
)
{
if
(
actual
!==
expected
)
throw
new
Error
(
"bad value: "
+
actual
);
}
function
test
()
{
shouldBe
(
eval
(
"(`\0`)"
),
"\0"
);
shouldBe
(
eval
(
"('\0')"
),
"\0"
);
}
noInline
(
test
);
for
(
var
i
=
0
;
i
<
10000
;
++
i
)
test
();