Struct move_compiler::command_line::compiler::SteppedCompiler
source · [−]pub struct SteppedCompiler<'a, const P: Pass> { /* private fields */ }
Implementations
sourceimpl<'a, const P: Pass> SteppedCompiler<'a, P>
impl<'a, const P: Pass> SteppedCompiler<'a, P>
pub fn compilation_env(&mut self) -> &mut CompilationEnv
sourceimpl<'a> SteppedCompiler<'a, EMPTY_COMPILER>
impl<'a> SteppedCompiler<'a, EMPTY_COMPILER>
pub fn at_parser(self, ast: Program) -> SteppedCompiler<'a, { PASS_PARSER }>
pub fn at_expansion(
self,
ast: Program
) -> SteppedCompiler<'a, { PASS_EXPANSION }>
pub fn at_naming(self, ast: Program) -> SteppedCompiler<'a, { PASS_NAMING }>
pub fn at_typing(self, ast: Program) -> SteppedCompiler<'a, { PASS_TYPING }>
pub fn at_hlir(self, ast: Program) -> SteppedCompiler<'a, { PASS_HLIR }>
pub fn at_cfgir(self, ast: Program) -> SteppedCompiler<'a, { PASS_CFGIR }>
sourceimpl<'a> SteppedCompiler<'a, { PASS_PARSER }>
impl<'a> SteppedCompiler<'a, { PASS_PARSER }>
pub fn run<const TARGET: Pass>(
self
) -> Result<SteppedCompiler<'a, TARGET>, Diagnostics>
pub fn into_ast(self) -> (SteppedCompiler<'a, EMPTY_COMPILER>, Program)
pub fn check(self) -> Result<(), Diagnostics>
pub fn build(
self
) -> Result<(Vec<AnnotatedCompiledUnit>, Diagnostics), Diagnostics>
pub fn check_and_report(self, files: &FilesSourceText)
pub fn build_and_report(
self,
files: &FilesSourceText
) -> Vec<AnnotatedCompiledUnit>ⓘNotable traits for Vec<u8, A>impl<A> Write for Vec<u8, A> where
A: Allocator,
A: Allocator,
sourceimpl<'a> SteppedCompiler<'a, { PASS_EXPANSION }>
impl<'a> SteppedCompiler<'a, { PASS_EXPANSION }>
pub fn run<const TARGET: Pass>(
self
) -> Result<SteppedCompiler<'a, TARGET>, Diagnostics>
pub fn into_ast(self) -> (SteppedCompiler<'a, EMPTY_COMPILER>, Program)
pub fn check(self) -> Result<(), Diagnostics>
pub fn build(
self
) -> Result<(Vec<AnnotatedCompiledUnit>, Diagnostics), Diagnostics>
pub fn check_and_report(self, files: &FilesSourceText)
pub fn build_and_report(
self,
files: &FilesSourceText
) -> Vec<AnnotatedCompiledUnit>ⓘNotable traits for Vec<u8, A>impl<A> Write for Vec<u8, A> where
A: Allocator,
A: Allocator,
sourceimpl<'a> SteppedCompiler<'a, { PASS_NAMING }>
impl<'a> SteppedCompiler<'a, { PASS_NAMING }>
pub fn run<const TARGET: Pass>(
self
) -> Result<SteppedCompiler<'a, TARGET>, Diagnostics>
pub fn into_ast(self) -> (SteppedCompiler<'a, EMPTY_COMPILER>, Program)
pub fn check(self) -> Result<(), Diagnostics>
pub fn build(
self
) -> Result<(Vec<AnnotatedCompiledUnit>, Diagnostics), Diagnostics>
pub fn check_and_report(self, files: &FilesSourceText)
pub fn build_and_report(
self,
files: &FilesSourceText
) -> Vec<AnnotatedCompiledUnit>ⓘNotable traits for Vec<u8, A>impl<A> Write for Vec<u8, A> where
A: Allocator,
A: Allocator,
sourceimpl<'a> SteppedCompiler<'a, { PASS_TYPING }>
impl<'a> SteppedCompiler<'a, { PASS_TYPING }>
pub fn run<const TARGET: Pass>(
self
) -> Result<SteppedCompiler<'a, TARGET>, Diagnostics>
pub fn into_ast(self) -> (SteppedCompiler<'a, EMPTY_COMPILER>, Program)
pub fn check(self) -> Result<(), Diagnostics>
pub fn build(
self
) -> Result<(Vec<AnnotatedCompiledUnit>, Diagnostics), Diagnostics>
pub fn check_and_report(self, files: &FilesSourceText)
pub fn build_and_report(
self,
files: &FilesSourceText
) -> Vec<AnnotatedCompiledUnit>ⓘNotable traits for Vec<u8, A>impl<A> Write for Vec<u8, A> where
A: Allocator,
A: Allocator,
sourceimpl<'a> SteppedCompiler<'a, { PASS_HLIR }>
impl<'a> SteppedCompiler<'a, { PASS_HLIR }>
pub fn run<const TARGET: Pass>(
self
) -> Result<SteppedCompiler<'a, TARGET>, Diagnostics>
pub fn into_ast(self) -> (SteppedCompiler<'a, EMPTY_COMPILER>, Program)
pub fn check(self) -> Result<(), Diagnostics>
pub fn build(
self
) -> Result<(Vec<AnnotatedCompiledUnit>, Diagnostics), Diagnostics>
pub fn check_and_report(self, files: &FilesSourceText)
pub fn build_and_report(
self,
files: &FilesSourceText
) -> Vec<AnnotatedCompiledUnit>ⓘNotable traits for Vec<u8, A>impl<A> Write for Vec<u8, A> where
A: Allocator,
A: Allocator,
sourceimpl<'a> SteppedCompiler<'a, { PASS_CFGIR }>
impl<'a> SteppedCompiler<'a, { PASS_CFGIR }>
pub fn run<const TARGET: Pass>(
self
) -> Result<SteppedCompiler<'a, TARGET>, Diagnostics>
pub fn into_ast(self) -> (SteppedCompiler<'a, EMPTY_COMPILER>, Program)
pub fn check(self) -> Result<(), Diagnostics>
pub fn build(
self
) -> Result<(Vec<AnnotatedCompiledUnit>, Diagnostics), Diagnostics>
pub fn check_and_report(self, files: &FilesSourceText)
pub fn build_and_report(
self,
files: &FilesSourceText
) -> Vec<AnnotatedCompiledUnit>ⓘNotable traits for Vec<u8, A>impl<A> Write for Vec<u8, A> where
A: Allocator,
A: Allocator,
sourceimpl<'a> SteppedCompiler<'a, PASS_COMPILATION>
impl<'a> SteppedCompiler<'a, PASS_COMPILATION>
pub fn into_compiled_units(self) -> (Vec<AnnotatedCompiledUnit>, Diagnostics)
Auto Trait Implementations
impl<'a, const P: u8> RefUnwindSafe for SteppedCompiler<'a, P>
impl<'a, const P: u8> Send for SteppedCompiler<'a, P>
impl<'a, const P: u8> Sync for SteppedCompiler<'a, P>
impl<'a, const P: u8> Unpin for SteppedCompiler<'a, P>
impl<'a, const P: u8> UnwindSafe for SteppedCompiler<'a, P>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more