| 1548 | } |
| 1549 | |
| 1550 | static bool array_toString(JSContext *cx, unsigned argc, JS::Value *vp) { |
| 1551 | return array_join(cx, argc, vp); |
| 1552 | } |
| 1553 | |
| 1554 | static bool array_toLocaleString(JSContext *cx, unsigned argc, JS::Value *vp) { |
| 1555 | JS::CallArgs args = JS::CallArgsFromVp(argc, vp); |
nothing calls this directly
no test coverage detected