(s *Symbol, descr PropertyDescriptor, throw bool)
| 240 | } |
| 241 | |
| 242 | func (o *templatedObject) defineOwnPropertySym(s *Symbol, descr PropertyDescriptor, throw bool) bool { |
| 243 | o.materialiseSymbols() |
| 244 | return o.baseObject.defineOwnPropertySym(s, descr, throw) |
| 245 | } |
| 246 | |
| 247 | func (o *templatedObject) deleteStr(name unistring.String, throw bool) bool { |
| 248 | if val := o.getOwnPropStr(name); val != nil { |
nothing calls this directly
no test coverage detected