#[test]
fn it_works() {
let mut context = HashMapContext::new();
// context.set_value("a".into(), false.into()).unwrap();
let x = eval_boolean_with_context("true || a", &context).unwrap();
println!("{}", x);
}
It got an error: VariableIdentifierNotFound("a")。But if short-circuit is supported, it should be computeable.
It got an error:
VariableIdentifierNotFound("a")。But if short-circuit is supported, it should be computeable.