We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 43354a5 + d9d0ed2 commit a8c9fa5Copy full SHA for a8c9fa5
src/tools/rust-analyzer/lib/ungrammar/Cargo.toml
@@ -1,7 +1,7 @@
1
[package]
2
name = "ungrammar"
3
description = "A DSL for describing concrete syntax trees"
4
-version = "1.1.3"
+version = "1.1.4"
5
license = "MIT OR Apache-2.0"
6
repository = "https://github.com/matklad/ungrammar"
7
authors = ["Aleksey Kladov <aleksey.kladov@gmail.com>"]
src/tools/rust-analyzer/lib/ungrammar/rust.ungram
@@ -125,7 +125,7 @@ UseTreeList =
125
126
Fn =
127
Attr* Visibility?
128
- 'default'? ('async' | 'const')? 'unsafe'? Abi?
+ 'default'? 'const'? 'async'? 'unsafe'? Abi?
129
'fn' Name GenericParamList? ParamList RetType? WhereClause?
130
(body:BlockExpr | ';')
131
0 commit comments