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