pub struct Compiler {
pub program_name: Option<String>,
pub statements_before_dce: u32,
pub statements_after_dce: u32,
/* private fields */
}
Expand description
The primary entry point of the Leo compiler.
Fields§
§program_name: Option<String>
The program name,
statements_before_dce: u32
How many statements were in the AST before DCE?
statements_after_dce: u32
How many statements were in the AST after DCE?
Implementations§
Source§impl Compiler
impl Compiler
pub fn parse(&mut self, source: &str, filename: FileName) -> Result<()>
pub fn parse_from_file( &mut self, source_file_path: impl AsRef<Path>, ) -> Result<()>
Sourcepub fn new(
expected_program_name: Option<String>,
is_test: bool,
handler: Handler,
output_directory: PathBuf,
compiler_options: Option<CompilerOptions>,
import_stubs: IndexMap<Symbol, Stub>,
network: NetworkName,
) -> Self
pub fn new( expected_program_name: Option<String>, is_test: bool, handler: Handler, output_directory: PathBuf, compiler_options: Option<CompilerOptions>, import_stubs: IndexMap<Symbol, Stub>, network: NetworkName, ) -> Self
Returns a new Leo compiler.
Sourcepub fn intermediate_passes(&mut self) -> Result<()>
pub fn intermediate_passes(&mut self) -> Result<()>
Runs the compiler stages.
Sourcepub fn compile(&mut self, source: &str, filename: FileName) -> Result<String>
pub fn compile(&mut self, source: &str, filename: FileName) -> Result<String>
Returns a compiled Leo program.
pub fn compile_from_file( &mut self, source_file_path: impl AsRef<Path>, ) -> Result<String>
Sourcepub fn add_import_stubs(&mut self) -> Result<()>
pub fn add_import_stubs(&mut self) -> Result<()>
Merge the imported stubs which are dependencies of the current program into the AST in topological order.
Auto Trait Implementations§
impl !Freeze for Compiler
impl !RefUnwindSafe for Compiler
impl !Send for Compiler
impl !Sync for Compiler
impl Unpin for Compiler
impl !UnwindSafe for Compiler
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