| 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); |
| 239 | } |
| 240 | |
| 241 | static bool array_values(JSContext *cx, unsigned argc, JS::Value *vp) { |
| 242 | return array_iterator_func(cx, argc, vp, ITEM_KIND_VALUE); |
nothing calls this directly
no test coverage detected