Add an ability to convert between Span and visit::Location

This commit is contained in:
Artem Agvanian 2024-08-16 14:28:06 -07:00
parent 569d7e3d15
commit 8bc120af82

View File

@ -465,6 +465,12 @@ impl Location {
}
}
impl From<Span> for Location {
fn from(span: Span) -> Self {
Location(span)
}
}
/// Reference to a place used to represent a partial projection.
pub struct PlaceRef<'a> {
pub local: Local,