diff options
author | Lenard Pratt <[email protected]> | 2019-04-15 11:01:29 +0100 |
---|---|---|
committer | Lenard Pratt <[email protected]> | 2019-04-22 21:35:44 +0100 |
commit | ce211434a6501e88cb83462f2443db085f1557d3 (patch) | |
tree | 2b0b2118fa38046d7b527ea1ea81d1c01a9a8207 /crates/ra_parser | |
parent | afaeb18910414166801e3ca51272cfa3661175a4 (diff) |
Added macro resolution and expansion
Diffstat (limited to 'crates/ra_parser')
-rw-r--r-- | crates/ra_parser/src/grammar/Untitled-1.rs | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/crates/ra_parser/src/grammar/Untitled-1.rs b/crates/ra_parser/src/grammar/Untitled-1.rs deleted file mode 100644 index 2106872c8..000000000 --- a/crates/ra_parser/src/grammar/Untitled-1.rs +++ /dev/null | |||
@@ -1,13 +0,0 @@ | |||
1 | macro_rules! vec { | ||
2 | ($($item:expr),*) => | ||
3 | { | ||
4 | { | ||
5 | let mut v = Vec::new(); | ||
6 | $( | ||
7 | v.push($item); | ||
8 | )* | ||
9 | v | ||
10 | } | ||
11 | }; | ||
12 | } | ||
13 | |||