blob: e46405c4598e55275940d039549268321ef99f59 [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.values
description: >
`this` value not object coercible
info: |
1. Let O be ToObject(this value).
2. ReturnIfAbrupt(O).
---*/
assert.throws(TypeError, function() {
Array.prototype.values.call(undefined);
});
assert.throws(TypeError, function() {
Array.prototype.values.call(null);
});