[][src]Enum binjs_es6::ast::ExpressionOrSuper

pub enum ExpressionOrSuper {
    LazyFunctionExpression(Box<LazyFunctionExpression>),
    NewExpression(Box<NewExpression>),
    ComputedMemberExpression(Box<ComputedMemberExpression>),
    BinASTExpressionWithProbabilityTable(Box<BinASTExpressionWithProbabilityTable>),
    LiteralNumericExpression(Box<LiteralNumericExpression>),
    Super(Box<Super>),
    LiteralStringExpression(Box<LiteralStringExpression>),
    ClassExpression(Box<ClassExpression>),
    AssignmentExpression(Box<AssignmentExpression>),
    CompoundAssignmentExpression(Box<CompoundAssignmentExpression>),
    UnaryExpression(Box<UnaryExpression>),
    LiteralNullExpression(Box<LiteralNullExpression>),
    NewTargetExpression(Box<NewTargetExpression>),
    ThisExpression(Box<ThisExpression>),
    LiteralBooleanExpression(Box<LiteralBooleanExpression>),
    EagerFunctionExpression(Box<EagerFunctionExpression>),
    YieldExpression(Box<YieldExpression>),
    TemplateExpression(Box<TemplateExpression>),
    LazyArrowExpressionWithExpression(Box<LazyArrowExpressionWithExpression>),
    LiteralInfinityExpression(Box<LiteralInfinityExpression>),
    StaticMemberExpression(Box<StaticMemberExpression>),
    AwaitExpression(Box<AwaitExpression>),
    IdentifierExpression(Box<IdentifierExpression>),
    LazyArrowExpressionWithFunctionBody(Box<LazyArrowExpressionWithFunctionBody>),
    ConditionalExpression(Box<ConditionalExpression>),
    CallExpression(Box<CallExpression>),
    EagerArrowExpressionWithFunctionBody(Box<EagerArrowExpressionWithFunctionBody>),
    YieldStarExpression(Box<YieldStarExpression>),
    UpdateExpression(Box<UpdateExpression>),
    ObjectExpression(Box<ObjectExpression>),
    ArrayExpression(Box<ArrayExpression>),
    EagerArrowExpressionWithExpression(Box<EagerArrowExpressionWithExpression>),
    BinaryExpression(Box<BinaryExpression>),
    LiteralRegExpExpression(Box<LiteralRegExpExpression>),
    BinASTStolen,
}

Implementation of interface sum ExpressionOrSuper

Variants

LazyFunctionExpression(Box<LazyFunctionExpression>)
NewExpression(Box<NewExpression>)
ComputedMemberExpression(Box<ComputedMemberExpression>)
BinASTExpressionWithProbabilityTable(Box<BinASTExpressionWithProbabilityTable>)
LiteralNumericExpression(Box<LiteralNumericExpression>)
Super(Box<Super>)
LiteralStringExpression(Box<LiteralStringExpression>)
ClassExpression(Box<ClassExpression>)
AssignmentExpression(Box<AssignmentExpression>)
CompoundAssignmentExpression(Box<CompoundAssignmentExpression>)
UnaryExpression(Box<UnaryExpression>)
LiteralNullExpression(Box<LiteralNullExpression>)
NewTargetExpression(Box<NewTargetExpression>)
ThisExpression(Box<ThisExpression>)
LiteralBooleanExpression(Box<LiteralBooleanExpression>)
EagerFunctionExpression(Box<EagerFunctionExpression>)
YieldExpression(Box<YieldExpression>)
TemplateExpression(Box<TemplateExpression>)
LazyArrowExpressionWithExpression(Box<LazyArrowExpressionWithExpression>)
LiteralInfinityExpression(Box<LiteralInfinityExpression>)
StaticMemberExpression(Box<StaticMemberExpression>)
AwaitExpression(Box<AwaitExpression>)
IdentifierExpression(Box<IdentifierExpression>)
LazyArrowExpressionWithFunctionBody(Box<LazyArrowExpressionWithFunctionBody>)
ConditionalExpression(Box<ConditionalExpression>)
CallExpression(Box<CallExpression>)
EagerArrowExpressionWithFunctionBody(Box<EagerArrowExpressionWithFunctionBody>)
YieldStarExpression(Box<YieldStarExpression>)
UpdateExpression(Box<UpdateExpression>)
ObjectExpression(Box<ObjectExpression>)
ArrayExpression(Box<ArrayExpression>)
EagerArrowExpressionWithExpression(Box<EagerArrowExpressionWithExpression>)
BinaryExpression(Box<BinaryExpression>)
LiteralRegExpExpression(Box<LiteralRegExpExpression>)
BinASTStolen

An additional value used to mark that the node was stolen by a call to steal().

Trait Implementations

impl Clone for ExpressionOrSuper[src]

impl Debug for ExpressionOrSuper[src]

impl Default for ExpressionOrSuper[src]

impl<R> Deserialization<ExpressionOrSuper> for Deserializer<R> where
    R: TokenReader
[src]

impl<'de> Deserialize<'de> for ExpressionOrSuper[src]

impl<'a> From<&'a mut ExpressionOrSuper> for ViewMutExpressionOrSuper<'a>[src]

impl From<ArrayExpression> for ExpressionOrSuper[src]

impl From<AssignmentExpression> for ExpressionOrSuper[src]

impl From<AwaitExpression> for ExpressionOrSuper[src]

impl From<BinASTExpressionWithProbabilityTable> for ExpressionOrSuper[src]

impl From<BinaryExpression> for ExpressionOrSuper[src]

impl From<CallExpression> for ExpressionOrSuper[src]

impl From<ClassExpression> for ExpressionOrSuper[src]

impl From<CompoundAssignmentExpression> for ExpressionOrSuper[src]

impl From<ComputedMemberExpression> for ExpressionOrSuper[src]

impl From<ConditionalExpression> for ExpressionOrSuper[src]

impl From<EagerArrowExpressionWithExpression> for ExpressionOrSuper[src]

impl From<EagerArrowExpressionWithFunctionBody> for ExpressionOrSuper[src]

impl From<EagerFunctionExpression> for ExpressionOrSuper[src]

impl From<Expression> for ExpressionOrSuper[src]

Convert an instance of an enum into an instance of a larger enum.

impl From<IdentifierExpression> for ExpressionOrSuper[src]

impl From<LazyArrowExpressionWithExpression> for ExpressionOrSuper[src]

impl From<LazyArrowExpressionWithFunctionBody> for ExpressionOrSuper[src]

impl From<LazyFunctionExpression> for ExpressionOrSuper[src]

impl From<LiteralBooleanExpression> for ExpressionOrSuper[src]

impl From<LiteralInfinityExpression> for ExpressionOrSuper[src]

impl From<LiteralNullExpression> for ExpressionOrSuper[src]

impl From<LiteralNumericExpression> for ExpressionOrSuper[src]

impl From<LiteralRegExpExpression> for ExpressionOrSuper[src]

impl From<LiteralStringExpression> for ExpressionOrSuper[src]

impl From<NewExpression> for ExpressionOrSuper[src]

impl From<NewTargetExpression> for ExpressionOrSuper[src]

impl From<ObjectExpression> for ExpressionOrSuper[src]

impl From<StaticMemberExpression> for ExpressionOrSuper[src]

impl From<Super> for ExpressionOrSuper[src]

impl From<TemplateExpression> for ExpressionOrSuper[src]

impl From<ThisExpression> for ExpressionOrSuper[src]

impl From<UnaryExpression> for ExpressionOrSuper[src]

impl From<UpdateExpression> for ExpressionOrSuper[src]

impl From<YieldExpression> for ExpressionOrSuper[src]

impl From<YieldStarExpression> for ExpressionOrSuper[src]

impl PartialEq<ExpressionOrSuper> for ExpressionOrSuper[src]

impl<W> Serialization<ExpressionOrSuper> for Serializer<W> where
    W: TokenWriter
[src]

impl Serialize for ExpressionOrSuper[src]

impl StructuralPartialEq for ExpressionOrSuper[src]

impl<'a> Walker<'a> for ExpressionOrSuper[src]

type Output = ExpressionOrSuper

Auto Trait Implementations

impl !RefUnwindSafe for ExpressionOrSuper

impl !Send for ExpressionOrSuper

impl !Sync for ExpressionOrSuper

impl Unpin for ExpressionOrSuper

impl UnwindSafe for ExpressionOrSuper

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Downcast for T where
    T: Any
[src]

impl<T> DowncastSync for T where
    T: Send + Sync + Any
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]