Struct swc_ecma_parser::Parser

source ·
pub struct Parser<I: Tokens> { /* private fields */ }
Expand description

EcmaScript parser.

Implementations§

source§

impl<I: Tokens> Parser<I>

source

pub fn parse_expr(&mut self) -> PResult<Box<Expr>>

source§

impl<I: Tokens> Parser<I>

source

pub fn input(&mut self) -> &mut I

source§

impl<I: Tokens> Parser<I>

source

pub fn parse_pat(&mut self) -> PResult<Pat>

source§

impl<'a, I: Tokens> Parser<I>

source

pub fn parse_module_item(&mut self) -> PResult<ModuleItem>

source

pub fn parse_stmt(&mut self, top_level: bool) -> PResult<Stmt>

Parse a statement but not a declaration.

source

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>

source

pub fn parse_type(&mut self) -> PResult<Box<TsType>>

source

pub fn parse_ts_type_args(&mut self) -> PResult<Box<TsTypeParamInstantiation>>

tsParseTypeArguments

source§

impl<'a> Parser<Lexer<'a>>

source

pub fn new( syntax: Syntax, input: StringInput<'a>, comments: Option<&'a dyn Comments> ) -> Self

source§

impl<I: Tokens> Parser<I>

source

pub fn new_from(input: I) -> Self

source

pub fn take_errors(&mut self) -> Vec<Error>

source

pub fn parse_script(&mut self) -> PResult<Script>

source

pub fn parse_typescript_module(&mut self) -> PResult<Module>

source

pub fn parse_program(&mut self) -> PResult<Program>

Returns Module if it’s a module and returns Script if it’s not a module.

Note: This is not perfect yet. It means, some strict mode violations may not be reported even if the method returns Module.

source

pub fn parse_module(&mut self) -> PResult<Module>

Trait Implementations§

source§

impl<I: Clone + Tokens> Clone for Parser<I>

source§

fn clone(&self) -> Parser<I>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more

Auto Trait Implementations§

§

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> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> ArchivePointee for T

§

type ArchivedMetadata = ()

The archived version of the pointer metadata for this type.
source§

fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata ) -> <T as Pointee>::Metadata

Converts some archived metadata to the pointer metadata for itself.
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<F, W, T, D> Deserialize<With<T, W>, D> for Fwhere W: DeserializeWith<F, T, D>, D: Fallible + ?Sized, F: ?Sized,

source§

fn deserialize( &self, deserializer: &mut D ) -> Result<With<T, W>, <D as Fallible>::Error>

Deserializes using the given deserializer
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> LayoutRaw for T

source§

fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>

Gets the layout of the type.
source§

impl<T> Pointable for T

source§

const ALIGN: usize = mem::align_of::<T>()

The alignment of pointer.
§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Pointee for T

§

type Metadata = ()

The type for metadata in pointers and references to Self.
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more