Macro swc_ecma_quote::quote

source ·
macro_rules! quote {
    ($($tt:tt)*) => { ... };
}
Expand description

§Supported output types

  • Expr

  • Pat

  • AssignTarget

  • Stmt

  • ModuleItem

  • Option where T is supported type

  • Box where T is supported type

For example, Box<Expr> and Option<Box<Expr>> are supported.

§Variable substitution

If an identifier starts with $, it is substituted with the value of the parameter passed.

e.g.

use swc_common::DUMMY_SP;
use swc_ecma_ast::Ident;
use swc_ecma_quote::quote;

// This will return ast for `const ref = 4;`
let _stmt = quote!("const $name = 4;" as Stmt, name = Ident::new("ref".into(), DUMMY_SP));

// Tip: Use private_ident!("ref") for real identifiers.

§Typed variables

As this macro generates static AST, it can’t substitute variables if an identifier is not allowed in such position. In other words, this macro only supports substituting

You can use it like

use swc_common::DUMMY_SP;
use swc_ecma_ast::Ident;
use swc_ecma_quote::quote;

// This will return ast for `const ref = 4;`
let _stmt = quote!(
                "const $name = $val;" as Stmt,
                name = Ident::new("ref".into(), DUMMY_SP),
                val: Expr = 4.into(),
            );

§Examples

§Quote a variable declaration

use swc_common::DUMMY_SP;
use swc_ecma_ast::Ident;
use swc_ecma_quote::quote;

// This will return ast for `const ref = 4;`
let _stmt = quote!("const $name = 4;" as Stmt, name =
Ident::new("ref".into(), DUMMY_SP));

// Tip: Use private_ident!("ref") for real identifiers.

§Using Str

The grammar is "$var_name".

use swc_common::DUMMY_SP;
use swc_ecma_ast::Str;
use swc_ecma_quote::quote;

// This will return ast for `import thing from "foo";`
let _stmt = quote!(
                "import thing from \"$thing\";" as ModuleItem,
                thing: Str = "foo".into(),
            );