Enum ecmascript::ast::ReferenceError[][src]

pub enum ReferenceError {
    InvalidLeftHandSide,
}

ReferenceError represents a failure when trying to convert an expression into a pattern.

Variants

This represents an error when you are trying to assign an expression to the lhs that can't be assigned to. (eg. 1 = 1)

Trait Implementations

impl Debug for ReferenceError
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations