(name unistring.String, val, receiver Value, throw bool)
| 224 | } |
| 225 | |
| 226 | func (a *sparseArrayObject) setForeignStr(name unistring.String, val, receiver Value, throw bool) (bool, bool) { |
| 227 | return a._setForeignStr(name, a.getOwnPropStr(name), val, receiver, throw) |
| 228 | } |
| 229 | |
| 230 | func (a *sparseArrayObject) setForeignIdx(name valueInt, val, receiver Value, throw bool) (bool, bool) { |
| 231 | return a._setForeignIdx(name, a.getOwnPropIdx(name), val, receiver, throw) |
nothing calls this directly
no test coverage detected