summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/expressions/delete-constant-folded-and-or.js
blob: 9576413a68d8cae821b465f4a3c485319835b9ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// Any copyright is dedicated to the Public Domain.
// http://creativecommons.org/licenses/publicdomain/

//-----------------------------------------------------------------------------
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");