// Copyright 2018 Rick Waldron. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /*--- esid: sec-object.prototype.tostring description: If the this value is undefined, return "[object Undefined]". ---*/ assert.sameValue( Object.prototype.toString.call(undefined), "[object Undefined]", "Object.prototype.toString.call(undefined) returns [object Undefined]" ); reportCompare(0, 0);