Span::resolved_at and Span::located_at to combine behavior of two spans
diff --git a/src/unstable.rs b/src/unstable.rs
index f8cd68c..1c4b834 100644
--- a/src/unstable.rs
+++ b/src/unstable.rs
@@ -225,6 +225,14 @@
         Span(proc_macro::Span::def_site())
     }
 
+    pub fn resolved_at(&self, other: Span) -> Span {
+        Span(self.0.resolved_at(other.0))
+    }
+
+    pub fn located_at(&self, other: Span) -> Span {
+        Span(self.0.located_at(other.0))
+    }
+
     pub fn unstable(self) -> proc_macro::Span {
         self.0
     }