Open
Description
Test path: tests/tests/swfs/avm1/from_shumway/array
Expected
concat: a,1,b,[object Object]
pop: b undefined
push: 2 c 2
shift: a b
slice: b true
splice1: b true 2 c
splice2: true 4 d c
Actual
concat: [object Object],1,b,[object Object]
pop: b undefined
push: 2 c 2
shift: a b
slice: b true
splice1: b true 2 c
splice2: true 4 d c
Difference
1c1
< concat: a,1,b,[object Object]
---
> concat: [object Object],1,b,[object Object]