blob: 511b29f38c54585197bfbe921ec95b5760d66294 [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 null
---*/
assert.throws(TypeError, function() {
Array.prototype.map.call(null); // TypeError is thrown if value is null
});