| 1228 | } |
| 1229 | |
| 1230 | bool Function::to_string(JSContext* cx, unsigned argc, JS::Value* vp) { |
| 1231 | GJS_CHECK_WRAPPER_PRIV(cx, argc, vp, rec, this_obj, Function, priv); |
| 1232 | return priv->to_string_impl(cx, rec.rval()); |
| 1233 | } |
| 1234 | |
| 1235 | bool Function::to_string_impl(JSContext* cx, JS::MutableHandleValue rval) { |
| 1236 | int n_args = m_info.n_args(); |
nothing calls this directly
no test coverage detected