-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
functor_invoke_thunk should return errors using Value::error_string #4
Comments
Not necessary. You can place your own error in p_value (Value::error_string as you correctly pointed out), but if you just return 0, the engine will generate the TypeError error on its own. Here is the relevant sciter code (if you have a license, you can check if (!md.func(pass, nargs, args.cbegin(), &rv))
//throw qjs::om::type_error(string::format("method %s::%s",symbol_name_a(psp->name).c_str(), symbol_name_a(md.name).c_str()));
return JS_ThrowTypeError(ctx, string::format("method %s::%s", hruntime::current().symbol_name_a(psp->name).c_str(), hruntime::current().symbol_name_a(md.name).c_str()));
return conv<tool::value>::wrap(ctx, rv); So returning 0 is a convinient way to report a method call error without details. Anyway, thank you for your attention :) In the final code, I'll definitely construct the Value::error string first to provide a better error message. |
btw, just realized that rsciter/crates/rsciter/src/value.rs Lines 567 to 580 in b0fe1f4
may report error via Value::error_string if |
Although I know it's very much WIP, do notice that method_thunk shouldn't return 0
rsciter/crates/rsciter/examples/global_asset.rs
Line 101 in b0fe1f4
The body should be similar to functor_invoke_thunk
rsciter/crates/rsciter/src/value.rs
Line 567 in b0fe1f4
*p_value must be either result or Value::error_string
member_function thunk here always returns TRUE
https://gitlab.com/sciter-engine/sciter-js-sdk/-/blob/main/include/sciter-om-def.h?ref_type=heads#L227
The text was updated successfully, but these errors were encountered: