aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_macros/src/mbe_expander.rs
blob: 42622965951ff7e52a751377e9876a4ec1c23cdd (plain)
1
2
3
4
5
use crate::{mbe, tt};

pub fn exapnd(rules: &mbe::MacroRules, input: tt::Subtree) -> Option<tt::Subtree> {
    Some(input)
}