Home
last modified time | relevance | path

Searched refs:array_check (Results 1 – 4 of 4) sorted by relevance

/third_party/jerryscript/tests/jerry/es2015/
Dproxy_own_keys.js19 function array_check(result_array, expected_array) { function
79 array_check(Reflect.ownKeys(proxy), ["foo", "bar", symA]);
80 array_check(Object.getOwnPropertyNames(proxy), ["foo", "bar"]);
81 array_check(Object.keys(proxy), ["foo", "bar"]);
82 array_check(Object.getOwnPropertySymbols(proxy), [symA]);
86 array_check(Reflect.ownKeys(proxy), ["prop1", "prop2"]);
87 array_check(Object.getOwnPropertyNames(proxy), ["prop1", "prop2"]);
88 array_check(Object.keys(proxy), ["prop1", "prop2"]);
89 array_check(Object.getOwnPropertySymbols(proxy), []);
Darray-prototype-copywithin.js83 function array_check(result_array, expected_array) { function
99 array_check(value, []);
109 array_check(value, [1, 1, 2, undefined, undefined, undefined]);
119 array_check(value, [1, 2, 3]);
Darray-prototype-fill.js181 function array_check(result_array, expected_array) { function
198 array_check(value, []);
208 array_check(value, [1, 1, 1, undefined, undefined, undefined]);
218 array_check(value, [4, 4, 4]);
/third_party/jerryscript/tests/jerry/
Darray-prototype-slice.js155 function array_check(result_array, expected_array) { function
171 array_check(value, []);
181 array_check(value, []);
191 array_check(value, []);