[][src]Struct chrysanthemum::verify::VContext

pub struct VContext {
    pub functions: FnvHashMap<String, FunctionDef>,
    pub types: FnvHashMap<Type, TypeDef>,
}

Verification context. Contains things like symbol tables, etc.

The Default impl will give you the default type and function definitions, too.

Fields

functions: FnvHashMap<String, FunctionDef>

Function definitions.

types: FnvHashMap<Type, TypeDef>

Type definitions

Methods

impl VContext[src]

pub fn type_of_expr(&self, e: &Expr) -> Result<Type, Error>[src]

Returns the type that the given expression must yield. Error if type is unknown, ie an undefined structure.

pub fn type_of_exprs(&self, e: &[Expr]) -> Result<Type, Error>[src]

Returns the type that the given LIST of expressions must yield, which is the type of the last expression, or Unit if the list is empty.

pub fn get_defined_type(&self, name: &Type) -> &TypeDef[src]

Returns a TypeDef matching a given name. Assumes the typedef exists and has already been defined; may panic if it hasn't.

It might be better to turn the AST into an IR with all types resolved, but, for now...

Trait Implementations

impl Clone for VContext[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Default for VContext[src]

impl Debug for VContext[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]