(p unistring.String, receiver Value)
| 41 | } |
| 42 | |
| 43 | func (e *errorObject) getStr(p unistring.String, receiver Value) Value { |
| 44 | return e.getStrWithOwnProp(e.getOwnPropStr(p), p, receiver) |
| 45 | } |
| 46 | |
| 47 | func (e *errorObject) getOwnPropStr(name unistring.String) Value { |
| 48 | res := e.baseObject.getOwnPropStr(name) |
nothing calls this directly
no test coverage detected