aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Merge #1701bors[bot]2019-08-191-11/+8
|\ | | | | | | | | | | | | | | | | | | 1701: qualify ast types with `ast::` r=matklad a=matklad (only the last commit is relevant, the rest are from #1700) bors r+ Co-authored-by: Aleksey Kladov <[email protected]>
| * qualify ast types with `ast::`Aleksey Kladov2019-08-191-11/+8
| | | | | | | | | | By convention, ast nodes should always be used as `ast::FnDef`. This is to avoid confusion with similarly-named hir types.
* | Merge #1700bors[bot]2019-08-1919-539/+547
|\| | | | | | | | | | | | | | | 1700: remove ast::*Kind enums r=matklad a=matklad bors r+ Co-authored-by: Aleksey Kladov <[email protected]>
| * remove ast::*Kind from ra_ide_apiAleksey Kladov2019-08-195-21/+19
| |
| * remove ast::*Kind enums from assistsAleksey Kladov2019-08-195-45/+45
| |
| * remove ast::*Kind from hirAleksey Kladov2019-08-196-83/+86
| |
| * remove ast::*Kind enumsAleksey Kladov2019-08-193-390/+397
|/ | | | With the new owned trees, we don't need an indirection here
* Merge #1699bors[bot]2019-08-191-42/+6
|\ | | | | | | | | | | | | | | 1699: :arrow_up: vfs r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * :arrow_up: vfsAleksey Kladov2019-08-191-42/+6
| |
* | Merge #1698bors[bot]2019-08-193-284/+10
|\ \ | |/ |/| | | | | | | | | | | 1698: use derive(Debug) for SyntaxKind r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * use derive(Debug) for SyntaxKindAleksey Kladov2019-08-193-284/+10
|/
* Merge #1697bors[bot]2019-08-1911-2120/+2427
|\ | | | | | | | | | | | | | | 1697: Use quote instead of tera for boilerplate generation r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * plug new boilerplate_gen into ra_toolsAleksey Kladov2019-08-195-24/+26
| |
| * rename codegen -> boilerplate_genAleksey Kladov2019-08-192-3/+3
| |
| * drop tera dependencyAleksey Kladov2019-08-193-152/+25
| |
| * use new quote-generated syntax kindsAleksey Kladov2019-08-192-577/+538
| |
| * use quote! to generate syntax kindsAleksey Kladov2019-08-193-1/+148
| |
| * use new quote-generated astAleksey Kladov2019-08-183-1290/+1410
| |
| * use quote! macro to generate grammarAleksey Kladov2019-08-184-40/+181
| | | | | | | | | | We already use syn&quote elsewhere (transitively), so it make sense to cut down on the number of technologies and get rid of tera
| * deserialize grammarAleksey Kladov2019-08-184-56/+88
| |
| * switch to new codegenAleksey Kladov2019-08-184-14/+32
| |
| * codegen boilerplateAleksey Kladov2019-08-182-0/+8
| |
| * add quote depAleksey Kladov2019-08-184-7/+12
| |
* | Merge #1696bors[bot]2019-08-191-1/+9
|\ \ | |/ |/| | | | | | | | | | | | | | | | | | | 1696: fix #1424 r=matklad a=coderfox - resolve "~" in raLspServerPath I think expanding simply `~/` is quite simple as node provides `homedir`, but expanding `~foo/` is difficult as there is no cross-platform approach of reading home directory of another user. So this pull request only resolves `~/` in `raLspServerPath`. Besides, the source code is arranged in a way hard to write tests. Would anyone provide me with instructions of writing tests for this feature, or no test is required for this feature? Co-authored-by: xfoxfu <[email protected]>
| * fix #1424xfoxfu2019-08-191-1/+9
|/ | | | resolve "~" in raLspServerPath
* Merge #1695bors[bot]2019-08-175-32/+43
|\ | | | | | | | | | | | | | | 1695: update lsp r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * update lspAleksey Kladov2019-08-175-32/+43
|/
* Merge #1694bors[bot]2019-08-175-113/+186
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | 1694: Implement initial type-inference support for Index r=flodiebold a=matklad This doesn't actually infer indexing types, but at least it walks sub-expressions! Initially, I wanted to make `Index` just a new kind of `BinOp` (b/c indexing is kind of a binary op), so I've refactoring binop handing a bit. However, in the end I've decided to add a separate expr kind for Index, because `foo[0]`, `&foo[1]` and `&mut foo[1]` all seem to need slightly different handing, which is not binop-like r? @flodiebold Co-authored-by: Aleksey Kladov <[email protected]>
| * implement initial type inference for index expressionsAleksey Kladov2019-08-173-1/+33
| |
| * normalize ordering opsAleksey Kladov2019-08-172-26/+36
| |
| * Introduce separate hir::BinaryOpAleksey Kladov2019-08-174-75/+96
| | | | | | | | | | Unlike ast::BinOp, it has significantly more structure to it, so it's easier to, say, handle all assignment-like operations in the same way.
| * implement accessors for IndexExprAleksey Kladov2019-08-171-0/+9
| |
| * simplifyAleksey Kladov2019-08-171-35/+36
|/
* Merge #1693bors[bot]2019-08-175-64/+63
|\ | | | | | | | | | | | | | | 1693: Remove cpuprofile dependencies r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * Remove cpuprofile dependenciesAleksey Kladov2019-08-175-64/+63
|/
* Merge #1692bors[bot]2019-08-172-45/+44
|\ | | | | | | | | | | | | | | 1692: :arrow_up: deps r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * :arrow_up: depsAleksey Kladov2019-08-172-45/+44
|/
* Merge #1691bors[bot]2019-08-162-2/+44
|\ | | | | | | | | | | | | | | 1691: Show inherent and trait impls of structs and enums r=viorina a=viorina Co-authored-by: Ekaterina Babshukova <[email protected]>
| * show inherent and trait impls of structs and enumsEkaterina Babshukova2019-08-162-2/+44
| |
* | Merge #1689bors[bot]2019-08-161-9/+9
|\ \ | | | | | | | | | | | | | | | | | | | | | 1689: Update deps r=kjeremy a=kjeremy Co-authored-by: kjeremy <[email protected]>
| * | Update depskjeremy2019-08-161-9/+9
|/ /
* | Merge #1686bors[bot]2019-08-151-74/+116
|\ \ | | | | | | | | | | | | | | | | | | | | | 1686: :arrow_up: deps r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * | :arrow_up: depsAleksey Kladov2019-08-151-74/+116
|/ /
* | Merge #1445bors[bot]2019-08-1510-68/+166
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1445: Use the new "durability" infrastructure from salsa r=matklad a=matklad Based on https://github.com/nikomatsakis/salsa/tree/durability Durability allows us to skip *validation* work for sysroot and crates.io libraries, which massively speeds up some workloads Co-authored-by: Aleksey Kladov <[email protected]>
| * | switch to upstream salsaAleksey Kladov2019-08-152-10/+8
| | |
| * | implement durabilityAleksey Kladov2019-08-1510-47/+128
| | |
| * | switch from volatile to untracked readAleksey Kladov2019-08-152-22/+41
|/ /
* | Merge #1685bors[bot]2019-08-155-1/+142
|\ \ | | | | | | | | | | | | | | | | | | | | | 1685: fix error of RangeFrom in for-loop r=DJMcNab a=bravomikekilo fix [issue-1542](https://github.com/rust-analyzer/rust-analyzer/issues/1542) @matklad Co-authored-by: bravomikekilo <[email protected]>
| * | fix test positionbravomikekilo2019-08-146-118/+130
| | |
| * | fix testbravomikekilo2019-08-141-2/+2
| | |