summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/__proto__-not-prototype-mutation.js
blob: b940a229b25d178dea748b463eb56281fecbce7c (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
/*
 * Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/licenses/publicdomain/
 */

var __proto__ = "string value";

var propdefs =
  [{ c: "['__proto__']: null", t: "object" },
   { c: "__proto__() {}", t: "function" },
   { c: "['__proto__']() {}", t: "function" },
   { c: "*__proto__() {}", t: "function" },
   { c: "*['__proto__']() {}", t: "function" },
   { c: "__proto__", t: "string" },
   { c: "get __proto__() { return 42; }", t: "number" },
   { c: "get ['__proto__']() { return undefined; }", t: "undefined" },
   { c: "set __proto__(v) { }", t: "undefined" },
   { c: "set ['__proto__'](v) { }", t: "undefined" }];

for (var propdef of propdefs)
{
  var f = new Function("return { " + propdef.c + " };");
  for (var i = 0; i < 100; i++)
  {
    var inst = f();
    assertEq(typeof inst.__proto__, propdef.t);
    assertEq(Object.getPrototypeOf(inst), Object.prototype);
  }
}