rsdiff-macros 0.0.2

the crate implements custom macros for rsdiff
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
    Appellation: handle <module>
    Contrib: FL03 <jo3mccain@icloud.com>
*/
//! # Handles
//!
//!
//! This module contains the functions that handle the different types of syntax nodes.
//!
#[allow(unused_imports)]
pub use self::{block::handle_block, expr::handle_expr, item::handle_item, stmt::handle_stmt};

pub mod block;
pub mod expr;
pub mod item;
pub mod stmt;