blob: 00ad1f3638c29b72ea4c2f1df36737d0d381a2ea [file] [log] [blame]
// Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-array.prototype.find
description: >
Return abrupt from ToObject(this value).
info: |
22.1.3.8 Array.prototype.find ( predicate[ , thisArg ] )
1. Let O be ToObject(this value).
2. ReturnIfAbrupt(O).
---*/
// predicate fn is given to avoid false positives
assert.throws(TypeError, function() {
Array.prototype.find.call(undefined, function() {});
});
assert.throws(TypeError, function() {
Array.prototype.find.call(null, function() {});
});