summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/Object-getOwnPropertyNames-01.js
blob: b4ceb76f14aa55ffe4ea57cf9dbf5a9d95f66018 (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
// Basic getOwnPropertyNames tests.

var g = newGlobal({newCompartment: true});
var dbg = Debugger();
var gobj = dbg.addDebuggee(g);

function test(code) {
    code = "(" + code + ");";
    var expected = Object.getOwnPropertyNames(eval(code));
    g.eval("obj = " + code);
    var actual = gobj.getOwnPropertyDescriptor("obj").value.getOwnPropertyNames();
    assertEq(JSON.stringify(actual.sort()), JSON.stringify(expected.sort()));
}

test("{}");
test("{a: 0, b: 1}");
test("{'name with space': 0}");
test("{get x() {}, set y(v) {}}");
test("{get x() { throw 'fit'; }}");
test("Object.create({a: 1})");
test("Object.create({get a() {}, set a(v) {}})");
test("(function () { var x = {a: 0, b: 1}; delete a; return x; })()");
test("Object.create(null, {x: {value: 0}})");
test("[]");
test("[0, 1, 2]");
test("[,,,,,]");
test("/a*a/");
test("function () {}");
test("(function () {\n" +
     "    var x = {};\n" +
     "    x[Symbol()] = 1; x[Symbol.for('moon')] = 2; x[Symbol.iterator] = 3;\n" +
     "    return x;\n" + 
     "})()");