aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/src
Commit message (Collapse)AuthorAgeFilesLines
* Rename TypeRef -> TypeAleksey Kladov2020-07-316-142/+142
| | | | | | | | | | 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 #5610bors[bot]2020-07-301-2/+1
|\ | | | | | | | | | | | | | | 5610: Bump deps r=flodiebold a=lnicola Co-authored-by: Laurențiu Nicola <[email protected]>
| * Fix typoLaurențiu Nicola2020-07-301-2/+1
| |
| * Rename UseItem -> UseAleksey Kladov2020-07-303-17/+18
| |
| * Add comma list to use treeAleksey Kladov2020-07-301-77/+78
| |
* | Use ty to access most TypeRefsAleksey Kladov2020-07-301-10/+10
| |
* | Remove TypeAscriptionOwnerAleksey Kladov2020-07-302-13/+7
| |
* | simplifyAleksey Kladov2020-07-301-18/+18
| |
* | Finalize attribute grammarAleksey Kladov2020-07-302-56/+13
| |
* | Dead codeAleksey Kladov2020-07-301-102/+76
| |
* | Introduce GenericParamAleksey Kladov2020-07-302-85/+149
| |
* | Finaize item grammarAleksey Kladov2020-07-301-64/+71
| |
* | Finalize impl GrammarAleksey Kladov2020-07-303-18/+19
| |
* | Finalize Trait grammarAleksey Kladov2020-07-303-18/+18
| |
* | fmtAleksey Kladov2020-07-301-2/+2
| |
* | Finalize const&static grammarAleksey Kladov2020-07-305-49/+50
| |
* | Rename EnumVariant -> VariantAleksey Kladov2020-07-303-18/+18
| |
* | Rename EnumDef -> EnumAleksey Kladov2020-07-303-25/+25
| |
* | Rename StructDef -> StructAleksey Kladov2020-07-304-26/+26
| |
* | Finalize union grammarAleksey Kladov2020-07-302-22/+22
| |
* | Finalize structs grammarAleksey Kladov2020-07-301-1/+0
| |
* | Rename FieldDef -> FieldAleksey Kladov2020-07-305-59/+55
| |
* | Rename RecordLit -> RecordExprAleksey Kladov2020-07-306-39/+41
| |
* | Rename TypeParamList -> GenericParamListAleksey Kladov2020-07-304-20/+20
| |
* | Rename TypeAliasDef -> TypeAliasAleksey Kladov2020-07-305-53/+51
| |
* | Rename FnDef -> FnAleksey Kladov2020-07-309-218/+221
| |
* | Rename UseItem -> UseAleksey Kladov2020-07-303-17/+18
| |
* | Add comma list to use treeAleksey Kladov2020-07-301-77/+78
|/
* Finish extern crates grammarAleksey Kladov2020-07-301-62/+62
|
* Update testsAleksey Kladov2020-07-301-2/+6
|
* Rename RenameAleksey Kladov2020-07-303-10/+10
|
* Finish Module grammarAleksey Kladov2020-07-301-0/+1
|
* Split ItemList & AssocItemListAleksey Kladov2020-07-302-24/+56
|
* Finish SourceFile grammarAleksey Kladov2020-07-291-1/+3
|
* Rename ModuleItem -> ItemAleksey Kladov2020-07-294-388/+388
|
* Rename NomialDef -> AdtDefAleksey Kladov2020-07-291-19/+19
|
* Switch to ungrammar from ast_srcAleksey Kladov2020-07-293-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 codeAleksey Kladov2020-07-291-41/+0
|
* Remove dead codeAleksey Kladov2020-07-291-3/+1
|
* Remove dead codeAleksey Kladov2020-07-291-46/+0
|
* Rename modulesAleksey Kladov2020-07-234-8/+9
|
* Store macro invocation parameters as text instead of ttLaurențiu Nicola2020-07-222-4/+4
|
* Move remove_bounds to edit.rsJonas Schievink2020-07-142-13/+15
|
* missing impl members: remove assoc. type boundsJonas Schievink2020-07-141-0/+13
|
* Comment decorationsAleksey Kladov2020-07-121-1/+4
| | | | closes #4461
* Make slow test parallelAleksey Kladov2020-07-111-18/+29
|
* Don't mess with cursor position when adding hashesAleksey Kladov2020-07-091-6/+11
|
* SimplifyAleksey Kladov2020-07-091-1/+2
|
* Unify testsAleksey Kladov2020-07-091-34/+2
|
* Clippy perf warningskjeremy2020-07-061-6/+2
| | | | Removes redundant clones