A JEXL evaluator written in Rust This crate depends on a JEXL parser crate that handles all the parsing and is a part of the same workspace. JEXL is an expression language used by Mozilla, you can find more information here: https://github.com/mozilla/mozjexl
How to use
The access point for this crate is the eval functions of the Evaluator Struct
You can use the eval function directly to evaluate standalone statements
For example:
use Evaluator;
use json as value;
let evaluator = new;
assert_eq!;
You can also run the statements against a context using the eval_in_context function
The context can be any type that implements the serde::Serializable trait
and the function will return errors if the statement doesn't match the context
For example:
use Evaluator;
use json as value;
let context = value!;
let evaluator = new;
assert_eq!;