blob: 7563712c2a6f7973f239a523623c567f7468dacc [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.filter
es5id: 15.4.4.20-5-7
description: Array.prototype.filter - built-in functions can be used as thisArg
---*/
var accessed = false;
function callbackfn(val, idx, obj) {
accessed = true;
return this === eval;
}
var newArr = [11].filter(callbackfn, eval);
assert.sameValue(newArr[0], 11, 'newArr[0]');
assert(accessed, 'accessed !== true');