(name unistring.String, desc PropertyDescriptor, throw bool)
| 72 | } |
| 73 | |
| 74 | func (e *errorObject) defineOwnPropertyStr(name unistring.String, desc PropertyDescriptor, throw bool) bool { |
| 75 | if name == propNameStack { |
| 76 | e.addStackProp() |
| 77 | } |
| 78 | return e.baseObject.defineOwnPropertyStr(name, desc, throw) |
| 79 | } |
| 80 | |
| 81 | func (e *errorObject) hasOwnPropertyStr(name unistring.String) bool { |
| 82 | if e.baseObject.hasOwnPropertyStr(name) { |
nothing calls this directly
no test coverage detected