(name unistring.String, receiver Value)
| 13 | } |
| 14 | |
| 15 | func (a *argumentsObject) getStr(name unistring.String, receiver Value) Value { |
| 16 | return a.getStrWithOwnProp(a.getOwnPropStr(name), name, receiver) |
| 17 | } |
| 18 | |
| 19 | func (a *argumentsObject) getOwnPropStr(name unistring.String) Value { |
| 20 | if mapped, ok := a.values[name].(*mappedProperty); ok { |
nothing calls this directly
no test coverage detected