2024-06-17 17:59:08 -04:00
|
|
|
use rustc_type_ir::{self as ty, Interner, ProjectionPredicate};
|
2024-06-17 19:12:23 -04:00
|
|
|
use tracing::instrument;
|
2023-12-18 07:49:46 +01:00
|
|
|
|
2024-06-17 17:59:08 -04:00
|
|
|
use crate::infcx::SolverDelegate;
|
|
|
|
|
use crate::solve::{Certainty, EvalCtxt, Goal, GoalSource, QueryResult};
|
2023-12-07 18:20:27 +01:00
|
|
|
|
2024-06-17 17:59:08 -04:00
|
|
|
impl<Infcx, I> EvalCtxt<'_, Infcx>
|
|
|
|
|
where
|
|
|
|
|
Infcx: SolverDelegate<Interner = I>,
|
|
|
|
|
I: Interner,
|
|
|
|
|
{
|
2024-05-12 03:29:50 +00:00
|
|
|
#[instrument(level = "trace", skip(self), ret)]
|
2023-12-07 18:20:27 +01:00
|
|
|
pub(super) fn compute_projection_goal(
|
|
|
|
|
&mut self,
|
2024-06-17 17:59:08 -04:00
|
|
|
goal: Goal<I, ProjectionPredicate<I>>,
|
|
|
|
|
) -> QueryResult<I> {
|
2024-05-19 11:37:56 -04:00
|
|
|
let tcx = self.interner();
|
2024-05-13 10:00:38 -04:00
|
|
|
let projection_term = goal.predicate.projection_term.to_term(tcx);
|
2023-12-18 07:49:46 +01:00
|
|
|
let goal = goal.with(
|
2023-12-13 14:11:09 +00:00
|
|
|
tcx,
|
|
|
|
|
ty::PredicateKind::AliasRelate(
|
|
|
|
|
projection_term,
|
|
|
|
|
goal.predicate.term,
|
|
|
|
|
ty::AliasRelationDirection::Equate,
|
|
|
|
|
),
|
2023-12-18 07:49:46 +01:00
|
|
|
);
|
|
|
|
|
self.add_goal(GoalSource::Misc, goal);
|
2023-12-13 14:11:09 +00:00
|
|
|
self.evaluate_added_goals_and_make_canonical_response(Certainty::Yes)
|
2023-12-07 18:20:27 +01:00
|
|
|
}
|
|
|
|
|
}
|