wright/ast/
identifier.rs

1//! [Identifier]s are used throughout wright as variable names, type names, function names, etc.
2//! Their modeling is pretty simple, and is defined here.
3//!
4//! [Identifier]: https://en.wikipedia.org/wiki/Identifier
5
6use crate::source_tracking::fragment::Fragment;
7
8/// Identifiers are used as names for variables, functions, modules, etc.
9/// These are defined using [Fragment]s of source code, which will contain the identifier itself.
10#[derive(Debug, Clone)]
11pub struct Identifier {
12    /// The fragment of source code containing the identifier.
13    pub fragment: Fragment,
14}