()
| 82 | } |
| 83 | |
| 84 | func (a *argumentsObject) iterateStringKeys() iterNextFunc { |
| 85 | return (&argumentsPropIter{ |
| 86 | wrapped: a.baseObject.iterateStringKeys(), |
| 87 | }).next |
| 88 | } |
| 89 | |
| 90 | func (a *argumentsObject) defineOwnPropertyStr(name unistring.String, descr PropertyDescriptor, throw bool) bool { |
| 91 | if mapped, ok := a.values[name].(*mappedProperty); ok { |
nothing calls this directly
no test coverage detected