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);