(idx valueInt, val, receiver Value, throw bool)
| 269 | } |
| 270 | |
| 271 | func (a *arrayObject) setForeignIdx(idx valueInt, val, receiver Value, throw bool) (bool, bool) { |
| 272 | return a._setForeignIdx(idx, a.getOwnPropIdx(idx), val, receiver, throw) |
| 273 | } |
| 274 | |
| 275 | func (a *arrayObject) setForeignStr(name unistring.String, val, receiver Value, throw bool) (bool, bool) { |
| 276 | return a._setForeignStr(name, a.getOwnPropStr(name), val, receiver, throw) |
nothing calls this directly
no test coverage detected