(s *Symbol, v Value, throw bool)
| 699 | } |
| 700 | |
| 701 | func (p *proxyObject) setOwnSym(s *Symbol, v Value, throw bool) bool { |
| 702 | return p.proxySetSym(s, v, p.val, throw) |
| 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 |
nothing calls this directly
no test coverage detected