about summary refs log tree commit diff
path: root/compiler/rustc_middle/src/middle/resolve_lifetime.rs
AgeCommit message (Collapse)AuthorLines
2023-02-16Rename some region-specific stuffMichael Goulet-55/+0
2022-09-24separate definitions and `HIR` ownersTakayuki Maeda-4/+4
fix a ui test use `into` fix clippy ui test fix a run-make-fulldeps test implement `IntoQueryParam<DefId>` for `OwnerId` use `OwnerId` for more queries change the type of `ParentOwnerIterator::Item` to `(OwnerId, OwnerNode)`
2022-09-16remove an unused struct fieldTakayuki Maeda-6/+1
2022-08-03Remove index from Region::EarlyBound.Camille GILLOT-1/+1
2022-08-03Create a specific `ObjectLifetimeDefault` enum.Camille GILLOT-1/+7
2022-07-26Stop creating anonymous late lifetimes.Camille GILLOT-1/+0
2022-06-04Completely remove LifetimeScopeForPath.Camille GILLOT-13/+0
2022-06-04Compute lifetimes in scope at diagnostic time.Camille GILLOT-2/+1
2022-06-03Manipulate lifetimes by LocalDefId for region resolution.Camille GILLOT-6/+5
2022-04-10Store LocalDefId in is_late_bound_map.Camille GILLOT-1/+1
This allows to avoid looking at HIR from borrowck.
2022-04-08check_doc_keyword: don't alloc string for emptiness checkklensy-1/+2
check_doc_alias_value: get argument as Symbol to prevent needless string convertions check_doc_attrs: don't alloc vec, iterate over slice. Vec introduced in #83149, but no perf run posted on merge replace as_str() check with symbol check get_single_str_from_tts: don't prealloc string trivial string to str replace LifetimeScopeForPath::NonElided use Vec<Symbol> instead of Vec<String> AssertModuleSource use BTreeSet<Symbol> instead of BTreeSet<String> CrateInfo.crate_name replace FxHashMap<CrateNum, String> with FxHashMap<CrateNum, Symbol>
2022-02-24Remove LifetimeDefOriginMichael Goulet-33/+3
2022-02-24Remove in-band lifetimesMichael Goulet-3/+0
2021-05-11improve diagnosts for GATsb-naber-0/+14
2021-03-31Add var to BoundRegion. Add query to get bound vars for applicable items.Jack Huey-0/+2
2021-03-31Make late and late_anon regions track the bound var positionJack Huey-2/+7
2021-03-24resolve late lifetimes by itemJack Huey-5/+0
This reverts commit 22ae20733515d710c1134600bc1e29cdd76f6b9b.
2021-01-16Enforce that query results implement DebugAaron Hill-1/+1
2020-08-30mv compiler to compiler/mark-0/+86