Merge proc_macro_span_shrink and proc_macro_span
This commit is contained in:
parent
cd1c1b1a9f
commit
abd0677d2f
2 changed files with 3 additions and 3 deletions
|
@ -494,13 +494,13 @@ impl Span {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Creates an empty span pointing to directly before this span.
|
/// Creates an empty span pointing to directly before this span.
|
||||||
#[unstable(feature = "proc_macro_span_shrink", issue = "87552")]
|
#[unstable(feature = "proc_macro_span", issue = "54725")]
|
||||||
pub fn start(&self) -> Span {
|
pub fn start(&self) -> Span {
|
||||||
Span(self.0.start())
|
Span(self.0.start())
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Creates an empty span pointing to directly after this span.
|
/// Creates an empty span pointing to directly after this span.
|
||||||
#[unstable(feature = "proc_macro_span_shrink", issue = "87552")]
|
#[unstable(feature = "proc_macro_span", issue = "54725")]
|
||||||
pub fn end(&self) -> Span {
|
pub fn end(&self) -> Span {
|
||||||
Span(self.0.end())
|
Span(self.0.end())
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
// lossy string reparse hack (https://github.com/rust-lang/rust/issues/43081).
|
// lossy string reparse hack (https://github.com/rust-lang/rust/issues/43081).
|
||||||
|
|
||||||
#![crate_type = "proc-macro"]
|
#![crate_type = "proc-macro"]
|
||||||
#![feature(proc_macro_span, proc_macro_span_shrink)]
|
#![feature(proc_macro_span)]
|
||||||
|
|
||||||
extern crate proc_macro;
|
extern crate proc_macro;
|
||||||
use proc_macro::{token_stream, Delimiter, TokenStream, TokenTree};
|
use proc_macro::{token_stream, Delimiter, TokenStream, TokenTree};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue