* GIWrapperBase::to_string: * * JSNative method connected to the toString() method in JS. */
| 593 | * JSNative method connected to the toString() method in JS. |
| 594 | */ |
| 595 | GJS_JSAPI_RETURN_CONVENTION |
| 596 | static bool to_string(JSContext* cx, unsigned argc, JS::Value* vp) { |
| 597 | GJS_CHECK_WRAPPER_PRIV(cx, argc, vp, args, obj, Base, priv); |
| 598 | return gjs_wrapper_to_string_func(cx, obj, Base::DEBUG_TAG, |
| 599 | priv->info(), priv->gtype(), |
| 600 | priv->ptr_addr(), args.rval()); |
| 601 | } |
| 602 | |
| 603 | // Helper methods |
| 604 |
no test coverage detected