Skip to main content

CodeGenerator

Struct CodeGenerator 

Source
pub struct CodeGenerator<'ast> { /* private fields */ }

Implementations§

Source§

impl<'ast> CodeGenerator<'ast>

Source

pub fn new(registry: SignatureRegistry, target: CompilationTarget) -> Self

Source

pub fn set_global_struct_field_types( &mut self, field_types: HashMap<String, HashMap<String, Type>>, )

Pre-populate struct field types from cross-module definitions. This enables type inference for fields on imported structs, preventing unnecessary .clone() on Copy-type fields.

Source

pub fn set_copy_types_registry(&mut self, registry: HashSet<String>)

Set Copy types registry from the global compiler state. This enables is_copy_type to recognize user-defined types with @derive(Copy) (e.g., VoxelType, FaceDirection) in addition to primitive Copy types.

Source

pub fn set_analyzed_trait_methods( &mut self, methods: HashMap<String, HashMap<String, AnalyzedFunction<'ast>>>, )

Set analyzed trait methods (used for trait signature inference from impls)

Source

pub fn set_workspace_root(&mut self, path: PathBuf)

Set the workspace root for relative paths in source maps

Source

pub fn set_inferred_bounds(&mut self, bounds: HashMap<String, InferredBounds>)

Set inferred trait bounds for functions

Source

pub fn new_for_module( registry: SignatureRegistry, target: CompilationTarget, ) -> Self

Source

pub fn set_output_file(&mut self, path: impl Into<PathBuf>)

Set the output file path for source mapping

Source

pub fn set_is_module(&mut self, is_module: bool)

Set whether this generator is producing module code (vs entry point)

Source

pub fn set_source_file(&mut self, path: impl Into<PathBuf>)

Set the Windjammer source file path for source mapping

Source

pub fn get_source_map(&self) -> &SourceMap

Get the source map (for saving after code generation)

Source

pub fn generate_program( &mut self, program: &Program<'ast>, analyzed: &[AnalyzedFunction<'ast>], ) -> String

Auto Trait Implementations§

§

impl<'ast> Freeze for CodeGenerator<'ast>

§

impl<'ast> RefUnwindSafe for CodeGenerator<'ast>

§

impl<'ast> Send for CodeGenerator<'ast>

§

impl<'ast> Sync for CodeGenerator<'ast>

§

impl<'ast> Unpin for CodeGenerator<'ast>

§

impl<'ast> UnsafeUnpin for CodeGenerator<'ast>

§

impl<'ast> UnwindSafe for CodeGenerator<'ast>

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
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

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

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

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.

Source§

impl<T> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

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

Source§

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>,

Source§

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.
Source§

impl<T> WithSubscriber for T

Source§

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
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

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