046de028创建于 2025年12月23日历史提交
/*
 * Copyright (c) 2023 Huawei Device Co., Ltd.
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

{
    let emptyHandle = {};
    let arr = [ new Proxy([1, 2], emptyHandle), new Proxy([3, 4], emptyHandle)];
    let res = arr.flatMap(x => x);
}

{
    let arr = [1, , 2, , 3];
    let res = arr.flatMap(x => [x]);
    print(JSON.stringify(res));
}
{
    let arr = new Array(3000);
    arr[200] = 1;
    let res = arr.flatMap(x => [x]);
    print(JSON.stringify(res));
}
{
    class MyArray extends Array {
        static get [Symbol.species]() {
            return this;
        }
    }
    const wannabe = new MyArray();
    const result = wannabe.flatMap(x => [x, x]);
    print(result instanceof MyArray);
}

var arr1 = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9];
var arr2 = new Array();
function testFunction(element, index, array) {
    if (index == 0) {
        array.length = 6;
    }
    return [element, element * element];
}
for (let i = 0; i < 10; i++) arr2[i] = i;

var result1 = arr1.flatMap(testFunction);
print(result1);
var result2 = arr2.flatMap(testFunction);
print(result2);

var arr3 = [0, 1, , , 4, , 6, 7, 8, 9];
arr3.__proto__.push(0);
arr3.__proto__.push(1);
arr3.__proto__.push(2);
arr3.__proto__.push(3);
function testFunction(element, index, array) {
    if (index == 0) {
        array.length = 6;
    }
    if (index < 3)
        return 1;
    else
        return [element, element * element];
}
var result3 = arr3.flatMap(testFunction);
print(result3);
arr3.__proto__.pop(0);
arr3.__proto__.pop(1);
arr3.__proto__.pop(2);
arr3.__proto__.pop(3);

let arr4 = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9];
var result4 = arr4.flatMap(testFunction);
print(result4);

let arr = [1,,,,,5];
let res = arr.flatMap((x)=>{
    let ret=[x,x+1];
    ret[105] = x+2;
    Object.defineProperty(ret,2000,{value:x+3});
    return ret;
})
print(res);
print(res.length)

// stable array without proxy
{
    let arr = [[1, 2], [3, 4]]
    let res = arr.flatMap(x => x);
    print(res);
}

{
    let arr = [[1, 2], [3, 4]]
    let res = arr.flatMap(x => {
        x.push(0)
        return x
    });
    print(res);
}

{
    let arr = [[1, 2, 3], [4, 5, 6]]
    let res = arr.flatMap(x => {
        x.pop()
        return x
    });
    print(res);
}

{
    let arr = [[1, 2], [3, 4], 5]
    let res = arr.flatMap(x => {
        arr.length = 10
        return x
    });
    print(res);
}

{
    let arr = [[1, 2], [3, 4], 5, 6, 7]
    let res = arr.flatMap(x => {
        arr.length = 3
        return x
    });
    print(res);
}

{
    let idx = 0;
    let arr = [[1, 2], [3, 4], 5];
    let res = arr.flatMap(x => {
        if(idx === 0) {
            arr.pop();
        }
        if(idx === 1) {
            arr.push(15);
        }
        idx++;
        return x;
    });
    print(res);
}

{
    let idx = 0;
    let arr = [[1, 2], [3, 4], 7, 8]
    let res = arr.flatMap(x => {
        if(idx === 0) {
            arr[1] = [3, 4, 5, 6]
        }
        return x
    });
    print(res);
}

{
    let idx = 0;
    let arr = [[1, 2], [3, 4], 7, 8]
    let res = arr.flatMap(x => {
        if(idx === 0) {
            arr[1] = { a: 1 }
        }
        return x
    });
    print(JSON.stringify(res));
}

{
    let arr = [[1, 2], [3, 4]]
    let res = arr.flatMap(x => {
        return { arr: x }
    });
    print(JSON.stringify(res));
}

{
    let arr = [[1, 2], [3, 4]]
    let res = arr.flatMap(x => {
        arr = { a: 1 }
        return x
    });
    print(res);
}

// stable array with proxy
{
    let arr = [ new Proxy([1, 2], {}), new Proxy([3, 4], {}) ];
    let res = arr.flatMap(x=>x);
    print(res);
}

{
    let arr = [ new Proxy([1, 2], {}), new Proxy([3, 4], {}) ];
    let res = arr.flatMap(x => {
        x.push(0)
        return x
    });
    print(res);
}

{
    let arr = [ new Proxy([1, 2, 3], {}), new Proxy([4, 5, 6], {}) ];
    let res = arr.flatMap(x => {
        x.pop()
        return x
    });
    print(res);
}

{
    let arr = [ new Proxy([1, 2], {}), new Proxy([3, 4], {}), 5 ];
    let res = arr.flatMap(x => {
        arr.length = 10
        return x
    });
    print(res);
}

{
    let arr = [ new Proxy([1, 2], {}), new Proxy([3, 4], {}), 5, 6, 7 ];
    let res = arr.flatMap(x => {
        arr.length = 3
        return x
    });
    print(res);
}

{
    let idx = 0;
    let arr = [ new Proxy([1, 2], {}), new Proxy([3, 4], {}), 5];
    let res = arr.flatMap(x => {
        if(idx === 0) {
            arr.pop();
        }
        if(idx === 1) {
            arr.push(15);
        }
        idx ++;
        return x;
    });
    print(res);
}

{
    let idx = 0;
    let arr = [ new Proxy([1, 2], {}), new Proxy([3, 4], {}), 7, 8]
    let res = arr.flatMap(x => {
        if(idx === 0) {
            arr[1] = new Proxy([3, 4, 5, 6], {})
        }
        return x
    });
    print(res);
}

{
    let idx = 0;
    let arr = [ new Proxy([1, 2], {}), new Proxy([3, 4], {}), 7, 8]
    let res = arr.flatMap(x => {
        if(idx === 0) {
            arr[1] = new Proxy({ a: 1 }, {})
        }
        return x
    });
    print(JSON.stringify(res));
}

{
    let arr = [ new Proxy([1, 2], {}), new Proxy([3, 4], {}) ];
    let res = arr.flatMap(x => {
        return { arr: x }
    });
    print(JSON.stringify(res));
}

{
    let arr = [ new Proxy([1, 2], {}), new Proxy([3, 4], {}) ];
    let res = arr.flatMap(x => {
        arr = { a: 1 }
        return x
    });
    print(res);
}

{
    const handler = {
        get(trapTarget, property, receiver) {
            trapTarget.push(0)
            return trapTarget[property];
        },
    }
    let arr = [ new Proxy([1, 2], handler), new Proxy([3, 4], handler) ];
    let res = arr.flatMap(x=>x);
    print(res);
}

{
    const handler = {
        get(trapTarget, property, receiver) {
            trapTarget.pop()
            return trapTarget[property];
        },
    }
    let arr = [ new Proxy([1, 2, 3], handler), new Proxy([4, 5, 6], handler) ];
    let res = arr.flatMap(x=>x);
    print(res);
}

{
    const handler = {
        get(trapTarget, property, receiver) {
            trapTarget.push(0)
            return trapTarget[property];
        },
    }
    let arr = [ new Proxy([1, 2], handler), new Proxy([3, 4], handler) ];
    let res = arr.flatMap(x => {
        x.push(0)
        return x
    });
    print(res);
}

{
    const handler = {
        get(trapTarget, property, receiver) {
            trapTarget.pop()
            return trapTarget[property];
        },
    }
    let arr = [ new Proxy([1, 2, 3, 4, 5, 6], handler), new Proxy([7, 8, 9, 10, 11, 12], handler) ];
    let res = arr.flatMap(x => {
        x.pop()
        return x
    });
    print(res);
}

// unstable array without proxy
{
    let arr = [[1, 2], [3, 4]]
    arr.__proto__ = [];
    let res = arr.flatMap(x => x);
    print(res);
}

{
    let arr = [[1, 2], [3, 4]]
    arr.__proto__ = [];
    let res = arr.flatMap(x => {
        x.push(0)
        return x
    });
    print(res);
}

{
    let arr = [[1, 2, 3], [4, 5, 6]]
    arr.__proto__ = [];
    let res = arr.flatMap(x => {
        x.pop()
        return x
    });
    print(res);
}

{
    let arr = [[1, 2], [3, 4], 5]
    arr.__proto__ = [];
    let res = arr.flatMap(x => {
        arr.length = 10
        return x
    });
    print(res);
}
{
    let arr = [[1, 2], [3, 4], 5, 6, 7]
    arr.__proto__ = [];
    let res = arr.flatMap(x => {
        arr.length = 3
        return x
    });
    print(res);
}

{
    let idx = 0;
    let arr = [[1, 2], [3, 4], 5];
    arr.__proto__ = [];
    let res = arr.flatMap(x => {
        if(idx === 0) {
            arr.pop();
        }
        if(idx === 1) {
            arr.push(15);
        }
        idx ++;
        return x;
    });
    print(res);
}

{
    let idx = 0;
    let arr = [[1, 2], [3, 4], 7, 8]
    arr.__proto__ = [];
    let res = arr.flatMap(x => {
        if(idx === 0) {
            arr[1] = [3, 4, 5, 6]
        }
        return x
    });
    print(res);
}

{
    let idx = 0;
    let arr = [[1, 2], [3, 4], 7, 8]
    arr.__proto__ = [];
    let res = arr.flatMap(x => {
        if(idx === 0) {
            arr[1] = { a: 1 }
        }
        return x
    });
    print(JSON.stringify(res));
}

{
    let arr = [[1, 2], [3, 4]]
    arr.__proto__ = [];
    let res = arr.flatMap(x => {
        return { arr: x }
    });
    print(JSON.stringify(res));
}

{
    let arr = [[1, 2], [3, 4]]
    arr.__proto__ = [];
    let res = arr.flatMap(x => {
        arr = { a: 1 }
        return x
    });
    print(res);
}

{
    let arr = [[1, 2], [3, 4]]
    let res = arr.flatMap(x => {
        arr.__proto__ = [];
        return x
    });
    print(res);
}

{
    let arr = [[1, 2], [3, 4]]
    let res = arr.flatMap(x => {
        x.__proto__ = [];
        return x
    });
    print(res);
}

{
    let idx = 0;
    let arr = [[1, 2], [3, 4], [5, 6], [7, 8]]
    let res = arr.flatMap(x => {
        idx++
        if (idx === 2) {
            arr.__proto__ = [];
        }
        return x
    });
    print(res); // [1, 2, 3, 4, 5, 6, 7, 8]
}

// unstable array with proxy
{
    let arr = [ new Proxy([1, 2], {}), new Proxy([3, 4], {}) ];
    arr.__proto__ = [];
    let res = arr.flatMap(x=>x);
    print(res);
}

{
    let arr = [ new Proxy([1, 2], {}), new Proxy([3, 4], {}) ];
    arr.__proto__ = [];
    let res = arr.flatMap(x => {
        x.push(0)
        return x
    });
    print(res);
}

{
    let arr = [ new Proxy([1, 2, 3], {}), new Proxy([4, 5, 6], {}) ];
    arr.__proto__ = [];
    let res = arr.flatMap(x => {
        x.pop()
        return x
    });
    print(res);
}

{
    let arr = [ new Proxy([1, 2], {}), new Proxy([3, 4], {}), 5 ];
    arr.__proto__ = [];
    let res = arr.flatMap(x => {
        arr.length = 10
        return x
    });
    print(res);
}

{
    let arr = [ new Proxy([1, 2], {}), new Proxy([3, 4], {}), 5, 6, 7 ];
    arr.__proto__ = [];
    let res = arr.flatMap(x => {
        arr.length = 3
        return x
    });
    print(res);
}

{
    let idx = 0;
    let arr = [ new Proxy([1, 2], {}), new Proxy([3, 4], {}), 5];
    arr.__proto__ = [];
    let res = arr.flatMap(x => {
        if(idx === 0) {
            arr.pop();
        }
        if(idx === 1) {
            arr.push(15);
        }
        idx ++;
        return x;
    });
    print(res);
}

{
    let idx = 0;
    let arr = [ new Proxy([1, 2], {}), new Proxy([3, 4], {}), 7, 8]
    arr.__proto__ = [];
    let res = arr.flatMap(x => {
        if(idx === 0) {
            arr[1] = new Proxy([3, 4, 5, 6], {})
        }
        return x
    });
    print(res);
}

{
    let idx = 0;
    let arr = [ new Proxy([1, 2], {}), new Proxy([3, 4], {}), 7, 8]
    arr.__proto__ = [];
    let res = arr.flatMap(x => {
        if(idx === 0) {
            arr[1] = new Proxy({ a: 1 }, {})
        }
        return x
    });
    print(JSON.stringify(res));
}

{
    let arr = [ new Proxy([1, 2], {}), new Proxy([3, 4], {}) ];
    arr.__proto__ = [];
    let res = arr.flatMap(x => {
        return { arr: x }
    });
    print(JSON.stringify(res));
}

{
    let arr = [ new Proxy([1, 2], {}), new Proxy([3, 4], {}) ];
    arr.__proto__ = [];
    let res = arr.flatMap(x => {
        arr = { a: 1 }
        return x
    });
    print(res);
}

{
    let arr = [ new Proxy([1, 2], {}), new Proxy([3, 4], {}) ];
    let res = arr.flatMap(x => {
        arr.__proto__ = [];
        return x
    });
    print(res);
}

{
    let arr = [ new Proxy([1, 2], {}), new Proxy([3, 4], {}) ];
    let res = arr.flatMap(x => {
        x.__proto__ = [];
        return x
    });
    print(res);
}

{
    const handler = {
        get(trapTarget, property, receiver) {
            trapTarget.push(0)
            return trapTarget[property];
        },
    }
    let arr = [ new Proxy([1, 2], handler), new Proxy([3, 4], handler) ];
    arr.proto = [];
    let res = arr.flatMap(x=>x);
    print(res);
}

{
    const handler = {
        get(trapTarget, property, receiver) {
            trapTarget.pop()
            return trapTarget[property];
        },
    }
    let arr = [ new Proxy([1, 2, 3], handler), new Proxy([4, 5, 6], handler) ];
    arr.proto = [];
    let res = arr.flatMap(x=>x);
    print(res);
}

{
    const handler = {
        get(trapTarget, property, receiver) {
            trapTarget.push(0)
            return trapTarget[property];
        },
    }
    let arr = [ new Proxy([1, 2], handler), new Proxy([3, 4], handler) ];
    arr.proto = [];
    let res = arr.flatMap(x => {
        x.push(0)
        return x
    });
    print(res);
}

{
    const handler = {
        get(trapTarget, property, receiver) {
            trapTarget.pop()
            return trapTarget[property];
        },
    }
    let arr = [ new Proxy([1, 2, 3, 4, 5, 6], handler), new Proxy([7, 8, 9, 10, 11, 12], handler) ];
    arr.proto = [];
    let res = arr.flatMap(x => {
        x.pop()
        return x
    });
    print(res);
}

{
    const handler = {
        get(trapTarget, property, receiver) {
            trapTarget.proto = [];
            return trapTarget[property];
        },
    }
    let arr = [ new Proxy([1, 2], handler), new Proxy([3, 4], handler) ];
    let res = arr.flatMap(x=>x);
    print(res);
}

{
    let idx = 0;
    let arr = [ new Proxy([1, 2], {}), new Proxy([3, 4], {}), new Proxy([5, 6], {}), new Proxy([7, 8], {}) ];
    let res = arr.flatMap(x => {
        idx++
        if (idx === 2) {
            arr.__proto__ = [];
        }
        return x
    });
    print(res);
}

{
    let arr = [1,2,3,4]
    arr.flatMap((e,index,target)=>{
      print(typeof index,'number')
      return e;
    })
}

{
    class myArray extends Array{
        constructor(...args) {
            super(...args);
            return new Proxy(this,{
                get(target, prop, receiver) {
                    print("get",prop,typeof prop);
                    return Reflect.get(target, prop, receiver);
                },
                set(target, prop, value, receiver) {
                    print("set",prop,value);
                    return Reflect.set(target, prop, value, receiver);
                }
            })
        }
    }
    let arr = new myArray(1,2,3,4);
    arr.flatMap((e,index,target)=>{
        print("flatMap",typeof index,'number')
        return e;
    });
}