Compile a Script (to AST)
To repeatedly evaluate a script, compile it first with Engine::compile
into an AST
(Abstract Syntax Tree) form.
Engine::eval_ast_XXX
and Engine::run_ast_XXX
evaluate a pre-compiled AST
.
// Compile to an AST and store it for later evaluations
let ast = engine.compile("40 + 2")?;
for _ in 0..42 {
let result: i64 = engine.eval_ast(&ast)?;
println!("Answer #{}: {}", i, result); // prints 42
}
Advanced users who may want to manipulate an AST
, especially the functions contained within,
should see the section on Manage AST’s for more details.