diff options
Diffstat (limited to 'ops/lib.rs')
-rw-r--r-- | ops/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ops/lib.rs b/ops/lib.rs index 608219a1c..49057507d 100644 --- a/ops/lib.rs +++ b/ops/lib.rs @@ -237,7 +237,7 @@ fn codegen_arg( let #ident = match #core::serde_v8::from_v8(scope, #ident) { Ok(v) => v, Err(err) => { - let msg = format!("Error parsing args: {}", #core::anyhow::Error::from(err)); + let msg = format!("Error parsing args at position {}: {}", #idx, #core::anyhow::Error::from(err)); return #core::_ops::throw_type_error(scope, msg); } }; |