File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 11[package ]
22name = " ungrammar"
33description = " A DSL for describing concrete syntax trees"
4- version = " 1.9.2 "
4+ version = " 1.9.3 "
55license = " MIT OR Apache-2.0"
66repository = " https://github.com/matklad/ungrammar"
77authors = [" Aleksey Kladov <aleksey.kladov@gmail.com>" ]
Original file line number Diff line number Diff line change @@ -251,7 +251,7 @@ AssocItem =
251251Impl =
252252 Attr* Visibility?
253253 'default'? 'unsafe'?
254- 'impl' 'const'? GenericParamList? ( '!'? trait:Type 'for')? self_ty:Type WhereClause?
254+ 'impl' GenericParamList? ( 'const'? '!'? trait:Type 'for')? self_ty:Type WhereClause?
255255 AssocItemList
256256
257257ExternBlock =
@@ -418,7 +418,7 @@ RecordExprFieldList =
418418 '}'
419419
420420RecordExprField =
421- Attr* NameRef ( ':' Expr)?
421+ Attr* ( NameRef ':')? Expr
422422
423423CallExpr =
424424 Attr* Expr ArgList
You can’t perform that action at this time.
0 commit comments