Node.js: Fix tense in error messages produced when exceptions are throw

At this point the exception _was_ thrown.
This commit is contained in:
Simon Hausmann 2024-10-01 13:19:25 +02:00 committed by Simon Hausmann
parent 5c612cda61
commit fdec55cd47
2 changed files with 4 additions and 4 deletions

View file

@ -55,7 +55,7 @@ pub fn invoke_from_event_loop(env: Env, callback: JsFunction) -> napi::Result<na
i_slint_core::api::invoke_from_event_loop(move || {
let function_ref = function_ref.take();
let Ok(callback) = function_ref.get::<JsFunction>() else {
eprintln!("Node.js: JavaScript invoke_from_event_loop throws an exception");
eprintln!("Node.js: JavaScript invoke_from_event_loop threw an exception");
return;
};
callback.call_without_args(None).ok();

View file

@ -91,7 +91,7 @@ impl Model for JsModel {
fn row_count(&self) -> usize {
let Ok(model) = self.js_impl.get::<Object>() else {
eprintln!("Node.js: JavaScript Model<T>'s rowCount throws an exception");
eprintln!("Node.js: JavaScript Model<T>'s rowCount threw an exception");
return 0;
};
@ -125,7 +125,7 @@ impl Model for JsModel {
fn row_data(&self, row: usize) -> Option<Self::Data> {
let Ok(model) = self.js_impl.get::<Object>() else {
eprintln!("Node.js: JavaScript Model<T>'s rowData throws an exception");
eprintln!("Node.js: JavaScript Model<T>'s rowData threw an exception");
return None;
};
@ -160,7 +160,7 @@ impl Model for JsModel {
fn set_row_data(&self, row: usize, data: Self::Data) {
let Ok(model) = self.js_impl.get::<Object>() else {
eprintln!("Node.js: JavaScript Model<T>'s setRowData throws an exception");
eprintln!("Node.js: JavaScript Model<T>'s setRowData threw an exception");
return;
};