Sign in
webkit
/
WebKit
/
ecbcd311b05ac239b92fcb2f58299787a062a338
/
.
/
JSTests
/
stress
/
16bit-code.js
blob: 70a39eefe3d673570c22b6980a9f3d149a8a1de6 [
file
] [
log
] [
blame
]
function
shouldBe
(
actual
,
expected
)
{
if
(
actual
!==
expected
)
throw
new
Error
(
'bad value: '
+
actual
);
}
var
f
=
new
Function
(`
obj
`,
`
return
0
$
{
"+ obj.i"
.
repeat
(
1000
)}`);
shouldBe
(
f
({
i
:
42
}),
42000
);