mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-06 02:08:49 +00:00
6 lines
125 B
Rust
6 lines
125 B
Rust
|
use crate::{mbe, tt};
|
||
|
|
||
|
pub fn exapnd(rules: &mbe::MacroRules, input: tt::Subtree) -> Option<tt::Subtree> {
|
||
|
Some(input)
|
||
|
}
|