(arr)
| 31 | // This test must be the first test to guarantee elements protectors are valid. |
| 32 | (function() { |
| 33 | function pop(arr) { |
| 34 | return arr.pop(); |
| 35 | } |
| 36 | let smi_arr = [1, 2, 3, 4]; |
| 37 | let object_arr = [{}, {}, {}, {}]; |
| 38 | let double_arr = [1.1, 2.2, 3.3, 4.4]; |
no test coverage detected