(obj)
| 4382 | }; |
| 4383 | |
| 4384 | function namedGetter(obj) { |
| 4385 | return obj[this]; |
| 4386 | } |
| 4387 | function indexedGetter(obj) { |
| 4388 | var index = +this; |
| 4389 | if (index < 0) index = Math.max(0, index + obj.length); |
nothing calls this directly
no outgoing calls
no test coverage detected