aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Merge #7377bors[bot]2021-01-211-4/+0
|\ | | | | | | | | | | | | | | 7377: Remove unnecessary annotations from tests r=jonas-schievink a=jonas-schievink bors r+ Co-authored-by: Jonas Schievink <[email protected]>
| * Remove unnecessary annotations from testsJonas Schievink2021-01-211-4/+0
|/
* Merge #7376bors[bot]2021-01-211-0/+29
|\ | | | | | | | | | | | | | | 7376: Add test for nameres in nested blocks r=jonas-schievink a=jonas-schievink bors r+ Co-authored-by: Jonas Schievink <[email protected]>
| * Add test for nameres in nested blocksJonas Schievink2021-01-211-0/+29
|/
* Merge #7375bors[bot]2021-01-2110-58/+291
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | 7375: Add support for running name resolution in block expressions r=jonas-schievink a=jonas-schievink This adds a `block_def_map` query that runs the name resolution algorithm on a block expression, and returns a `DefMap` that stores links to the parent `DefMap` (either the containing block or the crate-level `DefMap`). Blocks with no inner items return the parent's `DefMap` as-is, to avoid creating unnecessarily long `DefMap` chains. Path resolution is updated to recurse into the parent `DefMap` after looking up a path in the original `DefMap`. I've added a few new tests for this, but outside of those this isn't used yet. bors r+ Co-authored-by: Jonas Schievink <[email protected]>
| * Add test that merges inner and outer namesJonas Schievink2021-01-211-0/+25
| |
| * Fix lowering with multiple block expressionsJonas Schievink2021-01-211-15/+23
| |
| * Fall back to parent DefMaps when resolving pathsJonas Schievink2021-01-211-0/+37
| |
| * Add name resolution query for block expressionsJonas Schievink2021-01-218-43/+206
| |
* | Merge #7372bors[bot]2021-01-212-3/+3
|\ \ | | | | | | | | | | | | | | | | | | | | | 7372: Up lexer r=kjeremy a=kjeremy No real changes here. Co-authored-by: kjeremy <[email protected]>
| * | Up lexerkjeremy2021-01-212-3/+3
| |/
* | Merge #7371bors[bot]2021-01-211-0/+17
|\ \ | |/ |/| | | | | | | | | | | 7371: Change directory before running rustfmt to respect rustfmt.toml r=matklad a=lnicola Fixes #6973 Co-authored-by: Laurențiu Nicola <[email protected]>
| * chdir to file before rustfmtLaurențiu Nicola2021-01-211-0/+17
| |
* | Merge #7370bors[bot]2021-01-215-6/+10
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | 7370: fix mega bug r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | Fix mega bugAleksey Kladov2021-01-215-6/+10
|/ / | | | | | | https://rust-lang.zulipchat.com/#narrow/stream/185405-t-compiler.2Fwg-rls-2.2E0/topic/Manual.20content.20is.20duplicated
* | Merge #7368bors[bot]2021-01-212-5/+8
|\ \ | | | | | | | | | | | | | | | | | | | | | 7368: Clarify enabled features and defined features in PackageData r=matklad a=edwin0cheng Co-authored-by: Edwin Cheng <[email protected]>
| * | Added defined_features in PackageDataEdwin Cheng2021-01-212-5/+8
| |/
* | Merge #7367bors[bot]2021-01-212-11/+11
|\ \ | |/ |/| | | | | | | | | | | | | | | | | 7367: Bump chalk r=lnicola a=lnicola Fixes #6945 Fixes #6812 bors r+ Co-authored-by: Laurențiu Nicola <[email protected]>
| * Bump chalkLaurențiu Nicola2021-01-212-11/+11
|/
* Merge #7366bors[bot]2021-01-208-7/+44
|\ | | | | | | | | | | | | | | 7366: Treat BlockExpr as a potential module origin r=jonas-schievink a=jonas-schievink A block containing inner items acts like the root module of a crate, so it needs to be representable as a `ModuleSource` and `ModuleOrigin`. Co-authored-by: Jonas Schievink <[email protected]>
| * Treat BlockExpr as a potential module originJonas Schievink2021-01-208-7/+44
|/
* Merge #7365bors[bot]2021-01-202-11/+11
|\ | | | | | | | | | | | | | | 7365: chalk 0.49.0 r=kjeremy a=kjeremy Co-authored-by: kjeremy <[email protected]>
| * chalk 0.49.0kjeremy2021-01-202-11/+11
| |
* | Merge #7364bors[bot]2021-01-204-11/+23
|\ \ | |/ |/| | | | | | | | | | | 7364: DefMap: hide remaining crate-visible fields r=jonas-schievink a=jonas-schievink bors r+ Co-authored-by: Jonas Schievink <[email protected]>
| * DefMap: hide remaining crate-visible fieldsJonas Schievink2021-01-204-11/+23
|/
* Merge #7359bors[bot]2021-01-203-32/+49
|\ | | | | | | | | | | | | | | | | | | 7359: ItemTree: store a mapping from blocks to inner items r=jonas-schievink a=jonas-schievink To do name resolution within block expressions, we need to know which inner items are located inside each block expression. This adds such a mapping to `ItemTree`, replacing the previous one, which was seemingly unused other than to access all the inner items. This also assigns `AstId`s to block expressions, which is needed to store the mapping in salsa. Co-authored-by: Jonas Schievink <[email protected]>
| * Create a mapping from blocks to inner itemsJonas Schievink2021-01-202-26/+35
| |
| * Record `FileAstId`s for block expressiosnJonas Schievink2021-01-191-6/+14
| | | | | | | | | | Every block expression may contain inner items, so we need to be able to refer to any block expression and use it as a salsa key.
* | Merge #7361bors[bot]2021-01-201-4/+4
|\ \ | | | | | | | | | | | | | | | | | | | | | 7361: bump serde r=kjeremy a=kjeremy Co-authored-by: kjeremy <[email protected]>
| * | bump serdekjeremy2021-01-201-4/+4
| | |
* | | Merge #7360bors[bot]2021-01-2010-23/+31
|\ \ \ | |/ / |/| | | | | | | | | | | | | | | | | | | | | | | 7360: Make public DefMap fields private r=jonas-schievink a=jonas-schievink This gives us more freedom to change the implementation for name resolution within block expressions. bors r+ Co-authored-by: Jonas Schievink <[email protected]>
| * | Make public DefMap fields privateJonas Schievink2021-01-2010-23/+31
|/ /
* | Merge #7350bors[bot]2021-01-205-25/+40
|\ \ | | | | | | | | | | | | | | | | | | | | | 7350: Update pico-args r=matklad a=kjeremy Should maintain existing behavior Co-authored-by: kjeremy <[email protected]>
| * | Update pico-argskjeremy2021-01-195-25/+40
| |/ | | | | | | Should maintains existing behavior
* | Merge #7357bors[bot]2021-01-202-23/+81
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | 7357: Dont show runnables from nested mods r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | Avoid intermediate collectionsAleksey Kladov2021-01-202-27/+53
| | |
| * | Don't show runnable suggestions for other filesAleksey Kladov2021-01-202-3/+35
| | | | | | | | | | | | | | | It't be actually great to have these once we have run anything dialog, but for run the thing at point it makes sense to show a limited set.
* | | Merge #7355bors[bot]2021-01-2032-82/+79
|\| | | | | | | | | | | | | | | | | | | | | | | | | | 7355: :arrow_up: rowan r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | :arrow_up: rowanAleksey Kladov2021-01-207-17/+12
| | | | | | | | | | | | It now stores text inline with tokens
| * | .Aleksey Kladov2021-01-1928-67/+69
|/ /
* | Merge #7352bors[bot]2021-01-195-36/+11
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | 7352: :arrow_up: rowan r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | :arrow_up: rowanAleksey Kladov2021-01-195-36/+11
| |/
* | Merge #7351bors[bot]2021-01-194-12/+41
|\ \ | |/ |/| | | | | | | | | | | | | | | 7351: Show const params in completions r=Veykril a=Veykril bors r+ ![image](https://user-images.githubusercontent.com/3757771/105080872-bba76680-5a91-11eb-91cd-0910da4c8312.png) Co-authored-by: Lukas Wirth <[email protected]>
| * Show const params in completionsLukas Wirth2021-01-194-12/+41
| |
* | Merge #7347bors[bot]2021-01-191-10/+16
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 7347: Reduce TokenMap size r=edwin0cheng a=edwin0cheng Reduces HygieneFrameQuery's memory usage by to another 10 MB. cc #7331 bors r+ Co-authored-by: Edwin Cheng <[email protected]>
| * | Reduce TokenMap sizeEdwin Cheng2021-01-191-10/+16
|/ /
* | Merge #7321bors[bot]2021-01-192-73/+136
|\ \ | | | | | | | | | | | | | | | | | | | | | 7321: Support runnables in macros r=matklad a=edwin0cheng fixes #4771 Co-authored-by: Edwin Cheng <[email protected]>
| * | Support runnables in macrosEdwin Cheng2021-01-192-73/+136
| | |
* | | Merge #7346bors[bot]2021-01-191-10/+4
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 7346: :arrow_up: rowan r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
| * | | :arrow_up: rowanAleksey Kladov2021-01-191-10/+4
|/ / /