Unnamed repository; edit this file 'description' to name the repository.
Merge rust-analyzer/ungrammar#28
28: Make ExternItem and AssocItem use MacroItem r=jonas-schievink a=jonas-schievink bors r+ Co-authored-by: Jonas Schievink <[email protected]>
bors[bot] 2021-02-19
parent 2487820 · parent 801f8e6 · commit 49b21c2
-rw-r--r--lib/ungrammar/Cargo.toml2
-rw-r--r--lib/ungrammar/rust.ungram4
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/ungrammar/Cargo.toml b/lib/ungrammar/Cargo.toml
index b983cb414a..ec3b5dd7a5 100644
--- a/lib/ungrammar/Cargo.toml
+++ b/lib/ungrammar/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "ungrammar"
description = "A DSL for describing concrete syntax trees"
-version = "1.12.0"
+version = "1.12.1"
license = "MIT OR Apache-2.0"
repository = "https://github.com/matklad/ungrammar"
authors = ["Aleksey Kladov <[email protected]>"]
diff --git a/lib/ungrammar/rust.ungram b/lib/ungrammar/rust.ungram
index 9a332398b2..4dbf43c7bd 100644
--- a/lib/ungrammar/rust.ungram
+++ b/lib/ungrammar/rust.ungram
@@ -251,7 +251,7 @@ AssocItemList =
AssocItem =
Const
| Fn
-| MacroCall
+| MacroItem
| TypeAlias
Impl =
@@ -268,7 +268,7 @@ ExternItemList =
ExternItem =
Fn
-| MacroCall
+| MacroItem
| Static
| TypeAlias