#quote #macro #proc-macro #expressions #interpolation #syntax #compatible

quasiquote

quote compatible quasiquote macro with support for interpolating expressions

3 unstable releases

0.1.1 Jun 5, 2024
0.1.0 Jun 5, 2024
0.0.1 May 23, 2023
0.0.0 May 2, 2023

#140 in Procedural macros

Download history 1/week @ 2024-07-22 19/week @ 2024-07-29 1/week @ 2024-08-05 8/week @ 2024-08-12 6/week @ 2024-08-19 21/week @ 2024-08-26 3/week @ 2024-09-09 21/week @ 2024-09-16 35/week @ 2024-09-23 24/week @ 2024-09-30 8/week @ 2024-10-07 19/week @ 2024-10-14 21/week @ 2024-10-21 14/week @ 2024-10-28 25/week @ 2024-11-04

81 downloads per month
Used in 11 crates (6 directly)

GPL-3.0-or-later

18KB

Provides a wrapper around quote! that allows interpolating arbitrary expressions.

Expected syntax is identical to what's used for quote!, except that a new interpolation pattern is allowed.

Examples

With quote:

use quote::quote;
use proc_macro2::TokenStream;
use syn::{Field, Member};

pub fn expand_getter(field: &Field) -> TokenStream {
    let ident = &field.ident;
    let member = Member::Named(ident.as_ref().cloned().unwrap());
    let ty = &field.ty;
    quote! {
        pub fn #ident(&self) -> #ty {
            &self.#member
        }
    }
}

With quasiquote:

use quasiquote::quasiquote;
use proc_macro2::TokenStream;
use syn::{Field, Member};

pub fn expand_getter(field: &Field) -> TokenStream {
    let member = Member::Named(field.ident.as_ref().cloned().unwrap());
    quasiquote! {
        pub fn #{&field.ident}(&self) -> #{&field.ty} {
            &self.#member
        }
    }
}

Not yet implemented

  • interpolation of expressions inside of repetitions

Dependencies

~505KB