mirror of
https://github.com/swc-project/swc.git
synced 2024-11-24 18:28:13 +03:00
30 lines
624 B
Rust
30 lines
624 B
Rust
use swc_common::DUMMY_SP;
|
|
use swc_ecma_ast::Ident;
|
|
use swc_ecma_quote::{quote, quote_expr};
|
|
use swc_ecma_utils::private_ident;
|
|
|
|
#[test]
|
|
fn quote_expr_call_1() {
|
|
let _expr = quote_expr!("call(arg1, typeof arg2, arg3)");
|
|
}
|
|
|
|
#[test]
|
|
fn quote_expr_var_cloned() {
|
|
testing::run_test2(false, |_cm, _handler| {
|
|
let id = private_ident!("_ref");
|
|
|
|
let _expr = quote_expr!("call($my_id, typeof arg2, $my_id)", my_id = id);
|
|
|
|
Ok(())
|
|
})
|
|
.unwrap();
|
|
}
|
|
|
|
#[test]
|
|
fn quote_example() {
|
|
let _stmt = quote!(
|
|
"const $name = 4;" as Stmt,
|
|
name = Ident::new("ref".into(), DUMMY_SP)
|
|
);
|
|
}
|