(name unistring.String, val, receiver Value, throw bool)
| 197 | } |
| 198 | |
| 199 | func (f *funcObject) setForeignStr(name unistring.String, val, receiver Value, throw bool) (bool, bool) { |
| 200 | return f._setForeignStr(name, f.getOwnPropStr(name), val, receiver, throw) |
| 201 | } |
| 202 | |
| 203 | func (f *funcObject) defineOwnPropertyStr(name unistring.String, descr PropertyDescriptor, throw bool) bool { |
| 204 | f._addProto(name) |
nothing calls this directly
no test coverage detected