Struct swc::Compiler[][src]

pub struct Compiler {
    pub cm: Arc<SourceMap>,
    pub handler: Arc<Handler>,
    // some fields omitted
}

Fields

cm: Arc<SourceMap>

CodeMap

handler: Arc<Handler>

Implementations

impl Compiler[src]

These are low-level apis.

pub fn globals(&self) -> &Globals[src]

pub fn comments(&self) -> &SwcComments[src]

pub fn run<R, F>(&self, op: F) -> R where
    F: FnOnce() -> R, 
[src]

Runs op in current compiler’s context.

Note: Other methods of Compiler already uses this internally.

pub fn parse_js(
    &self,
    fm: Arc<SourceFile>,
    target: JscTarget,
    syntax: Syntax,
    is_module: bool,
    parse_comments: bool
) -> Result<Program, Error>
[src]

This method parses a javascript / typescript file

pub fn print<T>(
    &self,
    node: &T,
    target: JscTarget,
    source_map: SourceMapsConfig,
    orig: Option<&SourceMap>,
    minify: bool
) -> Result<TransformOutput, Error> where
    T: Node
[src]

impl Compiler[src]

High-level apis.

pub fn new(cm: Arc<SourceMap>, handler: Arc<Handler>) -> Self[src]

pub fn read_config(
    &self,
    opts: &Options,
    name: &FileName
) -> Result<Option<Config>, Error>
[src]

pub fn config_for_file<'a>(
    &'a self,
    opts: &Options,
    name: &FileName
) -> Result<Option<BuiltConfig<impl 'a + Fold>>, Error>
[src]

This method returns None if a file should be skipped.

This method handles merging of config.

This method does not parse module.

pub fn run_transform<F, Ret>(&self, external_helpers: bool, op: F) -> Ret where
    F: FnOnce() -> Ret, 
[src]

pub fn transform(
    &self,
    program: Program,
    external_helpers: bool,
    pass: impl Fold
) -> Program
[src]

pub fn process_js_with_custom_pass<P>(
    &self,
    fm: Arc<SourceFile>,
    opts: &Options,
    custom_after_pass: P
) -> Result<TransformOutput, Error> where
    P: Fold
[src]

custom_after_pass is applied after swc transforms are applied.

pub fn process_js_file(
    &self,
    fm: Arc<SourceFile>,
    opts: &Options
) -> Result<TransformOutput, Error>
[src]

pub fn process_js(
    &self,
    program: Program,
    opts: &Options
) -> Result<TransformOutput, Error>
[src]

You can use custom pass with this method.

There exists a PassBuilder to help building custom passes.

Auto Trait Implementations

impl !RefUnwindSafe for Compiler

impl Send for Compiler

impl Sync for Compiler

impl Unpin for Compiler

impl !UnwindSafe for Compiler

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> Erased for T

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.