(a *arrayObject, l int64)
| 31 | } |
| 32 | |
| 33 | func setArrayLength(a *arrayObject, l int64) *arrayObject { |
| 34 | a.setOwnStr("length", intToValue(l), true) |
| 35 | return a |
| 36 | } |
| 37 | |
| 38 | func arraySpeciesCreate(obj *Object, size int64) *Object { |
| 39 | if isArray(obj) { |
no test coverage detected
searching dependent graphs…