summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/Exceptions/error-property-enumerability.js
blob: c6674cfc572bf32639b69c852d2ab9d57d47bc51 (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
/*
 * Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/licenses/publicdomain/
 */

var errors = ["Error", "EvalError", "RangeError", "ReferenceError",
              "SyntaxError", "TypeError", "URIError"];

for (var i = 0; i < errors.length; i++) {
  var error = this[errors[i]];

  var desc = Object.getOwnPropertyDescriptor(error.prototype, "name");
  assertEq(!!desc, true, errors[i] + ".prototype.name should exist");
  assertEq((desc || {}).enumerable, false, errors[i] + ".prototype.name should not be enumerable");

  desc = Object.getOwnPropertyDescriptor(error.prototype, "message");
  assertEq(!!desc, true, errors[i] + ".prototype.message should exist");
  assertEq((desc || {}).enumerable, false, errors[i] + ".prototype.message should not be enumerable");

  var instance = new error;
  desc = Object.getOwnPropertyDescriptor(instance, "message");
  assertEq(!!desc, false, "new " + errors[i] + ".message should not exist");

  instance = new error("a message");
  desc = Object.getOwnPropertyDescriptor(instance, "message");
  assertEq(!!desc, true, "new " + errors[i] + "(...).message should exist");
  assertEq((desc || {}).enumerable, false, "new " + errors[i] + "(...).message should not be enumerable");
}

reportCompare(true, true);