Struct hir_def::body::BodySourceMap

source ·
pub struct BodySourceMap { /* private fields */ }
Expand description

An item body together with the mapping from syntax nodes to HIR expression IDs. This is needed to go from e.g. a position in a file to the HIR expression containing it; but for type inference etc., we want to operate on a structure that is agnostic to the actual positions of expressions in the file, so that we don’t recompute types whenever some whitespace is typed.

One complication here is that, due to macro expansion, a single Body might be spread across several files. So, for each ExprId and PatId, we record both the HirFileId and the position inside the file. However, we only store AST -> ExprId mapping for non-macro files, as it is not clear how to handle this properly for macros.

Implementations§

source§

impl BodySourceMap

source

pub fn expr_syntax(&self, expr: ExprId) -> Result<ExprSource, SyntheticSyntax>

source

pub fn node_expr(&self, node: InFile<&Expr>) -> Option<ExprId>

source

pub fn node_macro_file(&self, node: InFile<&MacroCall>) -> Option<HirFileId>

source

pub fn pat_syntax(&self, pat: PatId) -> Result<PatSource, SyntheticSyntax>

source

pub fn self_param_syntax(&self) -> Option<InFile<AstPtr<SelfParam>>>

source

pub fn node_pat(&self, node: InFile<&Pat>) -> Option<PatId>

source

pub fn label_syntax(&self, label: LabelId) -> LabelSource

source

pub fn node_label(&self, node: InFile<&Label>) -> Option<LabelId>

source

pub fn field_syntax(&self, expr: ExprId) -> FieldSource

source

pub fn pat_field_syntax(&self, pat: PatId) -> PatFieldSource

source

pub fn macro_expansion_expr(&self, node: InFile<&MacroExpr>) -> Option<ExprId>

source

pub fn implicit_format_args( &self, node: InFile<&FormatArgsExpr> ) -> Option<&[(TextRange, Name)]>

source

pub fn diagnostics(&self) -> &[BodyDiagnostic]

Get a reference to the body source map’s diagnostics.

Trait Implementations§

source§

impl Debug for BodySourceMap

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for BodySourceMap

source§

fn default() -> BodySourceMap

Returns the “default value” for a type. Read more
source§

impl PartialEq for BodySourceMap

source§

fn eq(&self, other: &BodySourceMap) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Eq for BodySourceMap

source§

impl StructuralPartialEq for BodySourceMap

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> IntoBox<dyn Any> for T
where T: Any,

§

fn into_box(self) -> Box<dyn Any>

Convert self into the appropriate boxed form.
§

impl<T> IntoBox<dyn Any + Send> for T
where T: Any + Send,

§

fn into_box(self) -> Box<dyn Any + Send>

Convert self into the appropriate boxed form.
§

impl<T> IntoBox<dyn Any + Send + Sync> for T
where T: Any + Send + Sync,

§

fn into_box(self) -> Box<dyn Any + Send + Sync>

Convert self into the appropriate boxed form.
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more