Skip to main content

Program

Struct Program 

Source
pub struct Program {
    pub files: Arena<SourceFile>,
    pub settings: Option<Settings>,
    pub global_variables: Arena<WorkshopVariable>,
    pub player_variables: Arena<WorkshopVariable>,
    pub subroutines: Arena<WorkshopSubroutine>,
    pub rules: Arena<Rule>,
    pub values: Arena<ValueNode>,
    pub actions: Arena<Action>,
}
Expand description

The Workshop IR program: tables and arenas produced by lowering.

Fields§

§files: Arena<SourceFile>

The source-file registry, copied from the source HIR so spans remain resolvable for diagnostics.

§settings: Option<Settings>

The custom-game-settings carrier, copied inertly from the source HIR (emitted verbatim, never lowered, #86).

§global_variables: Arena<WorkshopVariable>§player_variables: Arena<WorkshopVariable>§subroutines: Arena<WorkshopSubroutine>§rules: Arena<Rule>§values: Arena<ValueNode>§actions: Arena<Action>

Implementations§

Source§

impl Program

Source

pub fn element_count( &self, catalog: &Catalog, ) -> Result<ElementCountReport, ElementCountError>

Count the canonical Workshop target represented by this WIR program.

The catalog is used to reject unknown action/value identities before a report is produced. Native display actions are represented by their canonical catalog-backed action calls.

Source§

impl Program

Source

pub fn validate(&self) -> Result<(), IrError>

Validate structural invariants: every ID resolves and every span is valid. Returns the first violation as a structured IrError.

Source

pub fn semantic_issues(&self, catalog: &Catalog) -> Vec<SemanticIssue>

Report preserved or unknown constructs separately from structural validation so consumers cannot present analysis as definitive.

Source

pub fn dump(&self) -> String

Render a deterministic debug dump of the workshop program.

Trait Implementations§

Source§

impl Clone for Program

Source§

fn clone(&self) -> Program

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Program

Source§

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

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

impl Default for Program

Source§

fn default() -> Self

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

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

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

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> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

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

Source§

type Error = !

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.