aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* switch to upstream ra_vfsAleksey Kladov2019-08-203-6/+7
|
* Drop unnecessary `&'_` from implsAleksey Kladov2019-08-201-20/+20
|
* refactor TryConvWith similar to ConvWithAleksey Kladov2019-08-202-46/+27
|
* translate \n -> \r\n on the way outAleksey Kladov2019-08-207-33/+50
|
* make CTX type param instead of assoc typeAleksey Kladov2019-08-201-34/+25
| | | | that way, we can implement ConvWith<&'_ CTX> for different lifetimes
* add tests for crlfAleksey Kladov2019-08-201-0/+46
|
* minorAleksey Kladov2019-08-201-1/+1
|
* Merge #1707bors[bot]2019-08-201-2/+2
|\ | | | | | | | | | | | | | | 1707: make sure lockfile is used for cargo install r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * make sure lockfile is used for cargo installAleksey Kladov2019-08-201-2/+2
|/
* Merge #1703bors[bot]2019-08-197-17/+42
|\ | | | | | | | | | | | | | | 1703: don't load sysroot in most heavy tests r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * don't load sysroot in most heavy testsAleksey Kladov2019-08-197-17/+42
| |
* | Merge #1702bors[bot]2019-08-193-8/+33
|\ \ | |/ |/| | | | | | | | | | | 1702: replace heck with just ascii transformation r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * replace heck with just ascii transformationAleksey Kladov2019-08-193-8/+33
| |
* | 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
|/