pub struct VariableAllocator<'db> {
pub db: &'db dyn LoweringGroup,
pub variables: Arena<Variable>,
pub module_file_id: ModuleFileId,
pub lookup_context: ImplLookupContext,
}
Fields§
§db: &'db dyn LoweringGroup
§variables: Arena<Variable>
Arena of allocated lowered variables.
module_file_id: ModuleFileId
Module and file of the declared function.
lookup_context: ImplLookupContext
Implementations§
source§impl<'db> VariableAllocator<'db>
impl<'db> VariableAllocator<'db>
pub fn new( db: &'db dyn LoweringGroup, function_id: FunctionWithBodyId, variables: Arena<Variable>, ) -> Maybe<Self>
sourcepub fn new_var(&mut self, req: VarRequest) -> VariableId
pub fn new_var(&mut self, req: VarRequest) -> VariableId
Allocates a new variable in the context’s variable arena according to the context.
sourcepub fn get_location(&self, stable_ptr: SyntaxStablePtrId) -> LocationId
pub fn get_location(&self, stable_ptr: SyntaxStablePtrId) -> LocationId
Retrieves the LocationId of a stable syntax pointer in the current function file.
Trait Implementations§
Auto Trait Implementations§
impl<'db> Freeze for VariableAllocator<'db>
impl<'db> !RefUnwindSafe for VariableAllocator<'db>
impl<'db> !Send for VariableAllocator<'db>
impl<'db> !Sync for VariableAllocator<'db>
impl<'db> Unpin for VariableAllocator<'db>
impl<'db> !UnwindSafe for VariableAllocator<'db>
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
Mutably borrows from an owned value. Read more
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>
Converts
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>
Converts
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