Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Minor, reorder | Aleksey Kladov | 2020-07-30 | 1 | -4/+5 | |
| | ||||||
* | Rename TypeParamList -> GenericParamList | Aleksey Kladov | 2020-07-30 | 1 | -10/+10 | |
| | ||||||
* | Rename TypeAliasDef -> TypeAlias | Aleksey Kladov | 2020-07-30 | 1 | -6/+6 | |
| | ||||||
* | Rename FnDef -> Fn | Aleksey Kladov | 2020-07-30 | 1 | -19/+27 | |
| | ||||||
* | Rename UseItem -> Use | Aleksey Kladov | 2020-07-30 | 1 | -2/+2 | |
| | ||||||
* | Add comma list to use tree | Aleksey Kladov | 2020-07-30 | 1 | -12/+13 | |
| | ||||||
* | Finish extern crates grammar | Aleksey Kladov | 2020-07-30 | 1 | -4/+4 | |
| | ||||||
* | Rename Rename | Aleksey Kladov | 2020-07-30 | 1 | -3/+3 | |
| | ||||||
* | Finish Module grammar | Aleksey Kladov | 2020-07-30 | 1 | -1/+1 | |
| | ||||||
* | Split ItemList & AssocItemList | Aleksey Kladov | 2020-07-30 | 1 | -11/+12 | |
| | ||||||
* | Finish SourceFile grammar | Aleksey Kladov | 2020-07-29 | 1 | -0/+1 | |
| | ||||||
* | Rename ModuleItem -> Item | Aleksey Kladov | 2020-07-29 | 1 | -20/+20 | |
| | ||||||
* | Rename NomialDef -> AdtDef | Aleksey Kladov | 2020-07-29 | 1 | -1/+1 | |
| | ||||||
* | Switch to ungrammar from ast_src | Aleksey Kladov | 2020-07-29 | 1 | -0/+529 | |
The primary advantage of ungrammar is that it (eventually) allows one to describe concrete syntax tree structure -- with alternatives and specific sequence of tokens & nodes. That should be re-usable for: * generate `make` calls * Rust reference * Hypothetical parser's evented API We loose doc comments for the time being unfortunately. I don't think we should add support for doc comments to ungrammar -- they'll make grammar file hard to read. We might supply docs as out-of band info, or maybe just via a reference, but we'll think about that once things are no longer in flux |