[][src]Trait boa::exec::Executor

pub trait Executor {
    fn new() -> Self;
fn run(&mut self, expr: &Expr) -> ResultValue; }

An execution engine

Required methods

fn new() -> Self

Make a new execution engine

fn run(&mut self, expr: &Expr) -> ResultValue

Run an expression

Loading content...

Implementors

impl Executor for Interpreter[src]

Loading content...