summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/asm.js/testBug999790.js
blob: 85f92c22f78b8ac360d1cb42c46dc2655ec5828c (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
function CanBeConstructed(f) {
    var caught = false;
    try {
        new f;
    } catch (e) {
        caught = true;
    }
    return !caught;
}

function IsConstructedFunction(f) {
    return f.hasOwnProperty('length')
        && f.hasOwnProperty('name')
        && f.hasOwnProperty('prototype')
        && f.prototype.hasOwnProperty('constructor')
        && f.prototype.constructor === f;
}

function IsntConstructedFunction(f) {
    return !f.hasOwnProperty('length')
        && !f.hasOwnProperty('name')
        && !f.hasOwnProperty('prototype')
}

var m = function() {
    "use asm"
    function g(){}
    return g;
};
assertEq(CanBeConstructed(m), true, "asm.js modules can't be constructed");

var objM = new m;
assertEq(IsConstructedFunction(objM), true);

var g = m();
assertEq(CanBeConstructed(g), true, "asm.js functions can't be constructed");
// g is a ctor returning an primitive value, thus an empty object
assertEq(Object.getOwnPropertyNames(new g).length, 0);

var n = function() {
    "use asm"
    function g(){return 42.0}
    function h(){return 42}
    return {
        g: g,
        h: h
    };
};
assertEq(CanBeConstructed(n), true, "asm.js modules can't be constructed");

var objN = new n;
// objN is an object with attributes g and h
assertEq(IsntConstructedFunction(objN), true);
assertEq(objN.hasOwnProperty('g'), true);
assertEq(objN.hasOwnProperty('h'), true);

assertEq(IsConstructedFunction(objN.g), true);
assertEq(IsConstructedFunction(objN.h), true);

var h = n().h;
assertEq(CanBeConstructed(h), true, "asm.js functions can't be constructed");
// h is a ctor returning an primitive value, thus an empty object
assertEq(Object.getOwnPropertyNames(new h).length, 0);

assertEq(typeof(function() {"use asm"; return {}}.prototype) !== 'undefined', true);