(call FunctionCall)
| 110 | } |
| 111 | |
| 112 | func (r *Runtime) arrayproto_push(call FunctionCall) Value { |
| 113 | obj := call.This.ToObject(r) |
| 114 | return r.generic_push(obj, call) |
| 115 | } |
| 116 | |
| 117 | func (r *Runtime) arrayproto_pop_generic(obj *Object) Value { |
| 118 | l := toLength(obj.self.getStr("length", nil)) |
nothing calls this directly
no test coverage detected