Change debug print info for function registration.
This commit is contained in:
parent
42fe5e8b95
commit
cc39e559ae
12
src/api.rs
12
src/api.rs
@ -17,13 +17,13 @@ impl<'a> Engine<'a> {
|
||||
f: Box<FnAny>,
|
||||
) {
|
||||
debug_println!(
|
||||
"Register function: {} ({})",
|
||||
"Register function: {} for {} parameter(s)",
|
||||
fn_name,
|
||||
args.iter()
|
||||
.map(|x| (*x).type_name())
|
||||
.map(|name| self.map_type_name(name))
|
||||
.collect::<Vec<_>>()
|
||||
.join(", ")
|
||||
if let Some(a) = &args {
|
||||
format!("{}", a.len())
|
||||
} else {
|
||||
"no".to_string()
|
||||
}
|
||||
);
|
||||
|
||||
let spec = FnSpec {
|
||||
|
@ -430,8 +430,13 @@ impl Engine<'_> {
|
||||
value
|
||||
}
|
||||
|
||||
// {expr}.???
|
||||
expr => {
|
||||
let mut target = self.eval_expr(scope, expr)?;
|
||||
self.get_dot_val_helper(scope, target.as_mut(), dot_rhs)
|
||||
}
|
||||
// Syntax error
|
||||
_ => Err(EvalAltResult::ErrorDotExpr(dot_lhs.position())),
|
||||
//_ => Err(EvalAltResult::ErrorDotExpr(dot_lhs.position())),
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user