(name unistring.String, val Value, throw bool)
| 54 | } |
| 55 | |
| 56 | func (e *errorObject) setOwnStr(name unistring.String, val Value, throw bool) bool { |
| 57 | if name == propNameStack { |
| 58 | e.addStackProp() |
| 59 | } |
| 60 | return e.baseObject.setOwnStr(name, val, throw) |
| 61 | } |
| 62 | |
| 63 | func (e *errorObject) setForeignStr(name unistring.String, val, receiver Value, throw bool) (bool, bool) { |
| 64 | return e._setForeignStr(name, e.getOwnPropStr(name), val, receiver, throw) |
nothing calls this directly
no test coverage detected