pub struct SyntaxContext(/* private fields */);
Expand description
A SyntaxContext represents a chain of macro expansions (represented by marks).
Implementations§
source§impl SyntaxContext
impl SyntaxContext
pub const fn empty() -> Self
sourcepub fn has_mark(self, mark: Mark) -> bool
pub fn has_mark(self, mark: Mark) -> bool
Returns true
if self
is marked with mark
.
Panics if mark
is not a valid mark.
pub fn as_u32(self) -> u32
pub fn from_u32(raw: u32) -> SyntaxContext
sourcepub fn apply_mark(self, mark: Mark) -> SyntaxContext
pub fn apply_mark(self, mark: Mark) -> SyntaxContext
Extend a syntax context with a given mark and default transparency for that mark.
sourcepub fn remove_mark(&mut self) -> Mark
pub fn remove_mark(&mut self) -> Mark
Pulls a single mark off of the syntax context. This effectively moves the context up one macro definition level. That is, if we have a nested macro definition as follows:
macro_rules! f {
macro_rules! g {
...
}
}
and we have a SyntaxContext that is referring to something declared by an invocation of g (call it g1), calling remove_mark will result in the SyntaxContext for the invocation of f that created g1. Returns the mark that was removed.
sourcepub fn adjust(&mut self, expansion: Mark) -> Option<Mark>
pub fn adjust(&mut self, expansion: Mark) -> Option<Mark>
Adjust this context for resolution in a scope created by the given
expansion. For example, consider the following three resolutions of
f
:
mod foo {
pub fn f() {}
} // `f`'s `SyntaxContext` is empty.
m!(f);
macro m($f:ident) {
mod bar {
pub fn f() {} // `f`'s `SyntaxContext` has a single `Mark` from `m`.
pub fn $f() {} // `$f`'s `SyntaxContext` is empty.
}
foo::f(); // `f`'s `SyntaxContext` has a single `Mark` from `m`
//^ Since `mod foo` is outside this expansion, `adjust` removes the mark from `f`,
//| and it resolves to `::foo::f`.
bar::f(); // `f`'s `SyntaxContext` has a single `Mark` from `m`
//^ Since `mod bar` not outside this expansion, `adjust` does not change `f`,
//| and it resolves to `::bar::f`.
bar::$f(); // `f`'s `SyntaxContext` is empty.
//^ Since `mod bar` is not outside this expansion, `adjust` does not change `$f`,
//| and it resolves to `::bar::$f`.
}
This returns the expansion whose definition scope we use to privacy
check the resolution, or None
if we privacy check as usual (i.e.
not w.r.t. a macro definition scope).
sourcepub fn glob_adjust(
&mut self,
expansion: Mark,
glob_ctxt: SyntaxContext,
) -> Option<Option<Mark>>
pub fn glob_adjust( &mut self, expansion: Mark, glob_ctxt: SyntaxContext, ) -> Option<Option<Mark>>
Adjust this context for resolution in a scope created by the given
expansion via a glob import with the given SyntaxContext
.
For example:
m!(f);
macro m($i:ident) {
mod foo {
pub fn f() {} // `f`'s `SyntaxContext` has a single `Mark` from `m`.
pub fn $i() {} // `$i`'s `SyntaxContext` is empty.
}
n(f);
macro n($j:ident) {
use foo::*;
f(); // `f`'s `SyntaxContext` has a mark from `m` and a mark from `n`
//^ `glob_adjust` removes the mark from `n`, so this resolves to `foo::f`.
$i(); // `$i`'s `SyntaxContext` has a mark from `n`
//^ `glob_adjust` removes the mark from `n`, so this resolves to `foo::$i`.
$j(); // `$j`'s `SyntaxContext` has a mark from `m`
//^ This cannot be glob-adjusted, so this is a resolution error.
}
}
This returns None
if the context cannot be glob-adjusted.
Otherwise, it returns the scope to use when privacy checking (see
adjust
for details).
sourcepub fn reverse_glob_adjust(
&mut self,
expansion: Mark,
glob_ctxt: SyntaxContext,
) -> Option<Option<Mark>>
pub fn reverse_glob_adjust( &mut self, expansion: Mark, glob_ctxt: SyntaxContext, ) -> Option<Option<Mark>>
Undo glob_adjust
if possible:
if let Some(privacy_checking_scope) = self.reverse_glob_adjust(expansion, glob_ctxt) {
assert!(self.glob_adjust(expansion, glob_ctxt) == Some(privacy_checking_scope));
}
pub fn outer(self) -> Mark
Trait Implementations§
source§impl Clone for SyntaxContext
impl Clone for SyntaxContext
source§fn clone(&self) -> SyntaxContext
fn clone(&self) -> SyntaxContext
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for SyntaxContext
impl Debug for SyntaxContext
source§impl Default for SyntaxContext
impl Default for SyntaxContext
source§fn default() -> SyntaxContext
fn default() -> SyntaxContext
source§impl<'de> Deserialize<'de> for SyntaxContext
impl<'de> Deserialize<'de> for SyntaxContext
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
source§impl EqIgnoreSpan for SyntaxContext
impl EqIgnoreSpan for SyntaxContext
fn eq_ignore_span(&self, other: &Self) -> bool
source§impl Hash for SyntaxContext
impl Hash for SyntaxContext
source§impl Ord for SyntaxContext
impl Ord for SyntaxContext
source§fn cmp(&self, other: &SyntaxContext) -> Ordering
fn cmp(&self, other: &SyntaxContext) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
source§impl PartialEq for SyntaxContext
impl PartialEq for SyntaxContext
source§impl PartialOrd for SyntaxContext
impl PartialOrd for SyntaxContext
source§impl Serialize for SyntaxContext
impl Serialize for SyntaxContext
source§impl TypeEq for SyntaxContext
impl TypeEq for SyntaxContext
impl Copy for SyntaxContext
impl Eq for SyntaxContext
impl StructuralPartialEq for SyntaxContext
Auto Trait Implementations§
impl Freeze for SyntaxContext
impl RefUnwindSafe for SyntaxContext
impl Send for SyntaxContext
impl Sync for SyntaxContext
impl Unpin for SyntaxContext
impl UnwindSafe for SyntaxContext
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
§impl<T> CallHasher for T
impl<T> CallHasher for T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more