Enum passerine::compiler::sst::SST[][src]

pub enum SST {
    Symbol(UniqueSymbol),
    Data(Data),
    Block(Vec<Spanned<SST>>),
    Assign {
        pattern: Box<Spanned<SSTPattern>>,
        expression: Box<Spanned<SST>>,
    },
    Lambda {
        pattern: Box<Spanned<SSTPattern>>,
        expression: Box<Spanned<SST>>,
        scope: Scope,
    },
    Call {
        fun: Box<Spanned<SST>>,
        arg: Box<Spanned<SST>>,
    },
    Label(StringBox<Spanned<SST>>),
    Tuple(Vec<Spanned<SST>>),
    FFI {
        name: String,
        expression: Box<Spanned<SST>>,
    },
}
Expand description

Represents an item in a hoisted SST. Each langauge-level construct has it’s own SST variant. Note that symbols have been substituted. At this point in compilation the scope of each local is known.

Variants

Symbol(UniqueSymbol)

Tuple Fields of Symbol

0: UniqueSymbol
Data(Data)

Tuple Fields of Data

0: Data
Block(Vec<Spanned<SST>>)

Tuple Fields of Block

0: Vec<Spanned<SST>>
Assign

Fields of Assign

pattern: Box<Spanned<SSTPattern>>expression: Box<Spanned<SST>>
Lambda

Fields of Lambda

pattern: Box<Spanned<SSTPattern>>expression: Box<Spanned<SST>>scope: Scope
Call

Fields of Call

fun: Box<Spanned<SST>>arg: Box<Spanned<SST>>
Label(StringBox<Spanned<SST>>)

Tuple Fields of Label

0: String1: Box<Spanned<SST>>
Tuple(Vec<Spanned<SST>>)

Tuple Fields of Tuple

0: Vec<Spanned<SST>>
FFI

Fields of FFI

name: Stringexpression: Box<Spanned<SST>>

Implementations

Shortcut for creating an SST::Assign variant.

Shortcut for creating an SST::Lambda variant.

Shortcut for creating a SST::Label variant.

Shortcut for creating a SST::Lambda variant.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.