wright/ast/path.rs
1//! [Path]s are used in import statements, and can take the place of an [Identifier] in many people.
2
3use super::identifier::Identifier;
4use crate::source_tracking::fragment::Fragment;
5
6/// A double-colon separated path/reference to a module/function. This can be used in an `import` declaration and
7/// some other places. [Path]s with length of 1 are just [Identifier]s -- [Identifier]s can be considered paths in some
8/// instances.
9#[derive(Debug, Clone)]
10pub struct Path {
11 /// The [Fragment] of source code containing the full source of this path (including the double-colon separators).
12 pub full_path: Fragment,
13
14 /// The first (left-most) identifier in this [Path]. This can also be considered the "root" of the path --
15 /// the module that the following item/identifier can be found in.
16 pub head: Identifier,
17
18 /// The rest of the [Path], following the first separator.
19 pub tail: Vec<Identifier>,
20}