(name unistring.String, throw bool)
| 65 | } |
| 66 | |
| 67 | func (e *errorObject) deleteStr(name unistring.String, throw bool) bool { |
| 68 | if name == propNameStack { |
| 69 | e.addStackProp() |
| 70 | } |
| 71 | return e.baseObject.deleteStr(name, throw) |
| 72 | } |
| 73 | |
| 74 | func (e *errorObject) defineOwnPropertyStr(name unistring.String, desc PropertyDescriptor, throw bool) bool { |
| 75 | if name == propNameStack { |
nothing calls this directly
no test coverage detected