blob: 45316ee3e2bfbb83db1f8df3b4224e51a5797b08 [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-1-2
description: Array.prototype.map - applied to null
---*/
assert.throws(TypeError, function() {
Array.prototype.map.call(null); // TypeError is thrown if value is null
});