summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/Function/regress-533254.js
blob: b0e319818ba6f0b4233c7167b7c7c87f3b36abf2 (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
/*
 * Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/licenses/publicdomain/
 */

var BUGNUMBER = 533254;
var summary = 'init-method late in table-big initialiser screwup';

printBugNumber(BUGNUMBER);
printStatus(summary);

function f() {
    var proto = {p8:8};
    var obj = {
        p0:0, p1:1, p2:2, p3:3, p4:4, p5:5, p6:6, p7:7, p8:8, p9:9, 
        p10:0, p11:1, p12:2, p13:3, p14:4, p15:5, p16:6, p17:7, p18:8, p19:9, 
        m: function() { return 42; }
    };
    return obj;
}
var expect = f(),
    actual = f();

expect += '';
actual += '';
reportCompare(expect, actual, summary);

printStatus("All tests passed!");