Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix test | uHOOCCOOHu | 2019-09-08 | 1 | -3/+0 |
| | |||||
* | Rename `textual_macro` -> `legacy_macro` | uHOOCCOOHu | 2019-09-08 | 2 | -21/+18 |
| | | | | Add comments | ||||
* | Revert "Replace with immutable map to avoid heavy cloning" | uHOOCCOOHu | 2019-09-08 | 1 | -3/+0 |
| | | | | | | This reverts commit 2c494eb803c88ef5d23607c3b156fce60c2b8076. See: https://github.com/rust-analyzer/rust-analyzer/pull/1784#issuecomment-529119924 | ||||
* | Replace with immutable map to avoid heavy cloning | uHOOCCOOHu | 2019-09-08 | 1 | -0/+3 |
| | |||||
* | Resolve textual scoped macros inside item | uHOOCCOOHu | 2019-09-08 | 2 | -8/+24 |
| | |||||
* | Support textual scoped macros | uHOOCCOOHu | 2019-09-08 | 3 | -34/+153 |
| | |||||
* | cleanup hir db imports | Aleksey Kladov | 2019-09-08 | 3 | -6/+7 |
| | |||||
* | don't cycle when processing macros from prelude in prelude | Aleksey Kladov | 2019-09-07 | 2 | -2/+33 |
| | |||||
* | Merge #1779 | bors[bot] | 2019-09-06 | 1 | -1/+3 |
|\ | | | | | | | | | | | | | | | 1779: minor r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]> | ||||
| * | minor | Aleksey Kladov | 2019-09-06 | 1 | -1/+3 |
| | | |||||
* | | make source_root API more abstract | Aleksey Kladov | 2019-09-06 | 1 | -6/+8 |
|/ | |||||
* | Merge #1771 | bors[bot] | 2019-09-05 | 2 | -18/+90 |
|\ | | | | | | | | | | | | | | | | | | | | | 1771: Further tweak for macro_use on extern crate r=matklad a=uHOOCCOOHu Some more tweaks to #1743 to behave more like `rustc` 1. Hoist macros from `#[macro_use] extern crate`, so that they can be used before `extern crate`. 2. Implicit `#[macro_use]` for `prelude` if exists Co-authored-by: uHOOCCOOHu <[email protected]> | ||||
| * | Hoist macros from extern crate with macro_use | uHOOCCOOHu | 2019-09-05 | 2 | -14/+20 |
| | | |||||
| * | Consider prelude to be `macro_use` | uHOOCCOOHu | 2019-09-05 | 2 | -4/+70 |
| | | |||||
* | | rename test file to match impl file | Aleksey Kladov | 2019-09-05 | 2 | -1/+1 |
| | | |||||
* | | move mod resolution to a separate file | Aleksey Kladov | 2019-09-05 | 2 | -183/+189 |
|/ | |||||
* | Fix typo | uHOOCCOOHu | 2019-09-05 | 1 | -2/+2 |
| | |||||
* | Let `macro_use` bypass module scope | uHOOCCOOHu | 2019-09-05 | 2 | -35/+52 |
| | |||||
* | Fix import strategy of `macro_use` and its test | uHOOCCOOHu | 2019-09-02 | 2 | -9/+22 |
| | |||||
* | Add test | uHOOCCOOHu | 2019-08-31 | 1 | -5/+50 |
| | |||||
* | Support resolution of `#[macro_use] extern crate` | uHOOCCOOHu | 2019-08-31 | 2 | -2/+28 |
| | |||||
* | :arrow_up: insta | Aleksey Kladov | 2019-08-29 | 5 | -53/+53 |
| | |||||
* | remove ast::*Kind from hir | Aleksey Kladov | 2019-08-19 | 1 | -12/+12 |
| | |||||
* | Resolve out of line modules inside inline module with attribute path | Alexander Andreev | 2019-08-03 | 3 | -28/+70 |
| | | | | | Fixed #1510 Fixed #1529 | ||||
* | Fixed request changes. | Alexander Andreev | 2019-07-29 | 1 | -9/+19 |
| | |||||
* | Added resolve modules inside inline module | Alexander Andreev | 2019-07-29 | 2 | -54/+147 |
| | | | | #1510 | ||||
* | migrate ra_hir to the new rowan | Aleksey Kladov | 2019-07-19 | 1 | -26/+26 |
| | |||||
* | Fixed request comments | Alexander Andreev | 2019-07-14 | 2 | -66/+72 |
| | |||||
* | Fixed comments | Alexander Andreev | 2019-07-13 | 1 | -2/+2 |
| | |||||
* | More resolution modules with attribute path | Alexander Andreev | 2019-07-13 | 2 | -4/+521 |
| | | | | #1211 | ||||
* | cargo format | Muhammad Mominul Huque | 2019-07-07 | 1 | -2/+2 |
| | |||||
* | Constify KnownName's | Muhammad Mominul Huque | 2019-07-07 | 1 | -2/+3 |
| | |||||
* | Moved module resolution test in mods.rs | Alexander Andreev | 2019-07-07 | 2 | -191/+193 |
| | |||||
* | Added support attribute path in resolusion module fn | Alexander Andreev | 2019-07-06 | 2 | -5/+119 |
| | |||||
* | Added extract path attribute for current module | Alexander Andreev | 2019-07-06 | 2 | -5/+21 |
| | | | | #1211 | ||||
* | Some clippy fixes for 1.36 | Jeremy Kolb | 2019-07-04 | 1 | -9/+5 |
| | |||||
* | Merge #1486 | bors[bot] | 2019-07-04 | 3 | -23/+23 |
|\ | | | | | | | | | | | | | | | 1486: allow rustfmt to reorder imports r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]> | ||||
| * | allow rustfmt to reorder imports | Aleksey Kladov | 2019-07-04 | 3 | -23/+23 |
| | | | | | | | | | | | | This wasn't a right decision in the first place, the feature flag was broken in the last rustfmt release, and syntax highlighting of imports is more important anyway | ||||
* | | Fixed request changes | Alexander Andreev | 2019-07-03 | 1 | -2/+1 |
| | | |||||
* | | Move resolve raw name in name.rs | Alexander Andreev | 2019-07-03 | 2 | -9/+27 |
| | | | | | | | | Added test for check module resolution with raw name | ||||
* | | Added resolve submodules with raw name | Alexander Andreev | 2019-07-03 | 1 | -0/+9 |
|/ | | | | #1211 | ||||
* | make sure that CrateDefMap is independent from syntax | Aleksey Kladov | 2019-06-26 | 1 | -10/+7 |
| | |||||
* | use single version of either in hir | Aleksey Kladov | 2019-06-10 | 2 | -34/+25 |
| | |||||
* | remove some hacks from nameresolution for macros | Aleksey Kladov | 2019-06-08 | 2 | -14/+37 |
| | |||||
* | Fix clippy::identity_conversion | Alan Du | 2019-06-04 | 2 | -2/+2 |
| | |||||
* | add AstDatabase | Aleksey Kladov | 2019-06-02 | 2 | -9/+15 |
| | |||||
* | add tests for primitive types | Aleksey Kladov | 2019-05-30 | 2 | -0/+25 |
| | |||||
* | add built-in types to scopes | Aleksey Kladov | 2019-05-30 | 1 | -2/+2 |
| | |||||
* | add cacellation checks to expensive queries | Aleksey Kladov | 2019-05-29 | 1 | -0/+1 |
| | |||||
* | Add Test for new item resolution | Edwin Cheng | 2019-05-26 | 2 | -2/+55 |
| |