/*
 * 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 c1 from 'assert';
import d1 from './export_default_01_conditional';
c1(d1 === 2);
import e1 from './export_default_02_instance';
c1(e1.num === 1);
import f1 from './export_default_03_this';
c1(f1 !== undefined);
import g1 from './export_default_04_var';
c1(g1 === 4);
import h1 from './export_default_05_array';
c1(h1[0] === 1);
c1(h1[1] === 2);
import i1 from './export_default_06_object';
c1(i1.objProp1 === 1);
c1(i1.objProp2 === 2);
import j1 from './export_default_07_regex';
c1(j1.toString() === '/a/');
import k1 from './export_default_08_str1';
c1(k1 === `str1`);
import l1 from './export_default_09_str2';
c1(l1 === 'str2');
import m1 from './export_default_10_str3';
c1(m1 === "str3str4");
import n1 from './export_default_11_conditional';
c1(n1 === 2);
import o1 from './export_default_13_module';
async function a1() {
    c1((await o1).default === 'str1');
}
a1();
import p1 from './export_default_14_namepsace';
c1(p1 === "ns_inner");
import q1 from './export_default_15_object';
c1(q1 === 1);
import r1 from './export_default_16_function_ans';
c1(r1 === 2);
import s1 from './export_default_17_function_conditional';
c1(s1 === 9);
import t1 from './export_default_18_arrow';
c1(t1() === 1);
import u1 from './export_default_19_arrow_async';
async function b1() {
    c1(await u1() === 19);
}
b1();
import v1 from './export_default_20_expression_01';
c1(v1 === 2);
import w1 from './export_default_21_expression_02';
c1(w1 === 12);
import x1 from './export_default_22_expression_03';
c1(x1 === 3);
import y1 from './export_default_23_expression_04';
c1(y1 === 1);
import z1 from './export_default_24_expression_05';
c1(z1 === 1);
import a2 from './export_default_25_object';
c1(a2.inner_prop === 2);
