Source code

Revision control

Copy as Markdown

Other Tools

// Any copyright is dedicated to the Public Domain.
//-----------------------------------------------------------------------------
var BUGNUMBER = 1183400;
var summary =
"Deletion of a && or || expression that constant-folds to a name must not " +
"attempt to delete the name";
print(BUGNUMBER + ": " + summary);
/**************
* BEGIN TEST *
**************/
Object.defineProperty(this, "nonconfigurable", { value: 42 });
assertEq(nonconfigurable, 42);
assertEq(delete nonconfigurable, false);
assertEq(delete (true && nonconfigurable), true);
function nested()
{
assertEq(delete nonconfigurable, false);
assertEq(delete (true && nonconfigurable), true);
}
nested();
function nestedStrict()
{
"use strict";
assertEq(delete (true && nonconfigurable), true);
}
nestedStrict();
/******************************************************************************/
if (typeof reportCompare === "function")
reportCompare(true, true);
print("Tests complete");