aboutsummaryrefslogtreecommitdiff
path: root/xtask
Commit message (Collapse)AuthorAgeFilesLines
...
| | * Rename ra_prof -> profileAleksey Kladov2020-08-121-1/+1
| | |
| | * MinorAleksey Kladov2020-08-121-0/+1
| | |
| | * Deny clippyAleksey Kladov2020-08-121-0/+14
| | |
| * | refactor requirements put forward mkladovDmitry2020-08-142-20/+21
| | |
| * | Merge branch 'master' of https://github.com/Fihtangolz/rust-analyzer into masterDmitry2020-08-141-1/+1
| |\ \
| | * | Update xtask/src/codegen/gen_unstable_future_descriptor.rsDmitry Opokin2020-08-141-1/+1
| | | | | | | | | | | | Co-authored-by: Aleksey Kladov <[email protected]>
| * | | Revert "replase sparse-checkout by github api"Dmitry2020-08-145-38466/+18
| |/ / | | | | | | | | | This reverts commit 034db28c542c04b22147da6722328bc74ff99386.
| * | replase sparse-checkout by github apiDmitry2020-08-145-18/+38466
| | |
| * | remove fmt skip attrDmitry2020-08-101-2/+0
| |\ \
| | * | refactoring to show more clearly the import problemsDmitry2020-08-091-1/+1
| | | |
| * | | refactoring to show more clearly the import problemsDmitry2020-08-091-1/+1
| |/ /
| * | fix tidy checkDmitry2020-08-091-0/+2
| | |
| * | Revert "fixes"Dmitry2020-08-091-1/+1
| | | | | | | | | | | | This reverts commit b602c73911864a86c94d8b306648738f5f995167.
| * | add skip for generate fileDmitry2020-08-091-0/+1
| | |
| * | fixesDmitry2020-08-091-1/+1
| | |
| * | apply formatDmitry2020-08-092-21/+30
| | |
| * | fix unusedDmitry2020-08-091-3/+2
| | |
| * | Merge remote-tracking branch 'origin/master'Dmitry2020-08-097-2210/+977
| |\|
| | * Update grammarAleksey Kladov2020-08-013-10/+9
| | |
| | * Better JSON serialization in metricsAleksey Kladov2020-08-012-118/+15
| | |
| | * Unify naming of tuple fieldsAleksey Kladov2020-07-311-4/+4
| | |
| | * Section headersAleksey Kladov2020-07-311-0/+20
| | |
| | * Rename DotDotPat -> RestPatAleksey Kladov2020-07-312-3/+3
| | |
| | * Simplify trait gramamrAleksey Kladov2020-07-312-6/+7
| | |
| | * Rename BindPat -> IdentPatAleksey Kladov2020-07-312-3/+3
| | |
| | * Rename PalceholderPat -> WildcardPatAleksey Kladov2020-07-312-3/+3
| | |
| | * ReorderAleksey Kladov2020-07-311-17/+17
| | |
| | * Allign RecordPat with RecordExprAleksey Kladov2020-07-312-7/+6
| | |
| | * Minor gramamr reorderAleksey Kladov2020-07-311-61/+63
| | |
| | * Merge #5630bors[bot]2020-07-311-3/+0
| | |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 5630: Remove dead code r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| | | * Remove dead codeAleksey Kladov2020-07-311-3/+0
| | | |
| | * | Fix leading colonAleksey Kladov2020-07-311-1/+2
| | | |
| | * | Fix const arguments grammarAleksey Kladov2020-07-311-1/+1
| | | |
| | * | Fix GenericArgs grammarAleksey Kladov2020-07-311-7/+7
| | | |
| | * | fixup! Finalize Path grammarAleksey Kladov2020-07-311-1/+1
| | | |
| | * | Rename TypeArgList -> GenericArgListAleksey Kladov2020-07-312-4/+4
| | | |
| | * | Finalize Path grammarAleksey Kladov2020-07-311-27/+30
| | | |
| | * | Specify literal tokensAleksey Kladov2020-07-312-1/+8
| | | |
| | * | MinorAleksey Kladov2020-07-311-7/+6
| | |/
| | * Rename LambdaExpr -> ClosureExprAleksey Kladov2020-07-313-10/+22
| | |
| | * Work on expressions grammarAleksey Kladov2020-07-312-157/+176
| | |
| | * Item is a StmtAleksey Kladov2020-07-312-1/+4
| | |
| | * Handwrite StmtAleksey Kladov2020-07-311-25/+26
| | |
| | * Move Stmt GrammarAleksey Kladov2020-07-311-11/+11
| | |
| | * Finalize WhereClause gramamrAleksey Kladov2020-07-311-7/+7
| | |
| | * Finalize TypeBound grammarAleksey Kladov2020-07-311-6/+7
| | |
| | * "Finalize" Types grammarAleksey Kladov2020-07-311-1/+1
| | | | | | | | | | | | | | | | | | | | | 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 -> InferTypeAleksey Kladov2020-07-312-9/+9
| | |
| | * Rename TypeRef -> TypeAleksey Kladov2020-07-312-28/+34
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
| | * ReorderAleksey Kladov2020-07-311-20/+20
| | |