There's no need to check binders_to_ignore using the old code anymore
This commit is contained in:
parent
19dcbd151b
commit
5a184acfc6
@ -1471,11 +1471,10 @@ fn create_and_capture_lifetime_defs(
|
|||||||
if let Some(mut captured_lifetimes) = self.captured_lifetimes.take() {
|
if let Some(mut captured_lifetimes) = self.captured_lifetimes.take() {
|
||||||
match res {
|
match res {
|
||||||
LifetimeRes::Param { param, binder } => {
|
LifetimeRes::Param { param, binder } => {
|
||||||
if !captured_lifetimes.binders_to_ignore.contains(&binder)
|
if !binders_to_ignore
|
||||||
&& !binders_to_ignore
|
.get(&lifetime.id)
|
||||||
.get(&lifetime.id)
|
.unwrap_or(&Vec::new())
|
||||||
.unwrap_or(&Vec::new())
|
.contains(&binder)
|
||||||
.contains(&binder)
|
|
||||||
{
|
{
|
||||||
match captured_lifetimes.captures.entry(param) {
|
match captured_lifetimes.captures.entry(param) {
|
||||||
Entry::Occupied(_) => {}
|
Entry::Occupied(_) => {}
|
||||||
@ -1497,11 +1496,10 @@ fn create_and_capture_lifetime_defs(
|
|||||||
|
|
||||||
LifetimeRes::Fresh { param, binder } => {
|
LifetimeRes::Fresh { param, binder } => {
|
||||||
debug_assert_eq!(ident.name, kw::UnderscoreLifetime);
|
debug_assert_eq!(ident.name, kw::UnderscoreLifetime);
|
||||||
if !captured_lifetimes.binders_to_ignore.contains(&binder)
|
if !binders_to_ignore
|
||||||
&& !binders_to_ignore
|
.get(&lifetime.id)
|
||||||
.get(&lifetime.id)
|
.unwrap_or(&Vec::new())
|
||||||
.unwrap_or(&Vec::new())
|
.contains(&binder)
|
||||||
.contains(&binder)
|
|
||||||
{
|
{
|
||||||
let param = self.local_def_id(param);
|
let param = self.local_def_id(param);
|
||||||
match captured_lifetimes.captures.entry(param) {
|
match captured_lifetimes.captures.entry(param) {
|
||||||
|
Loading…
Reference in New Issue
Block a user