summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/Object-defineProperty-09.js
blob: dc69e4fde121365db840a67abd0aab81fb732eec (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
// defineProperty can't re-define non-configurable properties.
// Also: when defineProperty throws, the exception is native to the debugger
// compartment, not a wrapper.

var g = newGlobal({newCompartment: true});
var dbg = new Debugger;
var gw = dbg.addDebuggee(g);
gw.defineProperty("p", {value: 1});
g.p = 4;
assertEq(g.p, 1);

var threw;
try {
    gw.defineProperty("p", {value: 2});
    threw = false;
} catch (exc) {
    threw = true;
    assertEq(exc instanceof TypeError, true);
    assertEq(typeof exc.message, "string");
    assertEq(typeof exc.stack, "string");
}
assertEq(threw, true);

assertEq(g.p, 1);