Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | | :arrow_up: 1.31.0 :tada: | Aleksey Kladov | 2018-12-06 | 2 | -2/+2 | |
|/ / | ||||||
* | | Merge #253 | bors[bot] | 2018-12-05 | 1 | -2/+2 | |
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 253: Fix diagnostic fixes showing up everywhere r=matklad a=flodiebold The LSP code action request always returned the fixes for all diagnostics anywhere in the file, because of a shadowed variable. There's no test yet; I wasn't sure where to add it. I tried adding one in `heavy_tests`, but that's a bit uncomfortable because the code action response contains the (random) file paths. I could make it work, but wanted to ask beforehand what you think. Co-authored-by: Florian Diebold <[email protected]> | |||||
| * | | Fix diagnostic fixes showing up everywhere | Florian Diebold | 2018-12-02 | 1 | -2/+2 | |
| | | | | | | | | | | | | | | | The LSP code action request always returned the fixes for all diagnostics anywhere in the file, because of a shadowed variable. | |||||
* | | | Merge #257 | bors[bot] | 2018-12-05 | 1 | -1/+1 | |
|\ \ \ | |_|/ |/| | | | | | | | | | | | | | | | | | 257: Fix a copy and pasting typo in lexer/ptr.rs r=matklad a=DJMcNab Co-authored-by: DJMcNab <[email protected]> | |||||
| * | | Fix a copy and pasting typo | DJMcNab | 2018-12-05 | 1 | -1/+1 | |
|/ / | ||||||
* | | First step towards crate deps | Aleksey Kladov | 2018-12-05 | 1 | -8/+35 | |
| | | ||||||
* | | make stuff private | Aleksey Kladov | 2018-12-05 | 1 | -1/+1 | |
| | | ||||||
* | | Merge #255 | bors[bot] | 2018-12-05 | 7 | -140/+125 | |
|\ \ | | | | | | | | | | | | | | | | | | | | | | 255: Binders r=matklad a=matklad Binding sources to hir is a fuzzy operation, so let's move it to a special enclave in the source code. Co-authored-by: Aleksey Kladov <[email protected]> | |||||
| * | | make stuff private | Aleksey Kladov | 2018-12-05 | 2 | -13/+8 | |
| | | | ||||||
| * | | move fuzzy source binding to a separete mode | Aleksey Kladov | 2018-12-05 | 7 | -131/+121 | |
|/ / | ||||||
* | | restore index-based gotodef | Aleksey Kladov | 2018-12-05 | 2 | -5/+21 | |
| | | ||||||
* | | Merge #254 | bors[bot] | 2018-12-04 | 12 | -160/+186 | |
|\ \ | | | | | | | | | | | | | | | | | | | | | | 254: Defids r=matklad a=matklad Fleshing out DefIds some more Co-authored-by: Aleksey Kladov <[email protected]> | |||||
| * | | minor | Aleksey Kladov | 2018-12-04 | 2 | -7/+17 | |
| | | | ||||||
| * | | Add functions to DefId | Aleksey Kladov | 2018-12-04 | 10 | -83/+90 | |
| | | | ||||||
| * | | module-scoped defloc | Aleksey Kladov | 2018-12-04 | 3 | -24/+43 | |
| | | | ||||||
| * | | ModuleSource is ItemSource | Aleksey Kladov | 2018-12-04 | 4 | -51/+40 | |
| | | | ||||||
| * | | include file itself in SourceFileItems | Aleksey Kladov | 2018-12-04 | 1 | -1/+2 | |
|/ / | ||||||
* | | Merge #250 | bors[bot] | 2018-12-02 | 2 | -5/+11 | |
|\ \ | |/ |/| | | | | | | | | | | | | | 250: Improve the suggestion for test functions r=DJMcNab a=DJMcNab I haven't fully updated the previous commented out test - I don't know why it was commented out so some clarification would be welcome. Co-authored-by: Daniel McNab <[email protected]> Co-authored-by: DJMcNab <[email protected]> | |||||
| * | Fix formatting | DJMcNab | 2018-12-02 | 1 | -4/+4 | |
| | | ||||||
| * | Format completion text properly | Daniel McNab | 2018-11-28 | 1 | -2/+5 | |
| | | ||||||
| * | Add tfn lookup and remove test prefix | Daniel McNab | 2018-11-28 | 2 | -3/+3 | |
| | | ||||||
| * | Change the body and name of the test function completion | Daniel McNab | 2018-11-28 | 2 | -4/+7 | |
| | | ||||||
* | | Merge #252 | bors[bot] | 2018-12-02 | 2 | -7/+44 | |
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 252: Improve 'introduce variable' r=matklad a=flodiebold - make it possible to extract a prefix of an expression statement (e.g. `<|>foo.bar()<|>.baz()`) - don't turn the last expression in a block into a let statement - also fix a few typos Co-authored-by: Florian Diebold <[email protected]> | |||||
| * | | Improve 'introduce variable' | Florian Diebold | 2018-12-02 | 2 | -7/+44 | |
| | | | | | | | | | | | | | | | | | | - make it possible to extract a prefix of an expression statement (e.g. <|>foo.bar()<|>.baz()) - don't turn the last expression in a block into a let statement | |||||
* | | | Put derive back | Aleksey Kladov | 2018-12-02 | 1 | -24/+1 | |
| | | | | | | | | | | | | It is used in this file | |||||
* | | | Add `derive` after doc comments | Aleksey Kladov | 2018-12-02 | 1 | -5/+36 | |
| | | | ||||||
* | | | Merge #251 | bors[bot] | 2018-11-30 | 5 | -16/+13 | |
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 251: Clippy lints r=matklad a=kjeremy Co-authored-by: Jeremy A. Kolb <[email protected]> | |||||
| * | | | Put map back | Jeremy A. Kolb | 2018-11-30 | 1 | -1/+1 | |
| | | | | ||||||
| * | | | Clippy lints | Jeremy A. Kolb | 2018-11-29 | 5 | -17/+14 | |
|/ / / | ||||||
* | | | switch to released id-arena | Aleksey Kladov | 2018-11-28 | 5 | -19/+8 | |
| | | | ||||||
* | | | Merge #248 | bors[bot] | 2018-11-28 | 9 | -196/+338 | |
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 248: Hir tests r=matklad a=matklad bors r+ Co-authored-by: Aleksey Kladov <[email protected]> | |||||
| * | | | drop comment | Aleksey Kladov | 2018-11-28 | 1 | -1/+0 | |
| | | | | ||||||
| * | | | remove useless test hooks | Aleksey Kladov | 2018-11-28 | 1 | -43/+0 | |
| | | | | ||||||
| * | | | make a bunch of stuff private | Aleksey Kladov | 2018-11-28 | 2 | -11/+9 | |
| | | | | ||||||
| * | | | Move hir tests to hit | Aleksey Kladov | 2018-11-28 | 7 | -142/+330 | |
|/ / / | ||||||
* | | | Merge #247 | bors[bot] | 2018-11-28 | 30 | -1060/+1249 | |
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 247: Hir r=matklad a=matklad This doesn't achive anything new, just a big refactoring. The main change is that Descriptors are now called `hir`, and live in a separate crate. Co-authored-by: Aleksey Kladov <[email protected]> | |||||
| * | | | Move hir to a separate crate | Aleksey Kladov | 2018-11-28 | 26 | -2432/+202 | |
| | | | | ||||||
| * | | | introduce hir crate | Aleksey Kladov | 2018-11-28 | 14 | -17/+2270 | |
| | | | | ||||||
| * | | | move ids to HIR | Aleksey Kladov | 2018-11-28 | 10 | -80/+71 | |
| | | | | ||||||
| * | | | move db basics to ra_db | Aleksey Kladov | 2018-11-28 | 22 | -293/+352 | |
| | | | | | | | | | | | | | | | | This should allow to move hir to a separate crate | |||||
| * | | | generalize location interner | Aleksey Kladov | 2018-11-27 | 8 | -50/+100 | |
| | | | | ||||||
| * | | | rename file_syntax -> source_file | Aleksey Kladov | 2018-11-27 | 6 | -18/+18 | |
| | | | | ||||||
| * | | | introduce SymbolsDatabase | Aleksey Kladov | 2018-11-27 | 4 | -27/+40 | |
| | | | | ||||||
| * | | | remove syntax ptr | Aleksey Kladov | 2018-11-27 | 2 | -26/+1 | |
| | | | | ||||||
| * | | | Use ItemPtr for id | Aleksey Kladov | 2018-11-27 | 4 | -18/+12 | |
| | | | | ||||||
| * | | | ItemId based module source | Aleksey Kladov | 2018-11-27 | 3 | -20/+23 | |
| | | | | ||||||
| * | | | Introduce SourceItemId | Aleksey Kladov | 2018-11-27 | 5 | -17/+24 | |
| | | | | ||||||
| * | | | rename | Aleksey Kladov | 2018-11-27 | 6 | -26/+26 | |
| | | | | ||||||
| * | | | Move FileItems up | Aleksey Kladov | 2018-11-27 | 4 | -37/+43 | |
| | | | | ||||||
| * | | | Remove unused dead code | Aleksey Kladov | 2018-11-27 | 1 | -1/+0 | |
| | | | |