wright 0.10.1

The wright programming language compiler and tooling.
Documentation
1
2
3
4
5
6
7
8
//! Statements that bind a value to a symbol, possibly with a type, in the context of a scope.

use crate::parser::ast::metadata::AstNodeMeta;

/// Bind statement
pub struct Bind<'src> {
    pub meta: AstNodeMeta<'src>,
}