!5125 arraypop没有爬取原型链上的数据

Merge pull request !5125 from 韩靖/master
This commit is contained in:
openharmony_ci 2023-11-05 09:00:25 +00:00 committed by Gitee
commit dfb620b986
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
5 changed files with 68 additions and 0 deletions

View File

@ -78,6 +78,9 @@ JSTaggedValue JSStableArray::Pop(JSHandle<JSArray> receiver, EcmaRuntimeCallInfo
} else {
elements->Set(thread, index, JSTaggedValue::Hole());
}
} else {
JSHandle<JSTaggedValue> thisObjVal(receiver);
result = JSArray::FastGetPropertyByValue(thread, thisObjVal, index).GetTaggedValue();
}
receiver->SetArrayLength(thread, index);
return result.IsHole() ? JSTaggedValue::Undefined() : result;

View File

@ -22,6 +22,7 @@ group("ark_js_moduletest") {
"arrayfindindex",
"arrayforeach",
"arrayjoin",
"arraypop",
"arraytoreversed",
"arraytospliced",
"arraywith",
@ -166,6 +167,7 @@ group("ark_asm_test") {
"arrayfindindex",
"arrayforeach",
"arrayjoin",
"arraypop",
"arraysort",
"arrayprotochange",
"asmstackoverflow",
@ -288,6 +290,7 @@ group("ark_asm_single_step_test") {
"arrayflat",
"arrayforeach",
"arrayjoin",
"arraypop",
"arrayprotochange",
"asmstackoverflow",
"assignproxy",

View File

@ -0,0 +1,18 @@
# Copyright (c) 2023 Shenzhen Kaihong Digital Industry Development 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("//arkcompiler/ets_runtime/test/test_helper.gni")
host_moduletest_action("arraypop") {
deps = []
}

View File

@ -0,0 +1,30 @@
/*
* Copyright (c) 2023 Shenzhen Kaihong Digital Industry Development 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:arrayprotochange
* @tc.desc:test Array function when prototype changes
* @tc.type: FUNC
* @tc.require: issueI7O616
*/
(function () {
var array = [,];
function pop() {
return array.pop();
}
array.__proto__.push(6);
print(pop());
})();

View File

@ -0,0 +1,14 @@
# Copyright (c) 2023 Shenzhen Kaihong Digital Industry Development 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.
6