Home
last modified time | relevance | path

Searched refs:testArray2 (Results 1 – 2 of 2) sorted by relevance

/arkcompiler/ets_runtime/test/moduletest/container/
Dcontainer_linked_list.js160 let testArray2 = []; variable
163 testArray2.push(i);
172 testArray2.splice(9, 1);
174 for(let i = 0; i < testArray2.length; i++) {
175 if (proxy[i] !== testArray2[i]) {
182 testArray2.splice(8, 1);
184 for(let i = 0; i < testArray2.length; i++) {
185 if (proxy[i] !== testArray2[i]) {
195 testArray2.splice(3, 0, 999);
197 for(let i = 0; i < testArray2.length; i++) {
[all …]
Dcontainer_list.js40 const testArray2 = []; variable
43 testArray2.push(i);
169 if (d !== testArray2[i]) {