[][src]Struct swc_ecma_parser::Parser

pub struct Parser<'a, I: Input> { /* fields omitted */ }

EcmaScript parser.

Methods

impl<'a, I: Input> Parser<'a, I>
[src]

pub fn parse_expr(&mut self) -> PResult<'a, Box<Expr>>
[src]

impl<'a, I: Input> Parser<'a, I>
[src]

pub fn parse_stmt(&mut self, top_level: bool) -> PResult<'a, Stmt>
[src]

impl<'a, I: Input> Parser<'a, I>
[src]

pub fn new(session: Session<'a>, syntax: Syntax, input: I) -> Self
[src]

pub fn parse_script(&mut self) -> PResult<'a, Vec<Stmt>>
[src]

pub fn parse_module(&mut self) -> PResult<'a, Module>
[src]

Trait Implementations

impl<'a, I: Clone + Input> Clone for Parser<'a, I>
[src]

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

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl<'a, I> Send for Parser<'a, I> where
    I: Send

impl<'a, I> Sync for Parser<'a, I> where
    I: Sync

Blanket Implementations

impl<T> From for T
[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

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, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Erased for T