blob: 046f2a7af833eba9699af801dbdd63e1db0a97fe [file] [log] [blame]
function shouldBe(actual, expected) {
if (actual !== expected)
throw new Error('bad value: ' + actual);
}
function test(string) {
return string.codePointAt(0);
}
noInline(test);
for (var i = 0; i < 1e6; ++i)
shouldBe(test(""), undefined);