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.
1 parent 5846451 commit d0d1fc0Copy full SHA for d0d1fc0
Cargo.toml
@@ -1,7 +1,7 @@
1
[package]
2
name = "ungrammar"
3
description = "A DSL for describing concrete syntax trees"
4
-version = "1.10.0"
+version = "1.11.0"
5
license = "MIT OR Apache-2.0"
6
repository = "https://github.com/matklad/ungrammar"
7
authors = ["Aleksey Kladov <aleksey.kladov@gmail.com>"]
rust.ungram
@@ -217,7 +217,10 @@ Union =
217
'union' Name GenericParamList? WhereClause?
218
RecordFieldList
219
220
-AdtDef =
+// A Data Type.
221
+//
222
+// Not used directly in the grammar, but handy to have anyway.
223
+Adt =
224
Enum
225
| Struct
226
| Union
0 commit comments