File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
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.7 .0"
4+ version = " 1.8 .0"
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 2424 'ident'
2525
2626NameRef =
27- 'ident' | 'int_number'
27+ 'ident' | 'int_number' | 'self' | 'super' | 'crate'
2828
2929Lifetime =
3030 'lifetime_ident'
3333 (qualifier:Path '::')? segment:PathSegment
3434
3535PathSegment =
36- 'crate' | 'self' | 'super'
37- | '::'? NameRef
36+ '::'? NameRef
3837| NameRef GenericArgList?
3938| NameRef ParamList RetType?
4039| '<' PathType ('as' PathType)? '>'
You can’t perform that action at this time.
0 commit comments