2d3134a91c
Clean up scope handling by introducing `Binding` and `Scope` objects.
5 lines
127 B
Rust
5 lines
127 B
Rust
use crate::common::*;
|
|
|
|
/// An assignment, e.g `foo := bar`
|
|
pub(crate) type Assignment<'src> = Binding<'src, Expression<'src>>;
|