Struct rustc_ap_rustc_span::hygiene::SyntaxContext [−][src]
pub struct SyntaxContext(_);
Expand description
A SyntaxContext
represents a chain of pairs (ExpnId, Transparency)
named “marks”.
Implementations
impl SyntaxContext
[src]
impl SyntaxContext
[src]pub const fn root() -> Self
[src]
pub fn remove_mark(&mut self) -> ExpnId
[src]
pub fn remove_mark(&mut self) -> ExpnId
[src]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.
pub fn marks(self) -> Vec<(ExpnId, Transparency)>ⓘ
[src]
pub fn adjust(&mut self, expn_id: ExpnId) -> Option<ExpnId>
[src]
pub fn adjust(&mut self, expn_id: ExpnId) -> Option<ExpnId>
[src]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 `ExpnId` from `m`. pub fn $f() {} // `$f`'s `SyntaxContext` is empty. } foo::f(); // `f`'s `SyntaxContext` has a single `ExpnId` 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 `ExpnId` 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).
pub fn normalize_to_macros_2_0_and_adjust(
&mut self,
expn_id: ExpnId
) -> Option<ExpnId>
[src]
pub fn normalize_to_macros_2_0_and_adjust(
&mut self,
expn_id: ExpnId
) -> Option<ExpnId>
[src]Like SyntaxContext::adjust
, but also normalizes self
to macros 2.0.
pub fn glob_adjust(
&mut self,
expn_id: ExpnId,
glob_span: Span
) -> Option<Option<ExpnId>>
[src]
pub fn glob_adjust(
&mut self,
expn_id: ExpnId,
glob_span: Span
) -> Option<Option<ExpnId>>
[src]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 `ExpnId` 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).
pub fn reverse_glob_adjust(
&mut self,
expn_id: ExpnId,
glob_span: Span
) -> Option<Option<ExpnId>>
[src]
pub fn reverse_glob_adjust(
&mut self,
expn_id: ExpnId,
glob_span: Span
) -> Option<Option<ExpnId>>
[src]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 hygienic_eq(self, other: SyntaxContext, expn_id: ExpnId) -> bool
[src]
pub fn normalize_to_macros_2_0(self) -> SyntaxContext
[src]
pub fn normalize_to_macro_rules(self) -> SyntaxContext
[src]
pub fn outer_expn(self) -> ExpnId
[src]
pub fn outer_expn_data(self) -> ExpnData
[src]
pub fn outer_expn_data(self) -> ExpnData
[src]ctxt.outer_expn_data()
is equivalent to but faster than
ctxt.outer_expn().expn_data()
.
pub fn outer_mark(self) -> (ExpnId, Transparency)
[src]
pub fn dollar_crate_name(self) -> Symbol
[src]
pub fn edition(self) -> Edition
[src]
Trait Implementations
impl Clone for SyntaxContext
[src]
impl Clone for SyntaxContext
[src]fn clone(&self) -> SyntaxContext
[src]
fn clone(&self) -> SyntaxContext
[src]Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]Performs copy-assignment from source
. Read more
impl Debug for SyntaxContext
[src]
impl Debug for SyntaxContext
[src]impl<D: Decoder> Decodable<D> for SyntaxContext
[src]
impl<D: Decoder> Decodable<D> for SyntaxContext
[src]impl<E: Encoder> Encodable<E> for SyntaxContext
[src]
impl<E: Encoder> Encodable<E> for SyntaxContext
[src]impl Hash for SyntaxContext
[src]
impl Hash for SyntaxContext
[src]impl<CTX: HashStableContext> HashStable<CTX> for SyntaxContext
[src]
impl<CTX: HashStableContext> HashStable<CTX> for SyntaxContext
[src]fn hash_stable(&self, ctx: &mut CTX, hasher: &mut StableHasher)
[src]
impl Ord for SyntaxContext
[src]
impl Ord for SyntaxContext
[src]impl PartialEq<SyntaxContext> for SyntaxContext
[src]
impl PartialEq<SyntaxContext> for SyntaxContext
[src]fn eq(&self, other: &SyntaxContext) -> bool
[src]
fn eq(&self, other: &SyntaxContext) -> bool
[src]This method tests for self
and other
values to be equal, and is used
by ==
. Read more
fn ne(&self, other: &SyntaxContext) -> bool
[src]
fn ne(&self, other: &SyntaxContext) -> bool
[src]This method tests for !=
.
impl PartialOrd<SyntaxContext> for SyntaxContext
[src]
impl PartialOrd<SyntaxContext> for SyntaxContext
[src]fn partial_cmp(&self, other: &SyntaxContext) -> Option<Ordering>
[src]
fn partial_cmp(&self, other: &SyntaxContext) -> Option<Ordering>
[src]This method returns an ordering between self
and other
values if one exists. Read more
#[must_use]fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]fn lt(&self, other: &Rhs) -> bool
1.0.0[src]This method tests less than (for self
and other
) and is used by the <
operator. Read more
#[must_use]fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]fn le(&self, other: &Rhs) -> bool
1.0.0[src]This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl Copy for SyntaxContext
[src]
impl Eq for SyntaxContext
[src]
impl StructuralEq for SyntaxContext
[src]
impl StructuralPartialEq for SyntaxContext
[src]
Auto Trait Implementations
impl RefUnwindSafe for SyntaxContext
impl Send for SyntaxContext
impl Sync for SyntaxContext
impl Unpin for SyntaxContext
impl UnwindSafe for SyntaxContext
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more
impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
[src]
impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
[src]pub fn equivalent(&self, key: &K) -> bool
[src]
pub fn equivalent(&self, key: &K) -> bool
[src]Compare self to key
and return true
if they are equal.
impl<T> Instrument for T
[src]
impl<T> Instrument for T
[src]fn instrument(self, span: Span) -> Instrumented<Self>
[src]
fn instrument(self, span: Span) -> Instrumented<Self>
[src]Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
fn in_current_span(self) -> Instrumented<Self>
[src]
fn in_current_span(self) -> Instrumented<Self>
[src]impl<T> Same<T> for T
impl<T> Same<T> for T
type Output = T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
[src]type Owned = T
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn to_owned(&self) -> T
[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)
[src]
pub fn clone_into(&self, target: &mut T)
[src]🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
pub fn vzip(self) -> V
impl<'a, T> Captures<'a> for T where
T: ?Sized,
[src]
T: ?Sized,