| 231 | } |
| 232 | |
| 233 | static bool array_entries(JSContext *cx, unsigned argc, JS::Value *vp) { |
| 234 | return array_iterator_func(cx, argc, vp, ITEM_KIND_KEY_AND_VALUE); |
| 235 | } |
| 236 | |
| 237 | static bool array_keys(JSContext *cx, unsigned argc, JS::Value *vp) { |
| 238 | return array_iterator_func(cx, argc, vp, ITEM_KIND_KEY); |
nothing calls this directly
no test coverage detected