Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Publish diagnostics for macro expansion errors | Jonas Schievink | 2020-11-27 | 1 | -2/+25 |
| | |||||
* | Don't store `SyntaxNodePtr` in `CrateDefMap` | Jonas Schievink | 2020-11-26 | 1 | -4/+2 |
| | | | | It is volatile across reparses and makes incrementality worse. | ||||
* | Don't stack overflow on circular modules | Aleksey Kladov | 2020-11-04 | 1 | -11/+14 |
| | | | | closes #6453 | ||||
* | Deny unreachable-pub | Aleksey Kladov | 2020-11-02 | 1 | -7/+7 |
| | | | | | | | | It's very useful when `pub` is equivalent to "this is crate's public API", let's enforce this! Ideally, we should enforce it for local `cargo test`, and only during CI, but that needs https://github.com/rust-lang/cargo/issues/5034. | ||||
* | Handle #![cfg] in crate root | Jonas Schievink | 2020-10-26 | 1 | -2/+5 |
| | |||||
* | Emit better #[cfg] diagnostics | Jonas Schievink | 2020-10-22 | 1 | -12/+17 |
| | |||||
* | Add a (hint) diagnostic for unconfigured items | Jonas Schievink | 2020-10-20 | 1 | -0/+13 |
| | |||||
* | Account for proc macro helpers when parsing attr | Jonas Schievink | 2020-10-05 | 1 | -1/+2 |
| | |||||
* | Add more comments about proc macro resolution | Jonas Schievink | 2020-09-28 | 1 | -0/+20 |
| | |||||
* | Reduce visibility of non-proc-macros | Jonas Schievink | 2020-09-18 | 1 | -0/+19 |
| | | | | | proc-macro crates only export proc-macros, but currently other items are also considered public (and show up in completion) | ||||
* | Remove obsolete proc macro collection code | Jonas Schievink | 2020-09-18 | 1 | -19/+0 |
| | | | | The new attribute-based resolution takes care of this | ||||
* | Use hir_def to resolve proc macros | Jonas Schievink | 2020-09-18 | 1 | -2/+48 |
| | |||||
* | Rename `CustomDerive` to `ProcMacro` | Jonas Schievink | 2020-09-18 | 1 | -1/+1 |
| | | | | | It handles fn-like macros too, and will handle attribute macros in the future | ||||
* | Invert condition to unindent code | Jonas Schievink | 2020-09-18 | 1 | -158/+157 |
| | |||||
* | Give `ExternCrate` a `Name`, not a `ModPath` | Jonas Schievink | 2020-09-17 | 1 | -10/+7 |
| | |||||
* | Don't diagnose imports whose base crate is missing | Jonas Schievink | 2020-09-17 | 1 | -17/+40 |
| | |||||
* | Track import sources and emit diagnostics | Jonas Schievink | 2020-09-16 | 1 | -12/+49 |
| | |||||
* | Leave extern crate items unresolved if they are | Jonas Schievink | 2020-09-16 | 1 | -1/+5 |
| | |||||
* | Add diagnostic types for unresolved crates/imports | Jonas Schievink | 2020-09-16 | 1 | -7/+5 |
| | |||||
* | Rename ra_hir_def -> hir_def | Aleksey Kladov | 2020-08-13 | 1 | -0/+1279 |