aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Merge #2381bors[bot]2019-11-243-1/+30
|\ | | | | | | | | | | | | | | | | 2381: Add proc-macro crate type handling r=JasperDeSutter a=JasperDeSutter Resolves the libproc_macro crate in crates that are the proc-macro type. This doesn't seem the ideal implementation though, since the compiler still requires you to write `extern crate proc_macro;` (even in 2018 edition). Co-authored-by: JasperDeSutter <[email protected]>
| * add proc-macro crate type handlingJasperDeSutter2019-11-243-1/+30
| |
* | Merge #2385bors[bot]2019-11-2412-39/+44
|\ \ | | | | | | | | | | | | | | | | | | | | | 2385: Some docs r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * | Some docsAleksey Kladov2019-11-244-11/+18
| | |
| * | CleanupAleksey Kladov2019-11-247-20/+15
| | |
| * | Reduce visibilityAleksey Kladov2019-11-242-8/+11
|/ /
* | Merge #2383bors[bot]2019-11-242-0/+10
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2383: Add alloc to the crate graph r=matklad a=marcogroppo `alloc` has been added to the crate graph. Completions work, but they are available even when the user has **not** declared an `extern crate alloc`. Is this the correct approach? Fixes #2376. Co-authored-by: Marco Groppo <[email protected]>
| * | Add alloc to the sysrootMarco Groppo2019-11-242-0/+10
| |/
* | Merge #2384bors[bot]2019-11-2416-117/+130
|\ \ | | | | | | | | | | | | | | | | | | | | | 2384: Nicer API for attrs r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * | Nicer API for attrsAleksey Kladov2019-11-244-32/+38
| | |
| * | Slightly reduce code duplicationAleksey Kladov2019-11-243-33/+30
| | |
| * | SimplifyAleksey Kladov2019-11-242-19/+5
| | |
| * | SimplifyAleksey Kladov2019-11-242-16/+3
| | |
| * | Switch to StaticLoc for staticsAleksey Kladov2019-11-2413-28/+65
|/ /
* | Merge #2382bors[bot]2019-11-2416-130/+106
|\ \ | |/ |/| | | | | | | | | | | 2382: Remove ids module r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * Remove ids moduleAleksey Kladov2019-11-246-41/+33
| |
| * Pull macro upAleksey Kladov2019-11-243-28/+16
| |
| * Cleanup importsAleksey Kladov2019-11-248-27/+20
| |
| * Push poison_macros downAleksey Kladov2019-11-242-25/+28
| |
| * Reduce visbilityAleksey Kladov2019-11-241-10/+10
|/
* Merge #2378bors[bot]2019-11-241-3/+6
|\ | | | | | | | | | | | | | | 2378: Fix panic in batch analysis r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * Fix panic in batch analysisAleksey Kladov2019-11-241-3/+6
| | | | | | | | Closes #2272
* | Merge #2365bors[bot]2019-11-241-9/+31
|\ \ | | | | | | | | | | | | | | | | | | | | | 2365: Make expand-macro more flexible r=matklad a=edwin0cheng Due to lack of implementation or other types of errors, some macros do not expand correctly in the current situation. The PR attempts to make `expand-macro` more flexible in error situations by ignoring internal failed macro expansion. Co-authored-by: Edwin Cheng <[email protected]>
| * | Improve fail case in expand_macroEdwin Cheng2019-11-231-9/+31
| | |
* | | Merge #2343bors[bot]2019-11-248-35/+174
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2343: implement assist invert_if r=matklad a=bravomikekilo fix [issue 2219 invert if condition](https://github.com/rust-analyzer/rust-analyzer/issues/2219) I put the assist cursor range to `if` of the if expression, because both condition and body will be replaced. Is there any way to replace them without cover the cursor position? @matklad Co-authored-by: bravomikekilo <[email protected]>
| * | | do refact and fix some issuebravomikekilo2019-11-247-60/+72
| | | |
| * | | fix tidy testbravomikekilo2019-11-211-7/+11
| | | |
| * | | initial invert_ifbravomikekilo2019-11-215-1/+124
| | | |
* | | | Merge #2360bors[bot]2019-11-244-42/+184
|\ \ \ \ | |_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | 2360: Refactor builtin macro r=matklad a=edwin0cheng Refactor builtin macro and add some local tests. Co-authored-by: Edwin Cheng <[email protected]>
| * | | Use macro for all the thingsEdwin Cheng2019-11-231-48/+31
| | | |
| * | | Rename BuiltinExpander to BuiltinFnLikeExpanderEdwin Cheng2019-11-233-14/+14
| | | |
| * | | Refactor builtin macroEdwin Cheng2019-11-221-18/+124
| | | |
| * | | Add TestDBEdwin Cheng2019-11-222-0/+53
| | | |
* | | | Merge #2375bors[bot]2019-11-2311-158/+151
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2375: Privatise nameres r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * | | | Move ModuleSource back to hirAleksey Kladov2019-11-234-78/+71
| | | | |
| * | | | Privatise nameresAleksey Kladov2019-11-237-10/+12
| | | | |
| * | | | Rename CrateModuleIdAleksey Kladov2019-11-238-54/+54
| | | | |
| * | | | Move ImportIdAleksey Kladov2019-11-235-28/+26
| | | | |
* | | | | Merge #2374bors[bot]2019-11-235-41/+43
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2374: Simplify HasSource r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * | | | Simplify HasSourceAleksey Kladov2019-11-231-21/+18
| | | | |
| * | | | Hide ImportIdAleksey Kladov2019-11-234-21/+26
| | | | |
| * | | | Remove unneded supertraitAleksey Kladov2019-11-231-1/+1
|/ / / /
* | | | Merge #2373bors[bot]2019-11-232-11/+11
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2373: Cleanup imports r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * | | | Cleanup importsAleksey Kladov2019-11-231-1/+1
| | | | |
| * | | | Cleanup importsAleksey Kladov2019-11-231-10/+10
|/ / / /
* | | | Merge #2372bors[bot]2019-11-2328-262/+236
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2372: Note that debugging infra is broken r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
| * | | | Note that debugging infra is brokenAleksey Kladov2019-11-231-0/+2
| | | | |
| * | | | Get rid of DefDatabase2Aleksey Kladov2019-11-2323-135/+123
| | | | |
| * | | | Move docs to hir_defAleksey Kladov2019-11-2311-134/+118
| | | | |
* | | | | Merge #2370bors[bot]2019-11-231-0/+5
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2370: Add note about neovim's built in language server r=matklad a=norcalli I implemented a builtin language server client (`:h lsp.txt`) for neovim and it's been in master since 2019-11-13. We built https://github.com/neovim/nvim-lsp to contain easy configuration settings for servers which we hope to be a database that can be referenced for other editors/3rd party users as well. Support will be merged very soon https://github.com/neovim/nvim-lsp/pull/43. Co-authored-by: Ashkan Kiani <[email protected]>