aboutsummaryrefslogtreecommitdiff
path: root/crates/hir_def/src/item_tree
Commit message (Collapse)AuthorAgeFilesLines
* Fix recursive macro statement expansionEdwin Cheng2021-03-251-8/+0
|
* Merge #8082bors[bot]2021-03-181-0/+8
|\ | | | | | | | | | | | | | | | | | | | | | | 8082: Proper handle inner recursive macro rules cases r=edwin0cheng a=edwin0cheng Fixes #7645 cc @jonas-schievink bors r+ Co-authored-by: Edwin Cheng <[email protected]>
| * Handle inner recursive macro rules casesEdwin Cheng2021-03-181-0/+8
| |
* | ItemTree: lower attributes on fn parametersJonas Schievink2021-03-171-16/+25
|/
* Use hir formatter moreoxalica2021-03-151-2/+6
|
* Introduce FunctionQualifier for hir::FunctionDataoxalica2021-03-151-4/+23
|
* Use upstream cov-markLaurențiu Nicola2021-03-081-1/+1
|
* Make `ModPath`'s representation privateJonas Schievink2021-02-041-1/+2
|
* Intern `TypeRef`s in the containing `ItemTree`Jonas Schievink2021-02-041-5/+13
|
* Add a FIXME to ItemTreeJonas Schievink2021-02-031-0/+1
|
* ItemTree: Treat items in `MacroStmts` as top-levelJonas Schievink2021-01-281-0/+26
|
* Derive Default on ItemTreeLaurențiu Nicola2021-01-251-1/+1
|
* Remove unused fieldJonas Schievink2021-01-211-4/+0
|
* Fix lowering with multiple block expressionsJonas Schievink2021-01-211-15/+23
|
* Create a mapping from blocks to inner itemsJonas Schievink2021-01-201-9/+24
|
* Use ‘index’ terminology for arena consistentlyAramis Razzaghipour2021-01-171-2/+2
|
* Don't look at attributes when lowering to ItemTreeJonas Schievink2020-12-181-6/+1
| | | | Resolves 2 `cfg_attr` FIXMEs
* Refactor attributes API to allow handling cfg_attrJonas Schievink2020-12-181-9/+8
|
* Avoid querying attributes in item tree loweringJonas Schievink2020-12-161-22/+2
| | | | | | | | ItemTree is per-file, so there is no unique crate associated with it. This means that it cannot know the active CfgOptions and thus couldn't handle `cfg_attr`. Prepare it for `cfg_attr`s by avoiding accessing attributes.
* Node-ify lifetimesLukas Wirth2020-12-161-2/+2
|
* Basic support for decl macros 2.0Jonas Schievink2020-12-151-1/+15
|
* Move to upstream `macro_rules!` modelJonas Schievink2020-12-151-7/+17
|
* Add LifetimeParam resolving to SemanticsLukas Wirth2020-12-141-3/+2
|
* Add Lifetimes to the HIRLukas Wirth2020-12-111-8/+12
|
* Remove item tree testsJonas Schievink2020-12-101-439/+0
| | | | | They were useful during initial development of the item tree, but now just cause churn
* Ignore extern items in incorrect-case checkJonas Schievink2020-12-101-5/+8
|
* Refactor is_intrinsic_fn_unsafe() and make it privateFrancesco Zardi2020-10-211-39/+42
|
* Move safe intrinsic testsFrancesco Zardi2020-10-211-20/+0
|
* Add whitelist of safe intrinsicsFrancesco Zardi2020-10-212-2/+62
|
* Update tests for new function fieldZac Pullar-Strecker2020-10-081-12/+12
|
* Differentiate method/tymethod by determining 'defaultness'Zac Pullar-Strecker2020-10-081-0/+3
| | | | | | | | | Currently a method only has defaultness if it is a provided trait method, but this will change when specialisation is available and may need to become a concept known to hir. I opted to go for a 'fewest changes' approach given specialisation is still under development.
* Give `ExternCrate` a `Name`, not a `ModPath`Jonas Schievink2020-09-172-3/+3
|
* Merge #6016bors[bot]2020-09-172-3/+4
|\ | | | | | | | | | | | | | | | | | | 6016: Emit diagnostics for unresolved imports and extern crates r=jonas-schievink a=jonas-schievink AFAIK, we don't have any major bugs in name resolution that would cause a lot of false positives here (except procedural attribute macro support and some rare issues around `#[path]` on module files), so these are *not* marked as experimental diagnostics right now. I noticed that diagnostics in a file sometimes don't get displayed after opening, but require some edit to be performed. This seems like a preexisting issue though. Co-authored-by: Jonas Schievink <[email protected]>
| * Store `Import` indices for later reconstructionJonas Schievink2020-09-162-3/+4
| |
* | Update chalk to 0.27 and adapt to chalk changes.Charles Lew2020-09-152-3/+5
|/
* Support extern typesJonas Schievink2020-08-241-0/+4
|
* Switch to expect_test from crates.ioAleksey Kladov2020-08-211-1/+1
|
* Rename ra_hir_def -> hir_defAleksey Kladov2020-08-132-0/+1144