blob: d3ff72e97523b17fdefc5fcb53df09accee6fc21 [file] [log] [blame] [edit]
function shouldBe(actual, expected)
{
if (actual !== expected)
throw new Error('bad value: ' + actual);
}
function test(object)
{
return Object.keys(object);
}
noInline(test);
var object = { Cocoa: 42 };
for (var i = 0; i < testLoopCount; ++i) {
var result = test(object);
shouldBe(result.length, 1);
shouldBe(result[0], 'Cocoa');
}
Reflect.defineProperty(object, 'Cocoa', {
enumerable: false
});
for (var i = 0; i < testLoopCount; ++i) {
var result = test(object);
shouldBe(result.length, 0);
shouldBe(result[0], undefined);
}