This page requires javascript to work

[][src]Struct minitt::ast::Declaration

pub struct Declaration {
    pub pattern: Pattern,
    pub prefix_parameters: Vec<Typed>,
    pub signature: Expression,
    pub body: Expression,
    pub is_recursive: bool,
}

Decl in Mini-TT. $D ::= p:A=M\ |\ \textsf{rec}\ p:A=M$

It's supposed to be an enum because it can be rec or non-rec, but for coding convenience I've made it a struct with a bool member (is_recursive) to indicate whether it's recursive.

Fields

pattern: Pattern

$p$ in syntax.

prefix_parameters: Vec<Typed>

This is an extension -- declarations can be prefixed with some parameters.

signature: Expression

$A$ in syntax.

body: Expression

$M$ in syntax.

is_recursive: bool

Whether the $\textsf{rec}$ is present.

Implementations

impl Declaration[src]

pub fn new(
    pattern: Pattern,
    prefix_parameters: Vec<Typed>,
    signature: Expression,
    body: Expression,
    is_recursive: bool
) -> Self
[src]

Constructor

pub fn simple(
    pattern: Pattern,
    prefix_parameters: Vec<Typed>,
    signature: Expression,
    body: Expression
) -> Self
[src]

Non-recursive declarations

pub fn recursive(
    pattern: Pattern,
    prefix_parameters: Vec<Typed>,
    signature: Expression,
    body: Expression
) -> Self
[src]

Recursive declarations

Trait Implementations

impl Clone for Declaration[src]

impl Debug for Declaration[src]

impl Display for Declaration[src]

impl Eq for Declaration[src]

impl PartialEq<Declaration> for Declaration[src]

impl StructuralEq for Declaration[src]

impl StructuralPartialEq for Declaration[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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.