Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | remove not that useful indirection | Aleksey Kladov | 2019-10-29 | 1 | -2/+2 |
| | |||||
* | move expansion-related code to a separate crate | Aleksey Kladov | 2019-10-29 | 1 | -1/+2 |
| | |||||
* | start ra_hir_def crate | Aleksey Kladov | 2019-10-29 | 1 | -8/+5 |
| | |||||
* | remove last traces of source roots from hir | Aleksey Kladov | 2019-10-11 | 1 | -1/+1 |
| | |||||
* | don't special case macro_use | Aleksey Kladov | 2019-10-10 | 1 | -4/+9 |
| | |||||
* | don't special case path attr | Aleksey Kladov | 2019-10-10 | 1 | -7/+14 |
| | |||||
* | simplify a bit | Aleksey Kladov | 2019-10-10 | 1 | -8/+5 |
| | |||||
* | Refactor and fix some more edge cases around name resolution | Aleksey Kladov | 2019-10-10 | 1 | -22/+18 |
| | |||||
* | Optimize | uHOOCCOOHu | 2019-10-02 | 1 | -3/+6 |
| | |||||
* | Support cfg attribute on impl blocks | uHOOCCOOHu | 2019-10-02 | 1 | -4/+1 |
| | |||||
* | Introduce ra_cfg to parse and evaluate CfgExpr | uHOOCCOOHu | 2019-10-02 | 1 | -16/+36 |
| | |||||
* | Pass attributes as token tree to DefCollector | uHOOCCOOHu | 2019-10-02 | 1 | -10/+9 |
| | |||||
* | Added test for check doc strings in crates. | Alexander Andreev | 2019-09-30 | 1 | -0/+2 |
| | | | | #1856 | ||||
* | Store crate info in `MacroDefId` | uHOOCCOOHu | 2019-09-26 | 1 | -1/+4 |
| | |||||
* | Remove redundant clone() | Shotaro Yamada | 2019-09-25 | 1 | -1/+1 |
| | |||||
* | fix module attr path | gfreezy | 2019-09-20 | 1 | -1/+7 |
| | |||||
* | remove confusing code | Aleksey Kladov | 2019-09-17 | 1 | -31/+1 |
| | | | | | | I must confess I don't really understand what this code is trying to do, but it definitely misreports changes during fixedpoint iteration, and no tests fail if I remove it, so... | ||||
* | make PerNs non-generic | Aleksey Kladov | 2019-09-13 | 1 | -3/+3 |
| | |||||
* | rename AdtDef -> Adt | Aleksey Kladov | 2019-09-12 | 1 | -3/+3 |
| | |||||
* | make various enums "inherit" from AdtDef | Aleksey Kladov | 2019-09-12 | 1 | -3/+3 |
| | |||||
* | Make macro scope a real name scope | uHOOCCOOHu | 2019-09-09 | 1 | -83/+95 |
| | | | | Fix some details about module scoping | ||||
* | Rename `textual_macro` -> `legacy_macro` | uHOOCCOOHu | 2019-09-08 | 1 | -20/+17 |
| | | | | 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 | 1 | -7/+9 |
| | |||||
* | Support textual scoped macros | uHOOCCOOHu | 2019-09-08 | 1 | -32/+52 |
| | |||||
* | cleanup hir db imports | Aleksey Kladov | 2019-09-08 | 1 | -3/+4 |
| | |||||
* | don't cycle when processing macros from prelude in prelude | Aleksey Kladov | 2019-09-07 | 1 | -2/+4 |
| | |||||
* | Merge #1771 | bors[bot] | 2019-09-05 | 1 | -15/+30 |
|\ | | | | | | | | | | | | | | | | | | | | | 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 | 1 | -11/+17 |
| | | |||||
| * | Consider prelude to be `macro_use` | uHOOCCOOHu | 2019-09-05 | 1 | -4/+13 |
| | | |||||
* | | move mod resolution to a separate file | Aleksey Kladov | 2019-09-05 | 1 | -183/+7 |
|/ | |||||
* | Let `macro_use` bypass module scope | uHOOCCOOHu | 2019-09-05 | 1 | -20/+38 |
| | |||||
* | Fix import strategy of `macro_use` and its test | uHOOCCOOHu | 2019-09-02 | 1 | -9/+12 |
| | |||||
* | Support resolution of `#[macro_use] extern crate` | uHOOCCOOHu | 2019-08-31 | 1 | -0/+17 |
| | |||||
* | Resolve out of line modules inside inline module with attribute path | Alexander Andreev | 2019-08-03 | 1 | -12/+55 |
| | | | | | 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 | 1 | -39/+109 |
| | | | | #1510 | ||||
* | Fixed request comments | Alexander Andreev | 2019-07-14 | 1 | -7/+13 |
| | |||||
* | Fixed comments | Alexander Andreev | 2019-07-13 | 1 | -2/+2 |
| | |||||
* | More resolution modules with attribute path | Alexander Andreev | 2019-07-13 | 1 | -4/+16 |
| | | | | #1211 | ||||
* | cargo format | Muhammad Mominul Huque | 2019-07-07 | 1 | -2/+2 |
| | |||||
* | Constify KnownName's | Muhammad Mominul Huque | 2019-07-07 | 1 | -2/+3 |
| | |||||
* | Added support attribute path in resolusion module fn | Alexander Andreev | 2019-07-06 | 1 | -5/+24 |
| | |||||
* | Added extract path attribute for current module | Alexander Andreev | 2019-07-06 | 1 | -2/+2 |
| | | | | #1211 | ||||
* | Some clippy fixes for 1.36 | Jeremy Kolb | 2019-07-04 | 1 | -9/+5 |
| | |||||
* | allow rustfmt to reorder imports | Aleksey Kladov | 2019-07-04 | 1 | -14/+11 |
| | | | | | | 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 | ||||
* | 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 | 1 | -26/+20 |
| | |||||
* | remove some hacks from nameresolution for macros | Aleksey Kladov | 2019-06-08 | 1 | -10/+28 |
| |