| 102 | } |
| 103 | |
| 104 | static bool iterable_valueOf(JSContext *cx, unsigned argc, JS::Value *vp) { |
| 105 | return toPrimitive(cx, argc, vp); |
| 106 | } |
| 107 | |
| 108 | static JSMethodDef iterable_methods[] = { |
| 109 | {"next", iterable_next, 0}, |
nothing calls this directly
no test coverage detected