blob: 7604f6c2a06e34ba53976b8f86338a13ff8af131 [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.map
description: Array.prototype.map - applied to boolean primitive
---*/
function callbackfn(val, idx, obj) {
return obj instanceof Boolean;
}
Boolean.prototype[0] = true;
Boolean.prototype.length = 1;
var testResult = Array.prototype.map.call(false, callbackfn);
assert.sameValue(testResult[0], true, 'testResult[0]');