blob: f42ca98f5c25e482b5472639fd7400fb6e1bb1ff [file] [log] [blame]
/*
* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/licenses/publicdomain/
*/
//-----------------------------------------------------------------------------
var BUGNUMBER = 858381;
var summary = 'Object.freeze([]).pop() must throw a TypeError';
print(BUGNUMBER + ": " + summary);
/**************
* BEGIN TEST *
**************/
try
{
Object.freeze([]).pop();
throw new Error("didn't throw");
}
catch (e)
{
assertEq(e instanceof TypeError, true,
"should have thrown TypeError, instead got: " + e);
}
/******************************************************************************/
if (typeof reportCompare === "function")
reportCompare(true, true);
print("Tests complete");