Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove dead code | Aleksey Kladov | 2020-07-31 | 1 | -24/+0 |
| | |||||
* | Rename LambdaExpr -> ClosureExpr | Aleksey Kladov | 2020-07-31 | 1 | -21/+14 |
| | |||||
* | Work on expressions grammar | Aleksey Kladov | 2020-07-31 | 1 | -659/+669 |
| | |||||
* | Item is a Stmt | Aleksey Kladov | 2020-07-31 | 2 | -4/+10 |
| | |||||
* | Handwrite Stmt | Aleksey Kladov | 2020-07-31 | 2 | -25/+34 |
| | |||||
* | Move Stmt Grammar | Aleksey Kladov | 2020-07-31 | 1 | -84/+85 |
| | |||||
* | Finalize TypeBound grammar | Aleksey Kladov | 2020-07-31 | 2 | -47/+27 |
| | |||||
* | "Finalize" Types grammar | Aleksey Kladov | 2020-07-31 | 1 | -1/+3 |
| | | | | | | | Note that `for` type is rust-analyzer's own invention. Both the reference and syn allow `for` only for fnptr types, and we allow them everywhere. This needs to be checked with respect to type bounds grammar... | ||||
* | Reame PlaceholderType -> InferType | Aleksey Kladov | 2020-07-31 | 1 | -11/+11 |
| | |||||
* | Rename TypeRef -> Type | Aleksey Kladov | 2020-07-31 | 3 | -135/+135 |
| | | | | | | | | | | The TypeRef name comes from IntelliJ days, where you often have both type *syntax* as well as *semantical* representation of types in scope. And naming both Type is confusing. In rust-analyzer however, we use ast types as `ast::Type`, and have many more semantic counterparts to ast types, so avoiding name clash here is just confusing. | ||||
* | Merge #5610 | bors[bot] | 2020-07-30 | 1 | -2/+1 |
|\ | | | | | | | | | | | | | | | 5610: Bump deps r=flodiebold a=lnicola Co-authored-by: Laurențiu Nicola <[email protected]> | ||||
| * | Fix typo | Laurențiu Nicola | 2020-07-30 | 1 | -2/+1 |
| | | |||||
| * | Rename UseItem -> Use | Aleksey Kladov | 2020-07-30 | 3 | -17/+18 |
| | | |||||
| * | Add comma list to use tree | Aleksey Kladov | 2020-07-30 | 1 | -77/+78 |
| | | |||||
* | | Use ty to access most TypeRefs | Aleksey Kladov | 2020-07-30 | 1 | -10/+10 |
| | | |||||
* | | Remove TypeAscriptionOwner | Aleksey Kladov | 2020-07-30 | 2 | -13/+7 |
| | | |||||
* | | simplify | Aleksey Kladov | 2020-07-30 | 1 | -18/+18 |
| | | |||||
* | | Finalize attribute grammar | Aleksey Kladov | 2020-07-30 | 2 | -56/+13 |
| | | |||||
* | | Dead code | Aleksey Kladov | 2020-07-30 | 1 | -102/+76 |
| | | |||||
* | | Introduce GenericParam | Aleksey Kladov | 2020-07-30 | 2 | -85/+149 |
| | | |||||
* | | Finaize item grammar | Aleksey Kladov | 2020-07-30 | 1 | -64/+71 |
| | | |||||
* | | Finalize impl Grammar | Aleksey Kladov | 2020-07-30 | 2 | -17/+18 |
| | | |||||
* | | Finalize Trait grammar | Aleksey Kladov | 2020-07-30 | 2 | -17/+17 |
| | | |||||
* | | Finalize const&static grammar | Aleksey Kladov | 2020-07-30 | 2 | -44/+45 |
| | | |||||
* | | Rename EnumVariant -> Variant | Aleksey Kladov | 2020-07-30 | 2 | -17/+17 |
| | | |||||
* | | Rename EnumDef -> Enum | Aleksey Kladov | 2020-07-30 | 2 | -24/+24 |
| | | |||||
* | | Rename StructDef -> Struct | Aleksey Kladov | 2020-07-30 | 2 | -23/+23 |
| | | |||||
* | | Finalize union grammar | Aleksey Kladov | 2020-07-30 | 2 | -22/+22 |
| | | |||||
* | | Finalize structs grammar | Aleksey Kladov | 2020-07-30 | 1 | -1/+0 |
| | | |||||
* | | Rename FieldDef -> Field | Aleksey Kladov | 2020-07-30 | 3 | -57/+53 |
| | | |||||
* | | Rename RecordLit -> RecordExpr | Aleksey Kladov | 2020-07-30 | 5 | -38/+40 |
| | | |||||
* | | Rename TypeParamList -> GenericParamList | Aleksey Kladov | 2020-07-30 | 3 | -18/+18 |
| | | |||||
* | | Rename TypeAliasDef -> TypeAlias | Aleksey Kladov | 2020-07-30 | 3 | -50/+48 |
| | | |||||
* | | Rename FnDef -> Fn | Aleksey Kladov | 2020-07-30 | 5 | -211/+214 |
| | | |||||
* | | Rename UseItem -> Use | Aleksey Kladov | 2020-07-30 | 3 | -17/+18 |
| | | |||||
* | | Add comma list to use tree | Aleksey Kladov | 2020-07-30 | 1 | -77/+78 |
|/ | |||||
* | Finish extern crates grammar | Aleksey Kladov | 2020-07-30 | 1 | -62/+62 |
| | |||||
* | Update tests | Aleksey Kladov | 2020-07-30 | 1 | -2/+6 |
| | |||||
* | Rename Rename | Aleksey Kladov | 2020-07-30 | 3 | -10/+10 |
| | |||||
* | Finish Module grammar | Aleksey Kladov | 2020-07-30 | 1 | -0/+1 |
| | |||||
* | Split ItemList & AssocItemList | Aleksey Kladov | 2020-07-30 | 2 | -24/+56 |
| | |||||
* | Finish SourceFile grammar | Aleksey Kladov | 2020-07-29 | 1 | -1/+3 |
| | |||||
* | Rename ModuleItem -> Item | Aleksey Kladov | 2020-07-29 | 2 | -385/+385 |
| | |||||
* | Rename NomialDef -> AdtDef | Aleksey Kladov | 2020-07-29 | 1 | -19/+19 |
| | |||||
* | Switch to ungrammar from ast_src | Aleksey Kladov | 2020-07-29 | 3 | -2204/+824 |
| | | | | | | | | | | | | | | | | | | 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 | ||||
* | Dead code | Aleksey Kladov | 2020-07-29 | 1 | -41/+0 |
| | |||||
* | Remove dead code | Aleksey Kladov | 2020-07-29 | 1 | -3/+1 |
| | |||||
* | Remove dead code | Aleksey Kladov | 2020-07-29 | 1 | -46/+0 |
| | |||||
* | Rename modules | Aleksey Kladov | 2020-07-23 | 3 | -1/+2 |
| | |||||
* | Move remove_bounds to edit.rs | Jonas Schievink | 2020-07-14 | 2 | -13/+15 |
| |