/*
 * Copyright (c) 2024 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.
 */
import assert from 'assert';
// 不新增变量
let [PropDemo1, PropDemo2] = ['akria', 12];
let { ...reset1 } = { 'name2': 'akria2', age2: 18 };
assert(PropDemo1 === 'akria', 'success');
assert(PropDemo2 === 12, 'success');
assert(reset1.name2 === 'akria2', 'success');
assert(reset1.age2 === 18, 'success');
function funcLayer() {
    let [t, u] = ['akria3', 13];
    let { ...v } = { 'name2': 'akria4', age2: 20 };
    const { PropDemo5: w, PropDemo6: x = 1 } = { PropDemo5: 1, PropDemo6: 2 };
    assert(x === 2, 'success');
    assert(t === 'akria3', 'success');
    assert(u === 13, 'success');
    assert(v.name2 === 'akria4', 'success');
    assert(v.age2 === 20, 'success');
}
funcLayer();
// 新增变量
let { newName: newName, ...reset3 } = { 'newName': 'akria5', newAge: 20 };
assert(newName === 'akria5', 'success');
assert(reset3.newAge === 20, 'success');
function foo() {
    return { Propx1: 1, Propy1: 2 };
}
const { Propx1: Propx1, Propy1: Propy1 } = foo();
assert(Propx1 === 1, 'success');
assert(Propy1 === 2, 'success');
let Propx2 = 13;
let Propy2 = 14;
const { Propx2: tempX2, Propy2: tempY2 } = { Propx2: Propx2, Propy2: Propy2 };
assert(tempX2 === 13, 'success');
assert(tempY2 === 14, 'success');
