(name unistring.String)
| 45 | } |
| 46 | |
| 47 | func (e *errorObject) getOwnPropStr(name unistring.String) Value { |
| 48 | res := e.baseObject.getOwnPropStr(name) |
| 49 | if res == nil && name == propNameStack { |
| 50 | return e.addStackProp() |
| 51 | } |
| 52 | |
| 53 | return res |
| 54 | } |
| 55 | |
| 56 | func (e *errorObject) setOwnStr(name unistring.String, val Value, throw bool) bool { |
| 57 | if name == propNameStack { |
no test coverage detected