wright 0.10.1

The wright programming language compiler and tooling.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Structures used for representing expressions in wright source code.

use self::primary::Primary;

pub mod block;
pub mod literal;
pub mod parentheses;
pub mod primary;

/// Enumeration of all the different kinds of expression in wright.
#[derive(Debug)]
pub enum Expression<'src> {
    /// A literal in source code.
    Primary(Primary<'src>),
    // Block(block::Block<'src>),
}