(name unistring.String, descr PropertyDescriptor, throw bool)
| 201 | } |
| 202 | |
| 203 | func (f *funcObject) defineOwnPropertyStr(name unistring.String, descr PropertyDescriptor, throw bool) bool { |
| 204 | f._addProto(name) |
| 205 | return f.baseObject.defineOwnPropertyStr(name, descr, throw) |
| 206 | } |
| 207 | |
| 208 | func (f *funcObject) deleteStr(name unistring.String, throw bool) bool { |
| 209 | f._addProto(name) |
nothing calls this directly
no test coverage detected