concision-macros 0.3.1

custom macros for the concision framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
    appellation: node <module>
    authors: @FL03
*/
use crate::ast::ConfigAst;
use proc_macro2::TokenStream;
use quote::quote;

/// this method defines the logic enabling the `model_config!` procedural macro.
/// it takes a `ConfigBlock` and generates the necessary code to define the model configuration
pub fn impl_model_config(_config: ConfigAst) -> TokenStream {
    // generate the output code
    quote! {}
}