pub struct Parser<I: Tokens> { /* private fields */ }
Expand description
EcmaScript parser.
Implementations§
Source§impl<'a, I: Tokens> Parser<I>
impl<'a, I: Tokens> Parser<I>
pub fn parse_module_item(&mut self) -> PResult<ModuleItem>
Sourcepub fn parse_stmt(&mut self, top_level: bool) -> PResult<Stmt>
pub fn parse_stmt(&mut self, top_level: bool) -> PResult<Stmt>
Parse a statement but not a declaration.
Sourcepub fn parse_stmt_list_item(&mut self, top_level: bool) -> PResult<Stmt>
pub fn parse_stmt_list_item(&mut self, top_level: bool) -> PResult<Stmt>
Parse a statement and maybe a declaration.
Source§impl<I: Tokens> Parser<I>
impl<I: Tokens> Parser<I>
pub fn parse_type(&mut self) -> PResult<Box<TsType>>
Sourcepub fn parse_ts_type_args(&mut self) -> PResult<Box<TsTypeParamInstantiation>>
pub fn parse_ts_type_args(&mut self) -> PResult<Box<TsTypeParamInstantiation>>
tsParseTypeArguments
Source§impl<I: Tokens> Parser<I>
impl<I: Tokens> Parser<I>
pub fn new_from(input: I) -> Self
pub fn take_errors(&mut self) -> Vec<Error>
pub fn take_script_module_errors(&mut self) -> Vec<Error>
pub fn parse_script(&mut self) -> PResult<Script>
pub fn parse_typescript_module(&mut self) -> PResult<Module>
Sourcepub fn parse_program(&mut self) -> PResult<Program>
pub fn parse_program(&mut self) -> PResult<Program>
pub fn parse_module(&mut self) -> PResult<Module>
Trait Implementations§
Auto Trait Implementations§
impl<I> Freeze for Parser<I>where
I: Freeze,
impl<I> RefUnwindSafe for Parser<I>where
I: RefUnwindSafe,
impl<I> Send for Parser<I>where
I: Send,
impl<I> Sync for Parser<I>where
I: Sync,
impl<I> Unpin for Parser<I>where
I: Unpin,
impl<I> UnwindSafe for Parser<I>where
I: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more