(idx valueInt, val, receiver Value, throw bool)
| 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) |
| 233 | } |
| 234 | |
| 235 | func (s *stringObject) defineOwnPropertyStr(name unistring.String, descr PropertyDescriptor, throw bool) bool { |
| 236 | if i := strToGoIdx(name); i >= 0 && i < s.length { |
nothing calls this directly
no test coverage detected