summaryrefslogtreecommitdiff
path: root/Libraries/LibJS/Tests/array-spread.js
blob: 1132f0cc07c2ce8a5271e5d593c7d68dab560f9d (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
load("test-common.js");

function testArray(arr) {
    return arr.length === 4 &&
        arr[0] === 0 &&
        arr[1] === 1 &&
        arr[2] === 2 &&
        arr[3] === 3;
}

try {
    let arr = [0, ...[1, 2], 3];
    assert(testArray(arr));

    let a = [1, 2];
    arr = [0, ...a, 3];
    assert(testArray(arr));

    let obj = { a: [1, 2] };
    arr = [0, ...obj.a, 3];
    assert(testArray(arr));

    arr = [...[], ...[...[0, 1, 2]], 3];
    assert(testArray(arr));

    assertThrowsError(() => {
        [...1];
    }, {
        error: TypeError,
        message: "1 is not iterable",
    });

    assertThrowsError(() => {
        [...{}];
    }, {
        error: TypeError,
        message: "[object Object] is not iterable",
    });

    console.log("PASS");
} catch (e) {
    console.log("FAIL: " + e);
}