Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix GenericArgs grammar | Aleksey Kladov | 2020-07-31 | 1 | -19/+66 |
| | |||||
* | Rename TypeArgList -> GenericArgList | Aleksey Kladov | 2020-07-31 | 1 | -7/+7 |
| | |||||
* | Finalize Path grammar | Aleksey Kladov | 2020-07-31 | 1 | -446/+447 |
| | |||||
* | Minor | Aleksey Kladov | 2020-07-31 | 1 | -68/+62 |
| | |||||
* | 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 | 1 | -2/+4 |
| | |||||
* | Handwrite Stmt | Aleksey Kladov | 2020-07-31 | 1 | -22/+0 |
| | |||||
* | Move Stmt Grammar | Aleksey Kladov | 2020-07-31 | 1 | -84/+85 |
| | |||||
* | Finalize TypeBound grammar | Aleksey Kladov | 2020-07-31 | 1 | -27/+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 | 1 | -127/+127 |
| | | | | | | | | | | 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. | ||||
* | Use ty to access most TypeRefs | Aleksey Kladov | 2020-07-30 | 1 | -10/+10 |
| | |||||
* | Remove TypeAscriptionOwner | Aleksey Kladov | 2020-07-30 | 1 | -7/+7 |
| | |||||
* | simplify | Aleksey Kladov | 2020-07-30 | 1 | -18/+18 |
| | |||||
* | Finalize attribute grammar | Aleksey Kladov | 2020-07-30 | 1 | -39/+2 |
| | |||||
* | Dead code | Aleksey Kladov | 2020-07-30 | 1 | -102/+76 |
| | |||||
* | Introduce GenericParam | Aleksey Kladov | 2020-07-30 | 1 | -85/+128 |
| | |||||
* | Finaize item grammar | Aleksey Kladov | 2020-07-30 | 1 | -64/+71 |
| | |||||
* | Finalize impl Grammar | Aleksey Kladov | 2020-07-30 | 1 | -15/+16 |
| | |||||
* | Finalize Trait grammar | Aleksey Kladov | 2020-07-30 | 1 | -16/+16 |
| | |||||
* | Finalize const&static grammar | Aleksey Kladov | 2020-07-30 | 1 | -42/+43 |
| | |||||
* | Rename EnumVariant -> Variant | Aleksey Kladov | 2020-07-30 | 1 | -15/+15 |
| | |||||
* | Rename EnumDef -> Enum | Aleksey Kladov | 2020-07-30 | 1 | -21/+21 |
| | |||||
* | Rename StructDef -> Struct | Aleksey Kladov | 2020-07-30 | 1 | -21/+21 |
| | |||||
* | Finalize union grammar | Aleksey Kladov | 2020-07-30 | 1 | -21/+21 |
| | |||||
* | Finalize structs grammar | Aleksey Kladov | 2020-07-30 | 1 | -1/+0 |
| | |||||
* | Rename FieldDef -> Field | Aleksey Kladov | 2020-07-30 | 1 | -50/+46 |
| | |||||
* | Rename RecordLit -> RecordExpr | Aleksey Kladov | 2020-07-30 | 1 | -24/+26 |
| | |||||
* | Rename TypeParamList -> GenericParamList | Aleksey Kladov | 2020-07-30 | 1 | -15/+15 |
| | |||||
* | Rename TypeAliasDef -> TypeAlias | Aleksey Kladov | 2020-07-30 | 1 | -47/+45 |
| | |||||
* | Rename FnDef -> Fn | Aleksey Kladov | 2020-07-30 | 1 | -206/+209 |
| | |||||
* | Rename UseItem -> Use | Aleksey Kladov | 2020-07-30 | 1 | -14/+15 |
| | |||||
* | 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 |
| | |||||
* | Rename Rename | Aleksey Kladov | 2020-07-30 | 1 | -8/+8 |
| | |||||
* | Finish Module grammar | Aleksey Kladov | 2020-07-30 | 1 | -0/+1 |
| | |||||
* | Split ItemList & AssocItemList | Aleksey Kladov | 2020-07-30 | 1 | -21/+50 |
| | |||||
* | Finish SourceFile grammar | Aleksey Kladov | 2020-07-29 | 1 | -1/+3 |
| | |||||
* | Rename ModuleItem -> Item | Aleksey Kladov | 2020-07-29 | 1 | -384/+384 |
| | |||||
* | Rename NomialDef -> AdtDef | Aleksey Kladov | 2020-07-29 | 1 | -19/+19 |
| | |||||
* | Switch to ungrammar from ast_src | Aleksey Kladov | 2020-07-29 | 1 | -2204/+806 |
| | | | | | | | | | | | | | | | | | | 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 |
| | |||||
* | Apply codegen with idiomatic lifetimes | Veetaha | 2020-06-11 | 2 | -141/+141 |
| | |||||
* | Separating parsing of `for` in predicates and types | Matthew Jasper | 2020-06-10 | 1 | -0/+2 |
| | |||||
* | correctly infer labelled breaks | robojumper | 2020-05-31 | 1 | -0/+1 |
| | |||||
* | Support raw_ref_op's raw reference operator | robojumper | 2020-05-28 | 1 | -0/+3 |
| |