(name unistring.String, v, receiver Value, throw bool)
| 703 | } |
| 704 | |
| 705 | func (p *proxyObject) setForeignStr(name unistring.String, v, receiver Value, throw bool) (bool, bool) { |
| 706 | return p.proxySetStr(name, v, receiver, throw), true |
| 707 | } |
| 708 | |
| 709 | func (p *proxyObject) setForeignIdx(idx valueInt, v, receiver Value, throw bool) (bool, bool) { |
| 710 | return p.proxySetIdx(idx, v, receiver, throw), true |
nothing calls this directly
no test coverage detected