Source code

Revision control

Copy as Markdown

Other Tools

setJitCompilerOption("ion.warmup.trigger", 4);
var IsObject = getSelfHostedValue("IsObject")
function test(foo) {
if (IsObject(foo)) {
print(foo.test)
}
}
for (var i=0; i<10; i++) {
test(1)
test({})
}