/* * 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. */ /* * @tc.name:storeicbyname * @tc.desc:test storeicbyname * @tc.type: FUNC * @tc.require: issueI7UTOA */ var r = /./; var coercibleValue = { length: 1, groups: {length : 1.1}, }; r.exec = function() { return coercibleValue; }; let a = r[Symbol.replace]('', '[$]'); print(a) const manyAs = 'A'.repeat(0x10000); const manyas = manyAs.toLowerCase(); const re = RegExp('^(?:' + manyas + '|' + manyAs + '|' + manyAs + ')$', 'i'); try { manyas.replace(re, manyAs); } catch (e) { print(e instanceof SyntaxError); }