summaryrefslogtreecommitdiff
path: root/rust/proc-macro2/probe/proc_macro_span_location.rs
diff options
context:
space:
mode:
Diffstat (limited to 'rust/proc-macro2/probe/proc_macro_span_location.rs')
-rw-r--r--rust/proc-macro2/probe/proc_macro_span_location.rs23
1 files changed, 23 insertions, 0 deletions
diff --git a/rust/proc-macro2/probe/proc_macro_span_location.rs b/rust/proc-macro2/probe/proc_macro_span_location.rs
new file mode 100644
index 000000000000..ae19c93394fa
--- /dev/null
+++ b/rust/proc-macro2/probe/proc_macro_span_location.rs
@@ -0,0 +1,23 @@
+// SPDX-License-Identifier: Apache-2.0 OR MIT
+
+// The subset of Span's API stabilized in Rust 1.88.
+
+extern crate proc_macro;
+
+use proc_macro::Span;
+
+pub fn start(this: &Span) -> Span {
+ this.start()
+}
+
+pub fn end(this: &Span) -> Span {
+ this.end()
+}
+
+pub fn line(this: &Span) -> usize {
+ this.line()
+}
+
+pub fn column(this: &Span) -> usize {
+ this.column()
+}