blob: 6ed44f8c3b505f8e619212d07cfe8e13f43a68e5 [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 - empty array to be returned if 'length' is 0
(subclassed Array, length overridden to false (type conversion))
---*/
var accessed = false;
function callbackfn(val, idx, obj) {
accessed = true;
return val > 10;
}
var Foo = function() {};
Foo.prototype = [1, 2, 3];
var obj = new Foo();
obj.length = false;
var testResult = Array.prototype.map.call(obj, callbackfn);
assert.sameValue(testResult.length, 0, 'testResult.length');