Enum escodegen::Expr[][src]

pub enum Expr {
    Array(Vec<Expr>),
    Assign(StringBox<Expr>),
    Binary(BinaryOperatorBox<Expr>, Box<Expr>),
    Bool(bool),
    Call(Box<Expr>, Vec<Expr>),
    Function(Vec<String>, Vec<Stmt>),
    Member(Box<Expr>, Box<Expr>),
    Null,
    Number(f64),
    Object(Vec<(String, Expr)>),
    String(String),
    This,
    Unary(UnaryOperatorBox<Expr>),
    Undefined,
    Var(String),
}

Variants

Trait Implementations

impl Clone for Expr
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Expr
[src]

Formats the value using the given formatter. Read more

impl PartialEq for Expr
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Display for Expr
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Expr

impl Sync for Expr