[][src]Enum swc_ecma_parser::Syntax

pub enum Syntax {
    Es(EsConfig),
    Typescript(TsConfig),
}

Variants

Es(EsConfig)

Standard

Typescript(TsConfig)

Methods

impl Syntax[src]

pub fn jsx(self) -> bool[src]

Should we pare jsx?

pub fn dynamic_import(self) -> bool[src]

pub fn fn_bind(self) -> bool[src]

pub fn num_sep(self) -> bool[src]

pub fn decorators(self) -> bool[src]

pub fn class_private_methods(self) -> bool[src]

pub fn class_private_props(self) -> bool[src]

pub fn class_props(self) -> bool[src]

pub fn decorators_before_export(self) -> bool[src]

pub fn typescript(self) -> bool[src]

Should we pare typescript?

pub fn export_default_from(self) -> bool[src]

pub fn export_namespace_from(self) -> bool[src]

Trait Implementations

impl Default for Syntax[src]

impl Copy for Syntax[src]

impl Clone for Syntax[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Serialize for Syntax[src]

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

Auto Trait Implementations

impl Send for Syntax

impl Sync for Syntax

Blanket Implementations

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

impl<T> From for T[src]

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto 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<T> Borrow for T where
    T: ?Sized
[src]

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

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

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

impl<T> Erased for T