aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Remove dead codeAleksey Kladov2020-04-118-55/+40
|
* Make records grammar more orthogonalAleksey Kladov2020-04-1113-68/+142
| | | | | | | | | | | | We used name [: expr] grammar before, now it is [name :] expr which makes things simpler
* Merge #3949bors[bot]2020-04-117-53/+102
|\ | | | | | | | | | | | | | | | | 3949: Cleanup cfg handling in items r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * Make incremental nameres test harderAleksey Kladov2020-04-111-0/+6
| |
| * Avoid cyclic queries in name resolution when processing enumsAleksey Kladov2020-04-113-15/+48
| |
| * Align namingAleksey Kladov2020-04-114-6/+5
| |
| * Remove code duplicationAleksey Kladov2020-04-112-5/+2
| |
| * Use Expander for cfg handling in structsAleksey Kladov2020-04-111-10/+10
| |
| * Use Expander for cfg handling in implsAleksey Kladov2020-04-111-13/+14
| |
| * Pull Expander upAleksey Kladov2020-04-113-11/+24
| |
| * SimplifyAleksey Kladov2020-04-112-8/+8
|/
* Merge pull request #3935 from cjhopman/todoAleksey Kladov2020-04-115-20/+32
|\ | | | | Change missing impl assist to use todo!() instead of unimplemented()
| * Change missing impl assist to use todo!() instead of unimplemented()Chris Hopman2020-04-105-20/+32
| | | | | | | | | | | | | | | | | | | | | | | | todo!() "Indicates unfinished code" (https://doc.rust-lang.org/std/macro.todo.html) Rust documentation provides further clarification: > The difference between unimplemented! and todo! is that while todo! > conveys an intent of implementing the functionality later and the > message is "not yet implemented", unimplemented! makes no such claims. todo!() seems more appropriate for assists that insert missing impls.
* | Merge #3942bors[bot]2020-04-111-9/+30
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | 3942: vscode: fix typing bug in config r=matklad a=Veetaha I noticed that the type of nullable properties in config is actually non-nullable ![Screenshot from 2020-04-11 15-29-45](https://user-images.githubusercontent.com/36276403/79043702-6a686d80-7c09-11ea-9ae8-f1a777c7d0f2.png) Co-authored-by: veetaha <[email protected]>
| * | vscode: fix typing bug in configveetaha2020-04-111-9/+30
| | |
* | | Merge #3943bors[bot]2020-04-111-5/+5
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 3943: vscode: fix indent r=matklad a=Veetaha Co-authored-by: veetaha <[email protected]>
| * | | vscode: fix indentveetaha2020-04-111-5/+5
| |/ /
* | | Merge pull request #3910 from lnicola/fn-named-param-hintAleksey Kladov2020-04-111-5/+12
|\ \ \ | | | | | | | | Hide parameter hints for single-argument functions with the same name
| * | | Hide parameter hints for single-argument functions with the same nameLaurențiu Nicola2020-04-091-5/+12
| | | |
* | | | Merge pull request #3940 from lnicola/cargo-auditAleksey Kladov2020-04-111-14/+3
|\ \ \ \ | |_|/ / |/| | | Use actions-rs/install and /audit-check for cargo-audit
| * | | Use actions-rs/install and /audit-check for cargo-auditLaurențiu Nicola2020-04-111-14/+3
| | | |
* | | | Merge #3920bors[bot]2020-04-118-5/+600
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 3920: Implement expand_task and list_macros in proc_macro_srv r=matklad a=edwin0cheng This PR finish up the remain `proc_macro_srv` implementation : 1. Added dylib loading code for proc-macro crate dylib. Note that we have to add some special flags for unix loading because of a bug in old version of glibc, see https://github.com/fedochet/rust-proc-macro-panic-inside-panic-expample/issues/1 and https://github.com/rust-lang/rust/issues/60593 for details. 2. Added tests for proc-macro expansion: We use a trick here by adding `serde_derive` to dev-dependencies and calling `cargo-metadata` for searching its dylib path, and expand it in our tests. [EDIT] Note that this PR **DO NOT** implement the final glue code with rust-analzyer and proc-macro-srv yet. Co-authored-by: Edwin Cheng <[email protected]>
| * | | | Improve error handlingEdwin Cheng2020-04-111-24/+30
| | | | |
| * | | | tidy up a bitEdwin Cheng2020-04-101-50/+18
| | | | |
| * | | | Fix macos symbol name bugEdwin Cheng2020-04-091-1/+19
| | | | |
| * | | | Remove allow(unused)Edwin Cheng2020-04-091-3/+2
| | | | |
| * | | | Add testsEdwin Cheng2020-04-096-0/+305
| | | | |
| * | | | Implement expand_task and list_macrosEdwin Cheng2020-04-091-4/+27
| | | | |
| * | | | Add dylib loading codeEdwin Cheng2020-04-095-1/+277
| | | | |
* | | | | Merge #3939bors[bot]2020-04-112-2/+6
|\ \ \ \ \ | |_|/ / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 3939: Fix non canonicallized path from metadata r=matklad a=edwin0cheng Crate root path obtained from cargo-metadata may contains non-canonicalized path (e.g. `/foo/../libcore/tests/lib.rs`), such that `vfs::load` will find a incorrect root. This PR try to fix that by canonicalize it before passing to vfs. Co-authored-by: Edwin Cheng <[email protected]>
| * | | | Fix non canonicallized path for crate fileEdwin Cheng2020-04-112-2/+6
|/ / / /
* | | | Merge #3937bors[bot]2020-04-108-26/+25
|\ \ \ \ | |_|_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 3937: Forward compat r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | | Forward compatAleksey Kladov2020-04-108-26/+25
|/ / /
* | | Merge #3933bors[bot]2020-04-104-35/+63
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 3933: Fix accidently quadratic behavior when processing include! r=matklad a=matklad This fixes the immediate problem behind #3927. It doesn't yet fix the deeper problem with `to_node` being quadratic (hence the test is ignored), but it is a good start anyway. bors r+ Co-authored-by: Aleksey Kladov <[email protected]>
| * | | Move timeit to stdxAleksey Kladov2020-04-102-16/+15
| | | |
| * | | profile queriesAleksey Kladov2020-04-101-0/+5
| | | |
| * | | Fix accidently quadratic behavior when processing includesAleksey Kladov2020-04-101-17/+19
| | | | | | | | | | | | | | | | closes #3927
| * | | Add failing testAleksey Kladov2020-04-101-2/+29
| | | |
* | | | Merge #3931bors[bot]2020-04-101-0/+5
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 3931: profile queries r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | | | profile queriesAleksey Kladov2020-04-101-0/+5
|/ / / /
* | | | Merge #3930bors[bot]2020-04-101-10/+10
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 3930: cargo update r=kjeremy a=kjeremy Co-authored-by: kjeremy <[email protected]>
| * | | | cargo updatekjeremy2020-04-101-10/+10
|/ / / /
* | | | Merge #3928bors[bot]2020-04-103-20/+3
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 3928: Simplify r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | | SimplifyAleksey Kladov2020-04-103-20/+3
| | | |
* | | | Merge #3926bors[bot]2020-04-10221-3863/+1782
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 3926: Rename some tokens r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | | Rename some tokensAleksey Kladov2020-04-10209-1393/+1107
| | | |
| * | | Better readabilityAleksey Kladov2020-04-103-2/+145
| | | |
| * | | Remove dead codeAleksey Kladov2020-04-105-206/+191
| | | |
| * | | Generate only minimal set of ineresting tokensAleksey Kladov2020-04-108-1306/+61
| | | |
| * | | Scale token generation backAleksey Kladov2020-04-109-547/+136
| | | |