Trait swc_ecma_utils::ExprFactory

source ·
pub trait ExprFactory: Into<Box<Expr>> {
Show 21 methods // Provided methods fn as_arg(self) -> ExprOrSpread { ... } fn into_stmt(self) -> Stmt { ... } fn into_return_stmt(self) -> ReturnStmt { ... } fn as_callee(self) -> Callee { ... } fn as_iife(self) -> CallExpr { ... } fn into_lazy_arrow(self, params: Vec<Pat>) -> ArrowExpr { ... } fn into_lazy_fn(self, params: Vec<Param>) -> Function { ... } fn into_lazy_auto(self, params: Vec<Pat>, support_arrow: bool) -> Expr { ... } fn into_var_decl(self, kind: VarDeclKind, name: Pat) -> VarDecl { ... } fn into_new_expr( self, span: Span, args: Option<Vec<ExprOrSpread>> ) -> NewExpr { ... } fn apply(self, span: Span, this: Box<Expr>, args: Vec<ExprOrSpread>) -> Expr { ... } fn call_fn(self, span: Span, args: Vec<ExprOrSpread>) -> Expr { ... } fn as_call(self, span: Span, args: Vec<ExprOrSpread>) -> Expr { ... } fn as_fn_decl(self) -> Option<FnDecl> { ... } fn as_class_decl(self) -> Option<ClassDecl> { ... } fn wrap_with_paren(self) -> Expr { ... } fn make_eq<T>(self, right: T) -> Expr where T: Into<Expr> { ... } fn make_bin<T>(self, op: BinaryOp, right: T) -> Expr where T: Into<Expr> { ... } fn make_assign_to(self, op: AssignOp, left: AssignTarget) -> Expr { ... } fn make_member<T>(self, prop: T) -> MemberExpr where T: Into<Ident> { ... } fn computed_member<T>(self, prop: T) -> MemberExpr where T: Into<Box<Expr>> { ... }
}
Expand description

Extension methods for [Expr].

Note that many types implements Into<Expr> and you can do like

use swc_ecma_utils::ExprFactory;

let _args = vec![0f64.as_arg()];

to create literals. Almost all rust core types implements Into<Expr>.

Provided Methods§

source

fn as_arg(self) -> ExprOrSpread

Creates an [ExprOrSpread] using the given [Expr].

This is recommended way to create [ExprOrSpread].

§Example
use swc_common::DUMMY_SP;
use swc_ecma_ast::*;
use swc_ecma_utils::ExprFactory;

let first = Lit::Num(Number {
    span: DUMMY_SP,
    value: 0.0,
    raw: None,
});
let _args = vec![first.as_arg()];
source

fn into_stmt(self) -> Stmt

Creates an expression statement with self.

source

fn into_return_stmt(self) -> ReturnStmt

Creates a statement whcih return self.

source

fn as_callee(self) -> Callee

source

fn as_iife(self) -> CallExpr

source

fn into_lazy_arrow(self, params: Vec<Pat>) -> ArrowExpr

create a ArrowExpr which return self

  • (params) => $self
source

fn into_lazy_fn(self, params: Vec<Param>) -> Function

create a Function which return self

  • function(params) { return $self; }
source

fn into_lazy_auto(self, params: Vec<Pat>, support_arrow: bool) -> Expr

source

fn into_var_decl(self, kind: VarDeclKind, name: Pat) -> VarDecl

create a var declartor using self as init

  • var name = expr
source

fn into_new_expr(self, span: Span, args: Option<Vec<ExprOrSpread>>) -> NewExpr

source

fn apply(self, span: Span, this: Box<Expr>, args: Vec<ExprOrSpread>) -> Expr

source

fn call_fn(self, span: Span, args: Vec<ExprOrSpread>) -> Expr

source

fn as_call(self, span: Span, args: Vec<ExprOrSpread>) -> Expr

source

fn as_fn_decl(self) -> Option<FnDecl>

source

fn as_class_decl(self) -> Option<ClassDecl>

source

fn wrap_with_paren(self) -> Expr

source

fn make_eq<T>(self, right: T) -> Expr
where T: Into<Expr>,

Creates a binary expr $self ===

source

fn make_bin<T>(self, op: BinaryOp, right: T) -> Expr
where T: Into<Expr>,

Creates a binary expr $self $op $rhs

source

fn make_assign_to(self, op: AssignOp, left: AssignTarget) -> Expr

Creates a assign expr $lhs $op $self

source

fn make_member<T>(self, prop: T) -> MemberExpr
where T: Into<Ident>,

source

fn computed_member<T>(self, prop: T) -> MemberExpr
where T: Into<Box<Expr>>,

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T: Into<Box<Expr>>> ExprFactory for T