We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8654ceb commit 3cb6ee6Copy full SHA for 3cb6ee6
1 file changed
src/vm.rs
@@ -2132,7 +2132,11 @@ impl Actor
2132
Value::Object(p) => {
2133
let obj = unsafe { &*p };
2134
let fun_id = match self.get_method(obj.class_id, method_name.as_str()) {
2135
- None => error!("call to method `{}`, not found on class", method_name.as_str()),
+ None => error!(
2136
+ "call to method `{}`, not found on class `{}`",
2137
+ method_name.as_str(),
2138
+ self.get_class_name(obj.class_id)
2139
+ ),
2140
Some(fun_id) => fun_id,
2141
};
2142
0 commit comments