(l int64)
| 70 | } |
| 71 | |
| 72 | func (r *Runtime) newArrayLength(l int64) *Object { |
| 73 | return setArrayLength(r.newArrayObject(), l).val |
| 74 | } |
| 75 | |
| 76 | func (r *Runtime) builtin_newArray(args []Value, proto *Object) *Object { |
| 77 | l := len(args) |
no test coverage detected