blob: 4f04b2eac271fc44e7b42cfeab0d46f6935b7759 [file] [log] [blame]
// Copyright (c) 2012 Ecma International. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-array.prototype.some
description: Array.prototype.some applied to Boolean object
---*/
function callbackfn(val, idx, obj) {
return obj instanceof Boolean;
}
var obj = new Boolean(true);
obj.length = 2;
obj[0] = 11;
obj[1] = 9;
assert(Array.prototype.some.call(obj, callbackfn), 'Array.prototype.some.call(obj, callbackfn) !== true');