-
-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #366 from dtolnay-contrib/delim
Add DelimSpan to hold the 3 different spans of a delimiter
- Loading branch information
Showing
3 changed files
with
114 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
//! Items which do not have a correspondence to any API in the proc_macro crate, | ||
//! but are necessary to include in proc-macro2. | ||
use crate::fallback; | ||
use crate::imp; | ||
use crate::marker::Marker; | ||
use crate::Span; | ||
use core::fmt::{self, Debug}; | ||
|
||
/// An object that holds a [`Group`]'s `span_open()` and `span_close()` together | ||
/// (in a more compact representation than holding those 2 spans individually. | ||
/// | ||
/// [`Group`]: crate::Group | ||
#[derive(Copy, Clone)] | ||
pub struct DelimSpan { | ||
inner: DelimSpanEnum, | ||
_marker: Marker, | ||
} | ||
|
||
#[derive(Copy, Clone)] | ||
enum DelimSpanEnum { | ||
#[cfg(wrap_proc_macro)] | ||
Compiler { | ||
join: proc_macro::Span, | ||
#[cfg(not(no_group_open_close))] | ||
open: proc_macro::Span, | ||
#[cfg(not(no_group_open_close))] | ||
close: proc_macro::Span, | ||
}, | ||
Fallback(fallback::Span), | ||
} | ||
|
||
impl DelimSpan { | ||
pub(crate) fn new(group: &imp::Group) -> Self { | ||
#[cfg(wrap_proc_macro)] | ||
let inner = match group { | ||
imp::Group::Compiler(group) => DelimSpanEnum::Compiler { | ||
join: group.span(), | ||
#[cfg(not(no_group_open_close))] | ||
open: group.span_open(), | ||
#[cfg(not(no_group_open_close))] | ||
close: group.span_close(), | ||
}, | ||
imp::Group::Fallback(group) => DelimSpanEnum::Fallback(group.span()), | ||
}; | ||
|
||
#[cfg(not(wrap_proc_macro))] | ||
let inner = DelimSpanEnum::Fallback(group.span()); | ||
|
||
DelimSpan { | ||
inner, | ||
_marker: Marker, | ||
} | ||
} | ||
|
||
/// Returns a span covering the entire delimited group. | ||
pub fn join(&self) -> Span { | ||
match &self.inner { | ||
#[cfg(wrap_proc_macro)] | ||
DelimSpanEnum::Compiler { join, .. } => Span::_new(imp::Span::Compiler(*join)), | ||
DelimSpanEnum::Fallback(span) => Span::_new_stable(*span), | ||
} | ||
} | ||
|
||
/// Returns a span for the opening punctuation of the group only. | ||
pub fn open(&self) -> Span { | ||
match &self.inner { | ||
#[cfg(wrap_proc_macro)] | ||
DelimSpanEnum::Compiler { | ||
#[cfg(not(no_group_open_close))] | ||
open, | ||
#[cfg(no_group_open_close)] | ||
join: open, | ||
.. | ||
} => Span::_new(imp::Span::Compiler(*open)), | ||
DelimSpanEnum::Fallback(span) => Span::_new_stable(span.first_byte()), | ||
} | ||
} | ||
|
||
/// Returns a span for the closing punctuation of the group only. | ||
pub fn close(&self) -> Span { | ||
match &self.inner { | ||
#[cfg(wrap_proc_macro)] | ||
DelimSpanEnum::Compiler { | ||
#[cfg(not(no_group_open_close))] | ||
close, | ||
#[cfg(no_group_open_close)] | ||
join: close, | ||
.. | ||
} => Span::_new(imp::Span::Compiler(*close)), | ||
DelimSpanEnum::Fallback(span) => Span::_new_stable(span.last_byte()), | ||
} | ||
} | ||
} | ||
|
||
impl Debug for DelimSpan { | ||
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { | ||
Debug::fmt(&self.join(), f) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters