(p unistring.String, v, receiver Value, throw bool)
| 644 | } |
| 645 | |
| 646 | func (a *dynamicArray) setForeignStr(p unistring.String, v, receiver Value, throw bool) (res bool, handled bool) { |
| 647 | return a.setParentForeignStr(p, v, receiver, throw) |
| 648 | } |
| 649 | |
| 650 | func (a *dynamicArray) setForeignIdx(p valueInt, v, receiver Value, throw bool) (res bool, handled bool) { |
| 651 | return a.setParentForeignIdx(p, v, receiver, throw) |
nothing calls this directly
no test coverage detected