(name unistring.String, val, receiver Value, throw bool)
| 70 | } |
| 71 | |
| 72 | func (o *objectGoMapSimple) setForeignStr(name unistring.String, val, receiver Value, throw bool) (bool, bool) { |
| 73 | return o._setForeignStr(name, trueValIfPresent(o._hasStr(name.String())), val, receiver, throw) |
| 74 | } |
| 75 | |
| 76 | func (o *objectGoMapSimple) _hasStr(name string) bool { |
| 77 | _, exists := o.data[name] |
nothing calls this directly
no test coverage detected