aboutsummaryrefslogtreecommitdiff
path: root/test/compress/arrays.js
blob: 10fe6eb5de84c446a2bfcc11ca1a8a570d690b56 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
holes_and_undefined: {
    input: {
        x = [1, 2, undefined];
        y = [1, , 2, ];
        z = [1, undefined, 3];
    }
    expect: {
        x=[1,2,void 0];
        y=[1,,2];
        z=[1,void 0,3];
    }
}