Allow dot operator on function results; change debug print info for function registration.

This commit is contained in:
Stephen Chung
2020-03-06 15:49:38 +08:00
parent 42fe5e8b95
commit d2296ab33b
2 changed files with 12 additions and 7 deletions

View File

@@ -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())),
}
}