// 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); }); reportCompare(0, 0);