blob: 08e3e062b482cf03c7e00cd575640c7e9ec481f7 [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
es5id: 15.4.4.19-5-3
description: Array.prototype.map - thisArg is Array
---*/
var res = false;
var a = new Array();
a.res = true;
function callbackfn(val, idx, obj)
{
return this.res;
}
var srcArr = [1];
var resArr = srcArr.map(callbackfn,a);
assert.sameValue(resArr[0], true, 'resArr[0]');