summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/self-hosting/GetStringDataProperty.js
blob: 119bedcbc2951ea019ea6f9beeedd47e92bfc757 (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
// Bug 1267364 - GetStringDataProperty should return undefined when the object
// is non-native.

var GetStringDataProperty = getSelfHostedValue("GetStringDataProperty");

function testProxy() {
    var obj = new Proxy({"foo": "10"}, {});
    var v = GetStringDataProperty(obj, "foo");
    assertEq(v, undefined);
}

function testMaybeUnboxed() {
    // Use JSON.parse to create unboxed object if availbale.
    var obj = JSON.parse("[" + '{"foo": "10"},'.repeat(100) +"{}]");

    // GetStringDataProperty may return "10" or undefined, depending on whether
    // `obj` is unboxed or not
    var v = GetStringDataProperty(obj[0], "foo");
    assertEq(v == undefined || v == "10", true);
}

function testTypedObject() {
    var {StructType, string} = TypedObject;
    var S = new StructType({foo: string});
    var obj = new S({foo: "10"});
    var v = GetStringDataProperty(obj, "foo");
    assertEq(v, undefined);
}

testProxy();
testMaybeUnboxed();
if (typeof TypedObject !== "undefined")
    testTypedObject();